File tree 6 files changed +46
-4
lines changed
packages/datadog-api-client-v1/models
6 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.4",
7
- "regenerated": "2022-12-28 16:10:46.984442 ",
8
- "spec_repo_commit": "b2d7d94f "
7
+ "regenerated": "2022-12-28 17:38:35.211249 ",
8
+ "spec_repo_commit": "8cc05e11 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.4",
12
- "regenerated": "2022-12-28 16:10:46.996173 ",
13
- "spec_repo_commit": "b2d7d94f "
12
+ "regenerated": "2022-12-28 17:38:35.226977 ",
13
+ "spec_repo_commit": "8cc05e11 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -3670,6 +3670,7 @@ components:
3670
3670
- profiled_host_usage
3671
3671
- snmp_usage
3672
3672
- estimated_rum_sessions_usage
3673
+ - cont_usage
3673
3674
type: string
3674
3675
x-enum-varnames:
3675
3676
- API_USAGE
@@ -3700,6 +3701,7 @@ components:
3700
3701
- PROFILED_HOST_USAGE
3701
3702
- SNMP_USAGE
3702
3703
- ESTIMATED_RUM_SESSIONS_USAGE
3704
+ - CONT_USAGE
3703
3705
IFrameWidgetDefinition:
3704
3706
description: The iframe widget allows you to embed a portion of any other web
3705
3707
page on your dashboard. Only available on FREE layout dashboards.
@@ -7028,6 +7030,8 @@ components:
7028
7030
- snmp_percentage
7029
7031
- estimated_rum_sessions_usage
7030
7032
- estimated_rum_sessions_percentage
7033
+ - cont_usage
7034
+ - cont_percentage
7031
7035
- '*'
7032
7036
type: string
7033
7037
x-enum-varnames:
@@ -7087,6 +7091,8 @@ components:
7087
7091
- SNMP_PERCENTAGE
7088
7092
- ESTIMATED_RUM_SESSIONS_USAGE
7089
7093
- ESTIMATED_RUM_SESSIONS_PERCENTAGE
7094
+ - CONT_USAGE
7095
+ - CONT_PERCENTAGE
7090
7096
- ALL
7091
7097
MonthlyUsageAttributionValues:
7092
7098
description: Fields in Usage Summary by tag(s).
@@ -7142,6 +7148,15 @@ components:
7142
7148
description: The synthetic browser test usage by tag(s).
7143
7149
format: double
7144
7150
type: number
7151
+ cont_percentage:
7152
+ description: The percentage of container usage without the Datadog Agent
7153
+ by tag(s).
7154
+ format: double
7155
+ type: number
7156
+ cont_usage:
7157
+ description: The container usage without Datadog agent by tag(s).
7158
+ format: double
7159
+ type: number
7145
7160
container_percentage:
7146
7161
description: The percentage of container usage by tag(s).
7147
7162
format: double
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ export type HourlyUsageAttributionUsageType =
39
39
| typeof PROFILED_HOST_USAGE
40
40
| typeof SNMP_USAGE
41
41
| typeof ESTIMATED_RUM_SESSIONS_USAGE
42
+ | typeof CONT_USAGE
42
43
| UnparsedObject ;
43
44
export const API_USAGE = "api_usage" ;
44
45
export const APM_FARGATE_USAGE = "apm_fargate_usage" ;
@@ -68,3 +69,4 @@ export const PROFILED_CONTAINER_USAGE = "profiled_container_usage";
68
69
export const PROFILED_HOST_USAGE = "profiled_host_usage" ;
69
70
export const SNMP_USAGE = "snmp_usage" ;
70
71
export const ESTIMATED_RUM_SESSIONS_USAGE = "estimated_rum_sessions_usage" ;
72
+ export const CONT_USAGE = "cont_usage" ;
Original file line number Diff line number Diff line change @@ -67,6 +67,8 @@ export type MonthlyUsageAttributionSupportedMetrics =
67
67
| typeof SNMP_PERCENTAGE
68
68
| typeof ESTIMATED_RUM_SESSIONS_USAGE
69
69
| typeof ESTIMATED_RUM_SESSIONS_PERCENTAGE
70
+ | typeof CONT_USAGE
71
+ | typeof CONT_PERCENTAGE
70
72
| typeof ALL
71
73
| UnparsedObject ;
72
74
export const API_USAGE = "api_usage" ;
@@ -130,4 +132,6 @@ export const SNMP_PERCENTAGE = "snmp_percentage";
130
132
export const ESTIMATED_RUM_SESSIONS_USAGE = "estimated_rum_sessions_usage" ;
131
133
export const ESTIMATED_RUM_SESSIONS_PERCENTAGE =
132
134
"estimated_rum_sessions_percentage" ;
135
+ export const CONT_USAGE = "cont_usage" ;
136
+ export const CONT_PERCENTAGE = "cont_percentage" ;
133
137
export const ALL = "*" ;
Original file line number Diff line number Diff line change @@ -58,6 +58,14 @@ export class MonthlyUsageAttributionValues {
58
58
* The synthetic browser test usage by tag(s).
59
59
*/
60
60
"browserUsage" ?: number ;
61
+ /**
62
+ * The percentage of container usage without the Datadog Agent by tag(s).
63
+ */
64
+ "contPercentage" ?: number ;
65
+ /**
66
+ * The container usage without Datadog agent by tag(s).
67
+ */
68
+ "contUsage" ?: number ;
61
69
/**
62
70
* The percentage of container usage by tag(s).
63
71
*/
@@ -304,6 +312,16 @@ export class MonthlyUsageAttributionValues {
304
312
type : "number" ,
305
313
format : "double" ,
306
314
} ,
315
+ contPercentage : {
316
+ baseName : "cont_percentage" ,
317
+ type : "number" ,
318
+ format : "double" ,
319
+ } ,
320
+ contUsage : {
321
+ baseName : "cont_usage" ,
322
+ type : "number" ,
323
+ format : "double" ,
324
+ } ,
307
325
containerPercentage : {
308
326
baseName : "container_percentage" ,
309
327
type : "number" ,
Original file line number Diff line number Diff line change @@ -707,6 +707,7 @@ const enumsMap: { [key: string]: any[] } = {
707
707
"profiled_host_usage" ,
708
708
"snmp_usage" ,
709
709
"estimated_rum_sessions_usage" ,
710
+ "cont_usage" ,
710
711
] ,
711
712
IFrameWidgetDefinitionType : [ "iframe" ] ,
712
713
ImageWidgetDefinitionType : [ "image" ] ,
@@ -858,6 +859,8 @@ const enumsMap: { [key: string]: any[] } = {
858
859
"snmp_percentage" ,
859
860
"estimated_rum_sessions_usage" ,
860
861
"estimated_rum_sessions_percentage" ,
862
+ "cont_usage" ,
863
+ "cont_percentage" ,
861
864
"*" ,
862
865
] ,
863
866
NoteWidgetDefinitionType : [ "note" ] ,
You can’t perform that action at this time.
0 commit comments