Skip to content

Commit 12cc97a

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Adding new field for the usage metering infra hosts (#919)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 647dfd1 commit 12cc97a

File tree

6 files changed

+63
-4
lines changed

6 files changed

+63
-4
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.4",
7-
"regenerated": "2022-11-18 19:10:46.285064",
8-
"spec_repo_commit": "0099d2ec"
7+
"regenerated": "2022-11-21 18:48:14.323887",
8+
"spec_repo_commit": "9015efdd"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.4",
12-
"regenerated": "2022-11-18 19:10:46.297348",
13-
"spec_repo_commit": "0099d2ec"
12+
"regenerated": "2022-11-21 18:48:14.335707",
13+
"spec_repo_commit": "9015efdd"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15339,6 +15339,11 @@ components:
1533915339
(and were NOT running the Datadog Agent).'
1534015340
format: int64
1534115341
type: integer
15342+
opentelemetry_apm_host_count:
15343+
description: Contains the total number of hosts using APM reported by Datadog
15344+
exporter for the OpenTelemetry Collector.
15345+
format: int64
15346+
type: integer
1534215347
opentelemetry_host_count:
1534315348
description: Contains the total number of hosts reported by Datadog exporter
1534415349
for the OpenTelemetry Collector.
@@ -16312,6 +16317,12 @@ components:
1631216317
date for all organizations.
1631316318
format: int64
1631416319
type: integer
16320+
opentelemetry_apm_host_top99p:
16321+
description: Shows the 99th percentile of APM hosts reported by the Datadog
16322+
exporter for the OpenTelemetry Collector over all hours in the current
16323+
date for all organizations.
16324+
format: int64
16325+
type: integer
1631516326
opentelemetry_host_top99p:
1631616327
description: Shows the 99th percentile of all hosts reported by the Datadog
1631716328
exporter for the OpenTelemetry Collector over all hours in the current
@@ -16674,6 +16685,12 @@ components:
1667416685
date for the given org.
1667516686
format: int64
1667616687
type: integer
16688+
opentelemetry_apm_host_top99p:
16689+
description: Shows the 99th percentile of APM hosts reported by the Datadog
16690+
exporter for the OpenTelemetry Collector over all hours in the current
16691+
date for the given org.
16692+
format: int64
16693+
type: integer
1667716694
opentelemetry_host_top99p:
1667816695
description: Shows the 99th percentile of all hosts reported by the Datadog
1667916696
exporter for the OpenTelemetry Collector over all hours in the current
@@ -17063,6 +17080,12 @@ components:
1706317080
months for all organizations.
1706417081
format: int64
1706517082
type: integer
17083+
opentelemetry_apm_host_top99p_sum:
17084+
description: Shows the 99th percentile of APM hosts reported by the Datadog
17085+
exporter for the OpenTelemetry Collector over all hours in the current
17086+
months for all organizations.
17087+
format: int64
17088+
type: integer
1706617089
opentelemetry_host_top99p_sum:
1706717090
description: Shows the 99th percentile of all hosts reported by the Datadog
1706817091
exporter for the OpenTelemetry Collector over all hours in the current

packages/datadog-api-client-v1/models/UsageHostHour.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@ export class UsageHostHour {
6666
* (and were NOT running the Datadog Agent).
6767
*/
6868
"infraAzureAppService"?: number;
69+
/**
70+
* Contains the total number of hosts using APM reported by Datadog exporter for the OpenTelemetry Collector.
71+
*/
72+
"opentelemetryApmHostCount"?: number;
6973
/**
7074
* Contains the total number of hosts reported by Datadog exporter for the OpenTelemetry Collector.
7175
*/
@@ -153,6 +157,11 @@ export class UsageHostHour {
153157
type: "number",
154158
format: "int64",
155159
},
160+
opentelemetryApmHostCount: {
161+
baseName: "opentelemetry_apm_host_count",
162+
type: "number",
163+
format: "int64",
164+
},
156165
opentelemetryHostCount: {
157166
baseName: "opentelemetry_host_count",
158167
type: "number",

packages/datadog-api-client-v1/models/UsageSummaryDate.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,10 @@ export class UsageSummaryDate {
227227
* Sum of all online archived events over all hours in the current date for all organizations.
228228
*/
229229
"onlineArchiveEventsCountSum"?: number;
230+
/**
231+
* Shows the 99th percentile of APM hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for all organizations.
232+
*/
233+
"opentelemetryApmHostTop99p"?: number;
230234
/**
231235
* Shows the 99th percentile of all hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for all organizations.
232236
*/
@@ -575,6 +579,11 @@ export class UsageSummaryDate {
575579
type: "number",
576580
format: "int64",
577581
},
582+
opentelemetryApmHostTop99p: {
583+
baseName: "opentelemetry_apm_host_top99p",
584+
type: "number",
585+
format: "int64",
586+
},
578587
opentelemetryHostTop99p: {
579588
baseName: "opentelemetry_host_top99p",
580589
type: "number",

packages/datadog-api-client-v1/models/UsageSummaryDateOrg.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,10 @@ export class UsageSummaryDateOrg {
230230
* Sum of all online archived events over all hours in the current date for the given org.
231231
*/
232232
"onlineArchiveEventsCountSum"?: number;
233+
/**
234+
* Shows the 99th percentile of APM hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for the given org.
235+
*/
236+
"opentelemetryApmHostTop99p"?: number;
233237
/**
234238
* Shows the 99th percentile of all hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for the given org.
235239
*/
@@ -585,6 +589,11 @@ export class UsageSummaryDateOrg {
585589
type: "number",
586590
format: "int64",
587591
},
592+
opentelemetryApmHostTop99p: {
593+
baseName: "opentelemetry_apm_host_top99p",
594+
type: "number",
595+
format: "int64",
596+
},
588597
opentelemetryHostTop99p: {
589598
baseName: "opentelemetry_host_top99p",
590599
type: "number",

packages/datadog-api-client-v1/models/UsageSummaryResponse.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,10 @@ export class UsageSummaryResponse {
248248
* Sum of all online archived events over all hours in the current months for all organizations.
249249
*/
250250
"onlineArchiveEventsCountAggSum"?: number;
251+
/**
252+
* Shows the 99th percentile of APM hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current months for all organizations.
253+
*/
254+
"opentelemetryApmHostTop99pSum"?: number;
251255
/**
252256
* Shows the 99th percentile of all hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current months for all organizations.
253257
*/
@@ -636,6 +640,11 @@ export class UsageSummaryResponse {
636640
type: "number",
637641
format: "int64",
638642
},
643+
opentelemetryApmHostTop99pSum: {
644+
baseName: "opentelemetry_apm_host_top99p_sum",
645+
type: "number",
646+
format: "int64",
647+
},
639648
opentelemetryHostTop99pSum: {
640649
baseName: "opentelemetry_host_top99p_sum",
641650
type: "number",

0 commit comments

Comments
 (0)