Skip to content

Commit 573dd2c

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
New keys for summary public endpoint for Event Management Correlation product (#828)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent cc45027 commit 573dd2c

File tree

5 files changed

+231
-2
lines changed

5 files changed

+231
-2
lines changed

.generated-info

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"spec_repo_commit": "69305be",
3-
"generated": "2025-08-05 16:25:22.016"
2+
"spec_repo_commit": "6e520c2",
3+
"generated": "2025-08-05 21:16:29.161"
44
}

.generator/schemas/v1/openapi.yaml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20767,6 +20767,21 @@ components:
2076720767
hours in the current date for the given org.
2076820768
format: int64
2076920769
type: integer
20770+
event_management_correlation_correlated_events_sum:
20771+
description: Shows the sum of all Event Management correlated events over
20772+
all hours in the current date for all organizations.
20773+
format: int64
20774+
type: integer
20775+
event_management_correlation_correlated_related_events_sum:
20776+
description: Shows the sum of all Event Management correlated related events
20777+
over all hours in the current date for all organizations.
20778+
format: int64
20779+
type: integer
20780+
event_management_correlation_sum:
20781+
description: Shows the sum of all Event Management correlations over all
20782+
hours in the current date for all organizations.
20783+
format: int64
20784+
type: integer
2077020785
fargate_container_profiler_profiling_fargate_avg:
2077120786
description: The average number of Profiling Fargate tasks over all hours
2077220787
in the current date for all organizations.
@@ -21697,6 +21712,21 @@ components:
2169721712
hours in the current date for the given org.
2169821713
format: int64
2169921714
type: integer
21715+
event_management_correlation_correlated_events_sum:
21716+
description: Shows the sum of all Event Management correlated events over
21717+
all hours in the current date for the given org.
21718+
format: int64
21719+
type: integer
21720+
event_management_correlation_correlated_related_events_sum:
21721+
description: Shows the sum of all Event Management correlated related events
21722+
over all hours in the current date for the given org.
21723+
format: int64
21724+
type: integer
21725+
event_management_correlation_sum:
21726+
description: Shows the sum of all Event Management correlations over all
21727+
hours in the current date for the given org.
21728+
format: int64
21729+
type: integer
2170021730
fargate_container_profiler_profiling_fargate_avg:
2170121731
description: The average number of Profiling Fargate tasks over all hours
2170221732
in the current month for the given org.
@@ -22632,6 +22662,21 @@ components:
2263222662
hours in the current month for all organizations.
2263322663
format: int64
2263422664
type: integer
22665+
event_management_correlation_agg_sum:
22666+
description: Shows the sum of all Event Management correlations over all
22667+
hours in the current month for all organizations.
22668+
format: int64
22669+
type: integer
22670+
event_management_correlation_correlated_events_agg_sum:
22671+
description: Shows the sum of all Event Management correlated events over
22672+
all hours in the current month for all organizations.
22673+
format: int64
22674+
type: integer
22675+
event_management_correlation_correlated_related_events_agg_sum:
22676+
description: Shows the sum of all Event Management correlated related events
22677+
over all hours in the current month for all organizations.
22678+
format: int64
22679+
type: integer
2263522680
fargate_container_profiler_profiling_fargate_avg_sum:
2263622681
description: The average number of Profiling Fargate tasks over all hours
2263722682
in the current month for all organizations.

src/datadogV1/model/model_usage_summary_date.rs

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,15 @@ pub struct UsageSummaryDate {
242242
/// Shows the sum of all Error Tracking RUM error events over all hours in the current date for the given org.
243243
#[serde(rename = "error_tracking_rum_error_events_sum")]
244244
pub error_tracking_rum_error_events_sum: Option<i64>,
245+
/// Shows the sum of all Event Management correlated events over all hours in the current date for all organizations.
246+
#[serde(rename = "event_management_correlation_correlated_events_sum")]
247+
pub event_management_correlation_correlated_events_sum: Option<i64>,
248+
/// Shows the sum of all Event Management correlated related events over all hours in the current date for all organizations.
249+
#[serde(rename = "event_management_correlation_correlated_related_events_sum")]
250+
pub event_management_correlation_correlated_related_events_sum: Option<i64>,
251+
/// Shows the sum of all Event Management correlations over all hours in the current date for all organizations.
252+
#[serde(rename = "event_management_correlation_sum")]
253+
pub event_management_correlation_sum: Option<i64>,
245254
/// The average number of Profiling Fargate tasks over all hours in the current date for all organizations.
246255
#[serde(rename = "fargate_container_profiler_profiling_fargate_avg")]
247256
pub fargate_container_profiler_profiling_fargate_avg: Option<i64>,
@@ -625,6 +634,9 @@ impl UsageSummaryDate {
625634
error_tracking_error_events_sum: None,
626635
error_tracking_events_sum: None,
627636
error_tracking_rum_error_events_sum: None,
637+
event_management_correlation_correlated_events_sum: None,
638+
event_management_correlation_correlated_related_events_sum: None,
639+
event_management_correlation_sum: None,
628640
fargate_container_profiler_profiling_fargate_avg: None,
629641
fargate_container_profiler_profiling_fargate_eks_avg: None,
630642
fargate_tasks_count_avg: None,
@@ -1181,6 +1193,27 @@ impl UsageSummaryDate {
11811193
self
11821194
}
11831195

1196+
#[allow(deprecated)]
1197+
pub fn event_management_correlation_correlated_events_sum(mut self, value: i64) -> Self {
1198+
self.event_management_correlation_correlated_events_sum = Some(value);
1199+
self
1200+
}
1201+
1202+
#[allow(deprecated)]
1203+
pub fn event_management_correlation_correlated_related_events_sum(
1204+
mut self,
1205+
value: i64,
1206+
) -> Self {
1207+
self.event_management_correlation_correlated_related_events_sum = Some(value);
1208+
self
1209+
}
1210+
1211+
#[allow(deprecated)]
1212+
pub fn event_management_correlation_sum(mut self, value: i64) -> Self {
1213+
self.event_management_correlation_sum = Some(value);
1214+
self
1215+
}
1216+
11841217
#[allow(deprecated)]
11851218
pub fn fargate_container_profiler_profiling_fargate_avg(mut self, value: i64) -> Self {
11861219
self.fargate_container_profiler_profiling_fargate_avg = Some(value);
@@ -1859,6 +1892,10 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
18591892
let mut error_tracking_error_events_sum: Option<i64> = None;
18601893
let mut error_tracking_events_sum: Option<i64> = None;
18611894
let mut error_tracking_rum_error_events_sum: Option<i64> = None;
1895+
let mut event_management_correlation_correlated_events_sum: Option<i64> = None;
1896+
let mut event_management_correlation_correlated_related_events_sum: Option<i64> =
1897+
None;
1898+
let mut event_management_correlation_sum: Option<i64> = None;
18621899
let mut fargate_container_profiler_profiling_fargate_avg: Option<i64> = None;
18631900
let mut fargate_container_profiler_profiling_fargate_eks_avg: Option<i64> = None;
18641901
let mut fargate_tasks_count_avg: Option<i64> = None;
@@ -2493,6 +2530,27 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
24932530
error_tracking_rum_error_events_sum =
24942531
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
24952532
}
2533+
"event_management_correlation_correlated_events_sum" => {
2534+
if v.is_null() {
2535+
continue;
2536+
}
2537+
event_management_correlation_correlated_events_sum =
2538+
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
2539+
}
2540+
"event_management_correlation_correlated_related_events_sum" => {
2541+
if v.is_null() {
2542+
continue;
2543+
}
2544+
event_management_correlation_correlated_related_events_sum =
2545+
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
2546+
}
2547+
"event_management_correlation_sum" => {
2548+
if v.is_null() {
2549+
continue;
2550+
}
2551+
event_management_correlation_sum =
2552+
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
2553+
}
24962554
"fargate_container_profiler_profiling_fargate_avg" => {
24972555
if v.is_null() {
24982556
continue;
@@ -3243,6 +3301,9 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
32433301
error_tracking_error_events_sum,
32443302
error_tracking_events_sum,
32453303
error_tracking_rum_error_events_sum,
3304+
event_management_correlation_correlated_events_sum,
3305+
event_management_correlation_correlated_related_events_sum,
3306+
event_management_correlation_sum,
32463307
fargate_container_profiler_profiling_fargate_avg,
32473308
fargate_container_profiler_profiling_fargate_eks_avg,
32483309
fargate_tasks_count_avg,

src/datadogV1/model/model_usage_summary_date_org.rs

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,15 @@ pub struct UsageSummaryDateOrg {
251251
/// Shows the sum of all Error Tracking RUM error events over all hours in the current date for the given org.
252252
#[serde(rename = "error_tracking_rum_error_events_sum")]
253253
pub error_tracking_rum_error_events_sum: Option<i64>,
254+
/// Shows the sum of all Event Management correlated events over all hours in the current date for the given org.
255+
#[serde(rename = "event_management_correlation_correlated_events_sum")]
256+
pub event_management_correlation_correlated_events_sum: Option<i64>,
257+
/// Shows the sum of all Event Management correlated related events over all hours in the current date for the given org.
258+
#[serde(rename = "event_management_correlation_correlated_related_events_sum")]
259+
pub event_management_correlation_correlated_related_events_sum: Option<i64>,
260+
/// Shows the sum of all Event Management correlations over all hours in the current date for the given org.
261+
#[serde(rename = "event_management_correlation_sum")]
262+
pub event_management_correlation_sum: Option<i64>,
254263
/// The average number of Profiling Fargate tasks over all hours in the current month for the given org.
255264
#[serde(rename = "fargate_container_profiler_profiling_fargate_avg")]
256265
pub fargate_container_profiler_profiling_fargate_avg: Option<i64>,
@@ -647,6 +656,9 @@ impl UsageSummaryDateOrg {
647656
error_tracking_error_events_sum: None,
648657
error_tracking_events_sum: None,
649658
error_tracking_rum_error_events_sum: None,
659+
event_management_correlation_correlated_events_sum: None,
660+
event_management_correlation_correlated_related_events_sum: None,
661+
event_management_correlation_sum: None,
650662
fargate_container_profiler_profiling_fargate_avg: None,
651663
fargate_container_profiler_profiling_fargate_eks_avg: None,
652664
fargate_tasks_count_avg: None,
@@ -1224,6 +1236,27 @@ impl UsageSummaryDateOrg {
12241236
self
12251237
}
12261238

1239+
#[allow(deprecated)]
1240+
pub fn event_management_correlation_correlated_events_sum(mut self, value: i64) -> Self {
1241+
self.event_management_correlation_correlated_events_sum = Some(value);
1242+
self
1243+
}
1244+
1245+
#[allow(deprecated)]
1246+
pub fn event_management_correlation_correlated_related_events_sum(
1247+
mut self,
1248+
value: i64,
1249+
) -> Self {
1250+
self.event_management_correlation_correlated_related_events_sum = Some(value);
1251+
self
1252+
}
1253+
1254+
#[allow(deprecated)]
1255+
pub fn event_management_correlation_sum(mut self, value: i64) -> Self {
1256+
self.event_management_correlation_sum = Some(value);
1257+
self
1258+
}
1259+
12271260
#[allow(deprecated)]
12281261
pub fn fargate_container_profiler_profiling_fargate_avg(mut self, value: i64) -> Self {
12291262
self.fargate_container_profiler_profiling_fargate_avg = Some(value);
@@ -1923,6 +1956,10 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
19231956
let mut error_tracking_error_events_sum: Option<i64> = None;
19241957
let mut error_tracking_events_sum: Option<i64> = None;
19251958
let mut error_tracking_rum_error_events_sum: Option<i64> = None;
1959+
let mut event_management_correlation_correlated_events_sum: Option<i64> = None;
1960+
let mut event_management_correlation_correlated_related_events_sum: Option<i64> =
1961+
None;
1962+
let mut event_management_correlation_sum: Option<i64> = None;
19261963
let mut fargate_container_profiler_profiling_fargate_avg: Option<i64> = None;
19271964
let mut fargate_container_profiler_profiling_fargate_eks_avg: Option<i64> = None;
19281965
let mut fargate_tasks_count_avg: Option<i64> = None;
@@ -2582,6 +2619,27 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
25822619
error_tracking_rum_error_events_sum =
25832620
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
25842621
}
2622+
"event_management_correlation_correlated_events_sum" => {
2623+
if v.is_null() {
2624+
continue;
2625+
}
2626+
event_management_correlation_correlated_events_sum =
2627+
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
2628+
}
2629+
"event_management_correlation_correlated_related_events_sum" => {
2630+
if v.is_null() {
2631+
continue;
2632+
}
2633+
event_management_correlation_correlated_related_events_sum =
2634+
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
2635+
}
2636+
"event_management_correlation_sum" => {
2637+
if v.is_null() {
2638+
continue;
2639+
}
2640+
event_management_correlation_sum =
2641+
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
2642+
}
25852643
"fargate_container_profiler_profiling_fargate_avg" => {
25862644
if v.is_null() {
25872645
continue;
@@ -3353,6 +3411,9 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
33533411
error_tracking_error_events_sum,
33543412
error_tracking_events_sum,
33553413
error_tracking_rum_error_events_sum,
3414+
event_management_correlation_correlated_events_sum,
3415+
event_management_correlation_correlated_related_events_sum,
3416+
event_management_correlation_sum,
33563417
fargate_container_profiler_profiling_fargate_avg,
33573418
fargate_container_profiler_profiling_fargate_eks_avg,
33583419
fargate_tasks_count_avg,

0 commit comments

Comments
 (0)