Skip to content

Commit dddddac

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Adding new API keys in summary endpoint for APM Standalone new billing dimensions (#2979)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 80df2ad commit dddddac

File tree

4 files changed

+84
-0
lines changed

4 files changed

+84
-0
lines changed

.generator/schemas/v1/openapi.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20700,6 +20700,11 @@ components:
2070020700
hours in the current date for the given org.
2070120701
format: int64
2070220702
type: integer
20703+
apm_enterprise_standalone_hosts_top99p:
20704+
description: Shows the 99th percentile of all distinct standalone Enterprise
20705+
hosts over all hours in the current date for all organizations.
20706+
format: int64
20707+
type: integer
2070320708
apm_fargate_count_avg:
2070420709
description: Shows the average of all APM ECS Fargate tasks over all hours
2070520710
in the current date for all organizations.
@@ -20710,6 +20715,11 @@ components:
2071020715
hours in the current date for all organizations.
2071120716
format: int64
2071220717
type: integer
20718+
apm_pro_standalone_hosts_top99p:
20719+
description: Shows the 99th percentile of all distinct standalone Pro hosts
20720+
over all hours in the current date for all organizations.
20721+
format: int64
20722+
type: integer
2071320723
appsec_fargate_count_avg:
2071420724
description: Shows the average of all Application Security Monitoring ECS
2071520725
Fargate tasks over all hours in the current date for all organizations.
@@ -21798,6 +21808,11 @@ components:
2179821808
hours in the current date for the given org.
2179921809
format: int64
2180021810
type: integer
21811+
apm_enterprise_standalone_hosts_top99p:
21812+
description: Shows the 99th percentile of all distinct standalone Enterprise
21813+
hosts over all hours in the current date for the given org.
21814+
format: int64
21815+
type: integer
2180121816
apm_fargate_count_avg:
2180221817
description: Shows the average of all APM ECS Fargate tasks over all hours
2180321818
in the current month for the given org.
@@ -21808,6 +21823,11 @@ components:
2180821823
hours in the current date for the given org.
2180921824
format: int64
2181021825
type: integer
21826+
apm_pro_standalone_hosts_top99p:
21827+
description: Shows the 99th percentile of all distinct standalone Pro hosts
21828+
over all hours in the current date for the given org.
21829+
format: int64
21830+
type: integer
2181121831
appsec_fargate_count_avg:
2181221832
description: Shows the average of all Application Security Monitoring ECS
2181321833
Fargate tasks over all hours in the current month for the given org.
@@ -22900,6 +22920,11 @@ components:
2290022920
hours in the current month for all organizations.
2290122921
format: int64
2290222922
type: integer
22923+
apm_enterprise_standalone_hosts_top99p_sum:
22924+
description: Shows the sum of the 99th percentile of all distinct standalone
22925+
Enterprise hosts over all hours in the current month for all organizations.
22926+
format: int64
22927+
type: integer
2290322928
apm_fargate_count_avg_sum:
2290422929
description: Shows the average of all APM ECS Fargate tasks over all hours
2290522930
in the current month for all organizations.
@@ -22910,6 +22935,11 @@ components:
2291022935
hours in the current month for all organizations.
2291122936
format: int64
2291222937
type: integer
22938+
apm_pro_standalone_hosts_top99p_sum:
22939+
description: Shows the sum of the 99th percentile of all distinct standalone
22940+
Pro hosts over all hours in the current month for all organizations.
22941+
format: int64
22942+
type: integer
2291322943
appsec_fargate_count_avg_sum:
2291422944
description: Shows the average of all Application Security Monitoring ECS
2291522945
Fargate tasks over all hours in the current month for all organizations.

services/usage_metering/src/v1/models/UsageSummaryDate.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ export class UsageSummaryDate {
1818
* Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current date for the given org.
1919
*/
2020
"apmDevsecopsHostTop99P"?: number;
21+
/**
22+
* Shows the 99th percentile of all distinct standalone Enterprise hosts over all hours in the current date for all organizations.
23+
*/
24+
"apmEnterpriseStandaloneHostsTop99P"?: number;
2125
/**
2226
* Shows the average of all APM ECS Fargate tasks over all hours in the current date for all organizations.
2327
*/
@@ -26,6 +30,10 @@ export class UsageSummaryDate {
2630
* Shows the 99th percentile of all distinct APM hosts over all hours in the current date for all organizations.
2731
*/
2832
"apmHostTop99P"?: number;
33+
/**
34+
* Shows the 99th percentile of all distinct standalone Pro hosts over all hours in the current date for all organizations.
35+
*/
36+
"apmProStandaloneHostsTop99P"?: number;
2937
/**
3038
* Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current date for all organizations.
3139
*/
@@ -848,6 +856,11 @@ export class UsageSummaryDate {
848856
type: "number",
849857
format: "int64",
850858
},
859+
apmEnterpriseStandaloneHostsTop99P: {
860+
baseName: "apm_enterprise_standalone_hosts_top99p",
861+
type: "number",
862+
format: "int64",
863+
},
851864
apmFargateCountAvg: {
852865
baseName: "apm_fargate_count_avg",
853866
type: "number",
@@ -858,6 +871,11 @@ export class UsageSummaryDate {
858871
type: "number",
859872
format: "int64",
860873
},
874+
apmProStandaloneHostsTop99P: {
875+
baseName: "apm_pro_standalone_hosts_top99p",
876+
type: "number",
877+
format: "int64",
878+
},
861879
appsecFargateCountAvg: {
862880
baseName: "appsec_fargate_count_avg",
863881
type: "number",

services/usage_metering/src/v1/models/UsageSummaryDateOrg.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ export class UsageSummaryDateOrg {
2424
* Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current date for the given org.
2525
*/
2626
"apmDevsecopsHostTop99P"?: number;
27+
/**
28+
* Shows the 99th percentile of all distinct standalone Enterprise hosts over all hours in the current date for the given org.
29+
*/
30+
"apmEnterpriseStandaloneHostsTop99P"?: number;
2731
/**
2832
* Shows the average of all APM ECS Fargate tasks over all hours in the current month for the given org.
2933
*/
@@ -32,6 +36,10 @@ export class UsageSummaryDateOrg {
3236
* Shows the 99th percentile of all distinct APM hosts over all hours in the current date for the given org.
3337
*/
3438
"apmHostTop99P"?: number;
39+
/**
40+
* Shows the 99th percentile of all distinct standalone Pro hosts over all hours in the current date for the given org.
41+
*/
42+
"apmProStandaloneHostsTop99P"?: number;
3543
/**
3644
* Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current month for the given org.
3745
*/
@@ -878,6 +886,11 @@ export class UsageSummaryDateOrg {
878886
type: "number",
879887
format: "int64",
880888
},
889+
apmEnterpriseStandaloneHostsTop99P: {
890+
baseName: "apm_enterprise_standalone_hosts_top99p",
891+
type: "number",
892+
format: "int64",
893+
},
881894
apmFargateCountAvg: {
882895
baseName: "apm_fargate_count_avg",
883896
type: "number",
@@ -888,6 +901,11 @@ export class UsageSummaryDateOrg {
888901
type: "number",
889902
format: "int64",
890903
},
904+
apmProStandaloneHostsTop99P: {
905+
baseName: "apm_pro_standalone_hosts_top99p",
906+
type: "number",
907+
format: "int64",
908+
},
891909
appsecFargateCountAvg: {
892910
baseName: "appsec_fargate_count_avg",
893911
type: "number",

services/usage_metering/src/v1/models/UsageSummaryResponse.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ export class UsageSummaryResponse {
1919
* Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current month for all organizations.
2020
*/
2121
"apmDevsecopsHostTop99PSum"?: number;
22+
/**
23+
* Shows the sum of the 99th percentile of all distinct standalone Enterprise hosts over all hours in the current month for all organizations.
24+
*/
25+
"apmEnterpriseStandaloneHostsTop99PSum"?: number;
2226
/**
2327
* Shows the average of all APM ECS Fargate tasks over all hours in the current month for all organizations.
2428
*/
@@ -27,6 +31,10 @@ export class UsageSummaryResponse {
2731
* Shows the 99th percentile of all distinct APM hosts over all hours in the current month for all organizations.
2832
*/
2933
"apmHostTop99PSum"?: number;
34+
/**
35+
* Shows the sum of the 99th percentile of all distinct standalone Pro hosts over all hours in the current month for all organizations.
36+
*/
37+
"apmProStandaloneHostsTop99PSum"?: number;
3038
/**
3139
* Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current month for all organizations.
3240
*/
@@ -893,6 +901,11 @@ export class UsageSummaryResponse {
893901
type: "number",
894902
format: "int64",
895903
},
904+
apmEnterpriseStandaloneHostsTop99PSum: {
905+
baseName: "apm_enterprise_standalone_hosts_top99p_sum",
906+
type: "number",
907+
format: "int64",
908+
},
896909
apmFargateCountAvgSum: {
897910
baseName: "apm_fargate_count_avg_sum",
898911
type: "number",
@@ -903,6 +916,11 @@ export class UsageSummaryResponse {
903916
type: "number",
904917
format: "int64",
905918
},
919+
apmProStandaloneHostsTop99PSum: {
920+
baseName: "apm_pro_standalone_hosts_top99p_sum",
921+
type: "number",
922+
format: "int64",
923+
},
906924
appsecFargateCountAvgSum: {
907925
baseName: "appsec_fargate_count_avg_sum",
908926
type: "number",

0 commit comments

Comments
 (0)