Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7593,6 +7593,12 @@ components:
type: object
MetricsListResponse:
description: Object listing all metric names stored by Datadog since a given time.
example:
from: "1571011200"
metrics:
- system.cpu.idle
- system.mem.free
- aws.ec2.cpuutilization
properties:
from:
description: Time when the metrics were active, seconds since the Unix epoch.
Expand Down
50 changes: 44 additions & 6 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130290,10 +130290,21 @@ paths:
examples:
default:
value:
data: []
data:
- id: system.cpu.user
type: metrics
- attributes:
created_at: "2020-03-25T09:48:37.463835Z"
metric_type: gauge
modified_at: "2020-04-25T09:48:37.463835Z"
tags:
- app
- datacenter
id: http.endpoint.request
type: manage_tags
meta:
pagination:
next_cursor:
next_cursor: eyJhZnRlciI6Imh0dHAuZW5kcG9pbnQucmVxdWVzdCJ9
schema:
$ref: "#/components/schemas/MetricsAndMetricTagConfigurationsResponse"
description: Success
Expand Down Expand Up @@ -130687,12 +130698,30 @@ paths:
id: http.endpoint.request
relationships:
dashboards:
data: []
data:
- id: abc-def-xyz
type: dashboards
monitors:
data: []
data:
- id: "1775073"
type: monitors
notebooks:
data: []
slos:
data: []
type: metrics
included:
- attributes:
popularity: 3.0
title: My Dashboard
url: /dashboard/abc-def-xyz
id: abc-def-xyz
type: dashboards
- attributes:
title: CPU utilization is high
url: /monitors/1775073
id: "1775073"
type: monitors
schema:
$ref: "#/components/schemas/MetricAssetsResponse"
description: Success
Expand Down Expand Up @@ -130836,8 +130865,17 @@ paths:
examples:
default:
value:
data: []
meta: {}
data:
- attributes:
cardinality_delta: 25
id: host
type: tag_cardinality
- attributes:
cardinality_delta: 5
id: env
type: tag_cardinality
meta:
metric_name: system.cpu.user
schema:
$ref: "#/components/schemas/MetricTagCardinalitiesResponse"
description: Success
Expand Down
Loading