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
@@ -143665,7 +143665,10 @@ paths:
143665
143665
- metrics_read
143666
143666
/api/v2/metrics/config/bulk-tags:
143667
143667
delete:
143668
+
deprecated: true
143668
143669
description: |-
143670
+
**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.
143671
+
143669
143672
Delete all custom lists of queryable tag keys for a set of existing count, gauge, rate, and distribution metrics.
143670
143673
Metrics are selected by passing a metric name prefix.
143671
143674
Results can be sent to a set of account email addresses, just like the same operation in the Datadog web app.
@@ -143736,8 +143739,12 @@ paths:
143736
143739
operator: OR
143737
143740
permissions:
143738
143741
- metric_tags_write
143742
+
x-sunset: "2027-01-01"
143739
143743
post:
143744
+
deprecated: true
143740
143745
description: |-
143746
+
**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.
143747
+
143741
143748
Create and define a list of queryable tag keys for a set of existing count, gauge, rate, and distribution metrics.
143742
143749
Metrics are selected by passing a metric name prefix. Use the Delete method of this API path to remove tag configurations.
143743
143750
Results can be sent to a set of account email addresses, just like the same operation in the Datadog web app.
@@ -143816,6 +143823,7 @@ paths:
143816
143823
operator: OR
143817
143824
permissions:
143818
143825
- metric_tags_write
143826
+
x-sunset: "2027-01-01"
143819
143827
/api/v2/metrics/tag-indexing-rules:
143820
143828
get:
143821
143829
description: List tag indexing rules for an org, sorted by `rule_order`, with offset/limit pagination.
Copy file name to clipboardExpand all lines: api/datadogV2/api_metrics.go
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -16,13 +16,17 @@ import (
16
16
typeMetricsApi datadog.Service
17
17
18
18
// CreateBulkTagsMetricsConfiguration Configure tags for multiple metrics.
19
+
// **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.
20
+
//
19
21
// Create and define a list of queryable tag keys for a set of existing count, gauge, rate, and distribution metrics.
20
22
// Metrics are selected by passing a metric name prefix. Use the Delete method of this API path to remove tag configurations.
21
23
// Results can be sent to a set of account email addresses, just like the same operation in the Datadog web app.
22
24
// If multiple calls include the same metric, the last configuration applied (not by submit order) is used, do not
23
25
// expect deterministic ordering of concurrent calls. The `exclude_tags_mode` value will set all metrics that match the prefix to
24
26
// the same exclusion state, metric tag configurations do not support mixed inclusion and exclusion for tags on the same metric.
25
27
// Can only be used with application keys of users with the `Manage Tags for Metrics` permission.
@@ -351,10 +355,14 @@ func (a *MetricsApi) CreateTagIndexingRuleExemption(ctx _context.Context, metric
351
355
}
352
356
353
357
// DeleteBulkTagsMetricsConfiguration Delete tags for multiple metrics.
358
+
// **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.
359
+
//
354
360
// Delete all custom lists of queryable tag keys for a set of existing count, gauge, rate, and distribution metrics.
355
361
// Metrics are selected by passing a metric name prefix.
356
362
// Results can be sent to a set of account email addresses, just like the same operation in the Datadog web app.
357
363
// Can only be used with application keys of users with the `Manage Tags for Metrics` permission.
0 commit comments