File tree 3 files changed +23
-4
lines changed
packages/datadog-api-client-v1/models
3 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"apigentools_version": "1.6.6",
7
- "regenerated": "2025-03-05 15:55:17.429997 ",
8
- "spec_repo_commit": "fe5af5dc "
7
+ "regenerated": "2025-03-05 21:00:32.599861 ",
8
+ "spec_repo_commit": "6105a175 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2025-03-05 15:55:17.445670 ",
13
- "spec_repo_commit": "fe5af5dc "
12
+ "regenerated": "2025-03-05 21:00:32.616807 ",
13
+ "spec_repo_commit": "6105a175 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -7551,6 +7551,9 @@ components:
7551
7551
7552
7552
name: Jane Doe
7553
7553
org_id: 1234
7554
+ quality_issues:
7555
+ - broken_at_handle
7556
+ - noisy_monitor
7554
7557
scopes:
7555
7558
- '!availability-zone:us-east-1c'
7556
7559
- name:cassandra
@@ -7650,6 +7653,14 @@ components:
7650
7653
format: int64
7651
7654
readOnly: true
7652
7655
type: integer
7656
+ quality_issues:
7657
+ description: Quality issues detected with the monitor.
7658
+ items:
7659
+ description: A quality issue detected with the monitor.
7660
+ readOnly: true
7661
+ type: string
7662
+ readOnly: true
7663
+ type: array
7653
7664
query:
7654
7665
description: The monitor query.
7655
7666
example: avg(last_5m):sum:system.net.bytes_rcvd{host:host0} > 100
Original file line number Diff line number Diff line change @@ -46,6 +46,10 @@ export class MonitorSearchResult {
46
46
* The ID of the organization.
47
47
*/
48
48
"orgId" ?: number ;
49
+ /**
50
+ * Quality issues detected with the monitor.
51
+ */
52
+ "qualityIssues" ?: Array < string > ;
49
53
/**
50
54
* The monitor query.
51
55
*/
@@ -121,6 +125,10 @@ export class MonitorSearchResult {
121
125
type : "number" ,
122
126
format : "int64" ,
123
127
} ,
128
+ qualityIssues : {
129
+ baseName : "quality_issues" ,
130
+ type : "Array<string>" ,
131
+ } ,
124
132
query : {
125
133
baseName : "query" ,
126
134
type : "string" ,
You can’t perform that action at this time.
0 commit comments