You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .generator/schemas/v2/openapi.yaml
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -143143,7 +143143,10 @@ paths:
143143
143143
- metrics_read
143144
143144
/api/v2/metrics/config/bulk-tags:
143145
143145
delete:
143146
+
deprecated: true
143146
143147
description: |-
143148
+
**Note**: This endpoint is deprecated. Use [Tag Indexing Rules](/api/latest/metrics/#create-a-tag-indexing-rule) (`POST /api/v2/metrics/tag-indexing-rules`) instead.
143149
+
143147
143150
Delete all custom lists of queryable tag keys for a set of existing count, gauge, rate, and distribution metrics.
143148
143151
Metrics are selected by passing a metric name prefix.
143149
143152
Results can be sent to a set of account email addresses, just like the same operation in the Datadog web app.
@@ -143214,8 +143217,12 @@ paths:
143214
143217
operator: OR
143215
143218
permissions:
143216
143219
- metric_tags_write
143220
+
x-sunset: "2027-01-01"
143217
143221
post:
143222
+
deprecated: true
143218
143223
description: |-
143224
+
**Note**: This endpoint is deprecated. Use [Tag Indexing Rules](/api/latest/metrics/#create-a-tag-indexing-rule) (`POST /api/v2/metrics/tag-indexing-rules`) instead.
143225
+
143219
143226
Create and define a list of queryable tag keys for a set of existing count, gauge, rate, and distribution metrics.
143220
143227
Metrics are selected by passing a metric name prefix. Use the Delete method of this API path to remove tag configurations.
143221
143228
Results can be sent to a set of account email addresses, just like the same operation in the Datadog web app.
@@ -143294,6 +143301,7 @@ paths:
143294
143301
operator: OR
143295
143302
permissions:
143296
143303
- metric_tags_write
143304
+
x-sunset: "2027-01-01"
143297
143305
/api/v2/metrics/tag-indexing-rules:
143298
143306
get:
143299
143307
description: List tag indexing rules for an org, sorted by `rule_order`, with offset/limit pagination.
Copy file name to clipboardExpand all lines: src/datadogV2/api/api_metrics.rs
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -588,6 +588,8 @@ impl MetricsAPI {
588
588
Self{ config, client }
589
589
}
590
590
591
+
/// **Note**: This endpoint is deprecated. Use [Tag Indexing Rules](/api/latest/metrics/#create-a-tag-indexing-rule) (`POST /api/v2/metrics/tag-indexing-rules`) instead.
592
+
///
591
593
/// Create and define a list of queryable tag keys for a set of existing count, gauge, rate, and distribution metrics.
592
594
/// Metrics are selected by passing a metric name prefix. Use the Delete method of this API path to remove tag configurations.
593
595
/// Results can be sent to a set of account email addresses, just like the same operation in the Datadog web app.
@@ -619,6 +621,8 @@ impl MetricsAPI {
619
621
}
620
622
}
621
623
624
+
/// **Note**: This endpoint is deprecated. Use [Tag Indexing Rules](/api/latest/metrics/#create-a-tag-indexing-rule) (`POST /api/v2/metrics/tag-indexing-rules`) instead.
625
+
///
622
626
/// Create and define a list of queryable tag keys for a set of existing count, gauge, rate, and distribution metrics.
623
627
/// Metrics are selected by passing a metric name prefix. Use the Delete method of this API path to remove tag configurations.
624
628
/// Results can be sent to a set of account email addresses, just like the same operation in the Datadog web app.
@@ -1249,6 +1253,8 @@ impl MetricsAPI {
1249
1253
}
1250
1254
}
1251
1255
1256
+
/// **Note**: This endpoint is deprecated. Use [Tag Indexing Rules](/api/latest/metrics/#create-a-tag-indexing-rule) (`POST /api/v2/metrics/tag-indexing-rules`) instead.
1257
+
///
1252
1258
/// Delete all custom lists of queryable tag keys for a set of existing count, gauge, rate, and distribution metrics.
1253
1259
/// Metrics are selected by passing a metric name prefix.
1254
1260
/// Results can be sent to a set of account email addresses, just like the same operation in the Datadog web app.
@@ -1277,6 +1283,8 @@ impl MetricsAPI {
1277
1283
}
1278
1284
}
1279
1285
1286
+
/// **Note**: This endpoint is deprecated. Use [Tag Indexing Rules](/api/latest/metrics/#create-a-tag-indexing-rule) (`POST /api/v2/metrics/tag-indexing-rules`) instead.
1287
+
///
1280
1288
/// Delete all custom lists of queryable tag keys for a set of existing count, gauge, rate, and distribution metrics.
1281
1289
/// Metrics are selected by passing a metric name prefix.
1282
1290
/// Results can be sent to a set of account email addresses, just like the same operation in the Datadog web app.
0 commit comments