File tree 5 files changed +46
-4
lines changed
packages/datadog-api-client-v1/models
5 files changed +46
-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": "2024-01-05 16:07:30.985750 ",
8
- "spec_repo_commit": "bafcada7 "
7
+ "regenerated": "2024-01-08 16:03:29.638037 ",
8
+ "spec_repo_commit": "8b5aed97 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2024-01-05 16:07:31.000250 ",
13
- "spec_repo_commit": "bafcada7 "
12
+ "regenerated": "2024-01-08 16:03:29.658618 ",
13
+ "spec_repo_commit": "8b5aed97 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -18631,6 +18631,11 @@ components:
18631
18631
over all hours in the current date all organizations.
18632
18632
format: int64
18633
18633
type: integer
18634
+ apm_devsecops_host_top99p:
18635
+ description: Shows the 99th percentile of all APM DevSecOps hosts over all
18636
+ hours in the current date for the given org.
18637
+ format: int64
18638
+ type: integer
18634
18639
apm_fargate_count_avg:
18635
18640
description: Shows the average of all APM ECS Fargate tasks over all hours
18636
18641
in the current date for all organizations.
@@ -19156,6 +19161,11 @@ components:
19156
19161
over all hours in the current date for the given org.
19157
19162
format: int64
19158
19163
type: integer
19164
+ apm_devsecops_host_top99p:
19165
+ description: Shows the 99th percentile of all APM DevSecOps hosts over all
19166
+ hours in the current date for the given org.
19167
+ format: int64
19168
+ type: integer
19159
19169
apm_fargate_count_avg:
19160
19170
description: Shows the average of all APM ECS Fargate tasks over all hours
19161
19171
in the current months for the given org.
@@ -19694,6 +19704,11 @@ components:
19694
19704
over all hours in the current months all organizations.
19695
19705
format: int64
19696
19706
type: integer
19707
+ apm_devsecops_host_top99p_sum:
19708
+ description: Shows the 99th percentile of all APM DevSecOps hosts over all
19709
+ hours in the current months for all organizations.
19710
+ format: int64
19711
+ type: integer
19697
19712
apm_fargate_count_avg_sum:
19698
19713
description: Shows the average of all APM ECS Fargate tasks over all hours
19699
19714
in the current months for all organizations.
Original file line number Diff line number Diff line change @@ -19,6 +19,10 @@ export class UsageSummaryDate {
19
19
* Shows the 99th percentile of all Azure app services using APM over all hours in the current date all organizations.
20
20
*/
21
21
"apmAzureAppServiceHostTop99p" ?: number ;
22
+ /**
23
+ * Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current date for the given org.
24
+ */
25
+ "apmDevsecopsHostTop99p" ?: number ;
22
26
/**
23
27
* Shows the average of all APM ECS Fargate tasks over all hours in the current date for all organizations.
24
28
*/
@@ -439,6 +443,11 @@ export class UsageSummaryDate {
439
443
type : "number" ,
440
444
format : "int64" ,
441
445
} ,
446
+ apmDevsecopsHostTop99p : {
447
+ baseName : "apm_devsecops_host_top99p" ,
448
+ type : "number" ,
449
+ format : "int64" ,
450
+ } ,
442
451
apmFargateCountAvg : {
443
452
baseName : "apm_fargate_count_avg" ,
444
453
type : "number" ,
Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ export class UsageSummaryDateOrg {
18
18
* Shows the 99th percentile of all Azure app services using APM over all hours in the current date for the given org.
19
19
*/
20
20
"apmAzureAppServiceHostTop99p" ?: number ;
21
+ /**
22
+ * Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current date for the given org.
23
+ */
24
+ "apmDevsecopsHostTop99p" ?: number ;
21
25
/**
22
26
* Shows the average of all APM ECS Fargate tasks over all hours in the current months for the given org.
23
27
*/
@@ -454,6 +458,11 @@ export class UsageSummaryDateOrg {
454
458
type : "number" ,
455
459
format : "int64" ,
456
460
} ,
461
+ apmDevsecopsHostTop99p : {
462
+ baseName : "apm_devsecops_host_top99p" ,
463
+ type : "number" ,
464
+ format : "int64" ,
465
+ } ,
457
466
apmFargateCountAvg : {
458
467
baseName : "apm_fargate_count_avg" ,
459
468
type : "number" ,
Original file line number Diff line number Diff line change @@ -20,6 +20,10 @@ export class UsageSummaryResponse {
20
20
* Shows the 99th percentile of all Azure app services using APM over all hours in the current months all organizations.
21
21
*/
22
22
"apmAzureAppServiceHostTop99pSum" ?: number ;
23
+ /**
24
+ * Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current months for all organizations.
25
+ */
26
+ "apmDevsecopsHostTop99pSum" ?: number ;
23
27
/**
24
28
* Shows the average of all APM ECS Fargate tasks over all hours in the current months for all organizations.
25
29
*/
@@ -484,6 +488,11 @@ export class UsageSummaryResponse {
484
488
type : "number" ,
485
489
format : "int64" ,
486
490
} ,
491
+ apmDevsecopsHostTop99pSum : {
492
+ baseName : "apm_devsecops_host_top99p_sum" ,
493
+ type : "number" ,
494
+ format : "int64" ,
495
+ } ,
487
496
apmFargateCountAvgSum : {
488
497
baseName : "apm_fargate_count_avg_sum" ,
489
498
type : "number" ,
You can’t perform that action at this time.
0 commit comments