File tree Expand file tree Collapse file tree
packages/datadog-api-client-v1/models Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22607,6 +22607,10 @@ components:
2260722607 description: Shows the average of all normalized Database Monitoring queries over all hours in the current date for all organizations.
2260822608 format: int64
2260922609 type: integer
22610+ do_jobs_monitoring_orchestrators_job_hours_sum:
22611+ description: Shows the sum of all orchestrator job hours over all hours in the current date for all organizations.
22612+ format: int64
22613+ type: integer
2261022614 eph_infra_host_agent_sum:
2261122615 description: Shows the sum of all ephemeral infrastructure hosts with the Datadog Agent over all hours in the current date for the given org.
2261222616 format: int64
@@ -23620,6 +23624,10 @@ components:
2362023624 description: Shows the average of all distinct Database Monitoring normalized queries over all hours in the current month for the given org.
2362123625 format: int64
2362223626 type: integer
23627+ do_jobs_monitoring_orchestrators_job_hours_sum:
23628+ description: Shows the sum of all orchestrator job hours over all hours in the current date for the given org.
23629+ format: int64
23630+ type: integer
2362323631 eph_infra_host_agent_sum:
2362423632 description: Shows the sum of all ephemeral infrastructure hosts with the Datadog Agent over all hours in the current date for the given org.
2362523633 format: int64
@@ -24639,6 +24647,10 @@ components:
2463924647 description: Shows the average of all distinct Database Monitoring Normalized Queries over all hours in the current month for all organizations.
2464024648 format: int64
2464124649 type: integer
24650+ do_jobs_monitoring_orchestrators_job_hours_agg_sum:
24651+ description: Shows the sum of all orchestrator job hours over all hours in the current month for all organizations.
24652+ format: int64
24653+ type: integer
2464224654 end_date:
2464324655 description: Shows the last date of usage in the current month for all organizations.
2464424656 format: date-time
Original file line number Diff line number Diff line change @@ -351,6 +351,10 @@ export class UsageSummaryDate {
351351 * Shows the average of all normalized Database Monitoring queries over all hours in the current date for all organizations.
352352 */
353353 "dbmQueriesCountAvg" ?: number ;
354+ /**
355+ * Shows the sum of all orchestrator job hours over all hours in the current date for all organizations.
356+ */
357+ "doJobsMonitoringOrchestratorsJobHoursSum" ?: number ;
354358 /**
355359 * Shows the sum of all ephemeral infrastructure hosts with the Datadog Agent over all hours in the current date for the given org.
356360 */
@@ -1437,6 +1441,11 @@ export class UsageSummaryDate {
14371441 type : "number" ,
14381442 format : "int64" ,
14391443 } ,
1444+ doJobsMonitoringOrchestratorsJobHoursSum : {
1445+ baseName : "do_jobs_monitoring_orchestrators_job_hours_sum" ,
1446+ type : "number" ,
1447+ format : "int64" ,
1448+ } ,
14401449 ephInfraHostAgentSum : {
14411450 baseName : "eph_infra_host_agent_sum" ,
14421451 type : "number" ,
Original file line number Diff line number Diff line change @@ -362,6 +362,10 @@ export class UsageSummaryDateOrg {
362362 * Shows the average of all distinct Database Monitoring normalized queries over all hours in the current month for the given org.
363363 */
364364 "dbmQueriesAvgSum" ?: number ;
365+ /**
366+ * Shows the sum of all orchestrator job hours over all hours in the current date for the given org.
367+ */
368+ "doJobsMonitoringOrchestratorsJobHoursSum" ?: number ;
365369 /**
366370 * Shows the sum of all ephemeral infrastructure hosts with the Datadog Agent over all hours in the current date for the given org.
367371 */
@@ -1473,6 +1477,11 @@ export class UsageSummaryDateOrg {
14731477 type : "number" ,
14741478 format : "int64" ,
14751479 } ,
1480+ doJobsMonitoringOrchestratorsJobHoursSum : {
1481+ baseName : "do_jobs_monitoring_orchestrators_job_hours_sum" ,
1482+ type : "number" ,
1483+ format : "int64" ,
1484+ } ,
14761485 ephInfraHostAgentSum : {
14771486 baseName : "eph_infra_host_agent_sum" ,
14781487 type : "number" ,
Original file line number Diff line number Diff line change @@ -360,6 +360,10 @@ export class UsageSummaryResponse {
360360 * Shows the average of all distinct Database Monitoring Normalized Queries over all hours in the current month for all organizations.
361361 */
362362 "dbmQueriesAvgSum" ?: number ;
363+ /**
364+ * Shows the sum of all orchestrator job hours over all hours in the current month for all organizations.
365+ */
366+ "doJobsMonitoringOrchestratorsJobHoursAggSum" ?: number ;
363367 /**
364368 * Shows the last date of usage in the current month for all organizations.
365369 */
@@ -1492,6 +1496,11 @@ export class UsageSummaryResponse {
14921496 type : "number" ,
14931497 format : "int64" ,
14941498 } ,
1499+ doJobsMonitoringOrchestratorsJobHoursAggSum : {
1500+ baseName : "do_jobs_monitoring_orchestrators_job_hours_agg_sum" ,
1501+ type : "number" ,
1502+ format : "int64" ,
1503+ } ,
14951504 endDate : {
14961505 baseName : "end_date" ,
14971506 type : "Date" ,
You can’t perform that action at this time.
0 commit comments