MetricItemFields
unitstring
The unit of measurement for CPU metrics (e.g., "nanoseconds").
Example:
nscolumnsstring[]
An array containing the column names for CPU metrics. Includes time for the timestamp of the event, granularity for the frequency at which values are sampled, and the performance value in nanoseconds.
Example:
["time","granularity","value"]dataobject[][]
Response payload.
Example:
[["2023-09-01T01:19:00+00:00",60,1041433070000000],["2023-09-01T01:24:00+00:00",60,1041441320000000]]MetricItemFields
{
"unit": "ns",
"columns": [
"time",
"granularity",
"value"
],
"data": [
[
"2023-09-01T01:19:00+00:00",
60,
1041433070000000
],
[
"2023-09-01T01:24:00+00:00",
60,
1041441320000000
]
]
}
Was this page helpful?