Skip to content

New keys for summary public endpoint for Event Management Correlation product #828

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .generated-info
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"spec_repo_commit": "69305be",
"generated": "2025-08-05 16:25:22.016"
"spec_repo_commit": "6e520c2",
"generated": "2025-08-05 21:16:29.161"
}
45 changes: 45 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20767,6 +20767,21 @@ components:
hours in the current date for the given org.
format: int64
type: integer
event_management_correlation_correlated_events_sum:
description: Shows the sum of all Event Management correlated events over
all hours in the current date for all organizations.
format: int64
type: integer
event_management_correlation_correlated_related_events_sum:
description: Shows the sum of all Event Management correlated related events
over all hours in the current date for all organizations.
format: int64
type: integer
event_management_correlation_sum:
description: Shows the sum of all Event Management correlations over all
hours in the current date for all organizations.
format: int64
type: integer
fargate_container_profiler_profiling_fargate_avg:
description: The average number of Profiling Fargate tasks over all hours
in the current date for all organizations.
Expand Down Expand Up @@ -21697,6 +21712,21 @@ components:
hours in the current date for the given org.
format: int64
type: integer
event_management_correlation_correlated_events_sum:
description: Shows the sum of all Event Management correlated events over
all hours in the current date for the given org.
format: int64
type: integer
event_management_correlation_correlated_related_events_sum:
description: Shows the sum of all Event Management correlated related events
over all hours in the current date for the given org.
format: int64
type: integer
event_management_correlation_sum:
description: Shows the sum of all Event Management correlations over all
hours in the current date for the given org.
format: int64
type: integer
fargate_container_profiler_profiling_fargate_avg:
description: The average number of Profiling Fargate tasks over all hours
in the current month for the given org.
Expand Down Expand Up @@ -22632,6 +22662,21 @@ components:
hours in the current month for all organizations.
format: int64
type: integer
event_management_correlation_agg_sum:
description: Shows the sum of all Event Management correlations over all
hours in the current month for all organizations.
format: int64
type: integer
event_management_correlation_correlated_events_agg_sum:
description: Shows the sum of all Event Management correlated events over
all hours in the current month for all organizations.
format: int64
type: integer
event_management_correlation_correlated_related_events_agg_sum:
description: Shows the sum of all Event Management correlated related events
over all hours in the current month for all organizations.
format: int64
type: integer
fargate_container_profiler_profiling_fargate_avg_sum:
description: The average number of Profiling Fargate tasks over all hours
in the current month for all organizations.
Expand Down
61 changes: 61 additions & 0 deletions src/datadogV1/model/model_usage_summary_date.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,15 @@ pub struct UsageSummaryDate {
/// Shows the sum of all Error Tracking RUM error events over all hours in the current date for the given org.
#[serde(rename = "error_tracking_rum_error_events_sum")]
pub error_tracking_rum_error_events_sum: Option<i64>,
/// Shows the sum of all Event Management correlated events over all hours in the current date for all organizations.
#[serde(rename = "event_management_correlation_correlated_events_sum")]
pub event_management_correlation_correlated_events_sum: Option<i64>,
/// Shows the sum of all Event Management correlated related events over all hours in the current date for all organizations.
#[serde(rename = "event_management_correlation_correlated_related_events_sum")]
pub event_management_correlation_correlated_related_events_sum: Option<i64>,
/// Shows the sum of all Event Management correlations over all hours in the current date for all organizations.
#[serde(rename = "event_management_correlation_sum")]
pub event_management_correlation_sum: Option<i64>,
/// The average number of Profiling Fargate tasks over all hours in the current date for all organizations.
#[serde(rename = "fargate_container_profiler_profiling_fargate_avg")]
pub fargate_container_profiler_profiling_fargate_avg: Option<i64>,
Expand Down Expand Up @@ -625,6 +634,9 @@ impl UsageSummaryDate {
error_tracking_error_events_sum: None,
error_tracking_events_sum: None,
error_tracking_rum_error_events_sum: None,
event_management_correlation_correlated_events_sum: None,
event_management_correlation_correlated_related_events_sum: None,
event_management_correlation_sum: None,
fargate_container_profiler_profiling_fargate_avg: None,
fargate_container_profiler_profiling_fargate_eks_avg: None,
fargate_tasks_count_avg: None,
Expand Down Expand Up @@ -1181,6 +1193,27 @@ impl UsageSummaryDate {
self
}

#[allow(deprecated)]
pub fn event_management_correlation_correlated_events_sum(mut self, value: i64) -> Self {
self.event_management_correlation_correlated_events_sum = Some(value);
self
}

#[allow(deprecated)]
pub fn event_management_correlation_correlated_related_events_sum(
mut self,
value: i64,
) -> Self {
self.event_management_correlation_correlated_related_events_sum = Some(value);
self
}

#[allow(deprecated)]
pub fn event_management_correlation_sum(mut self, value: i64) -> Self {
self.event_management_correlation_sum = Some(value);
self
}

#[allow(deprecated)]
pub fn fargate_container_profiler_profiling_fargate_avg(mut self, value: i64) -> Self {
self.fargate_container_profiler_profiling_fargate_avg = Some(value);
Expand Down Expand Up @@ -1859,6 +1892,10 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
let mut error_tracking_error_events_sum: Option<i64> = None;
let mut error_tracking_events_sum: Option<i64> = None;
let mut error_tracking_rum_error_events_sum: Option<i64> = None;
let mut event_management_correlation_correlated_events_sum: Option<i64> = None;
let mut event_management_correlation_correlated_related_events_sum: Option<i64> =
None;
let mut event_management_correlation_sum: Option<i64> = None;
let mut fargate_container_profiler_profiling_fargate_avg: Option<i64> = None;
let mut fargate_container_profiler_profiling_fargate_eks_avg: Option<i64> = None;
let mut fargate_tasks_count_avg: Option<i64> = None;
Expand Down Expand Up @@ -2493,6 +2530,27 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
error_tracking_rum_error_events_sum =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"event_management_correlation_correlated_events_sum" => {
if v.is_null() {
continue;
}
event_management_correlation_correlated_events_sum =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"event_management_correlation_correlated_related_events_sum" => {
if v.is_null() {
continue;
}
event_management_correlation_correlated_related_events_sum =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"event_management_correlation_sum" => {
if v.is_null() {
continue;
}
event_management_correlation_sum =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"fargate_container_profiler_profiling_fargate_avg" => {
if v.is_null() {
continue;
Expand Down Expand Up @@ -3243,6 +3301,9 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
error_tracking_error_events_sum,
error_tracking_events_sum,
error_tracking_rum_error_events_sum,
event_management_correlation_correlated_events_sum,
event_management_correlation_correlated_related_events_sum,
event_management_correlation_sum,
fargate_container_profiler_profiling_fargate_avg,
fargate_container_profiler_profiling_fargate_eks_avg,
fargate_tasks_count_avg,
Expand Down
61 changes: 61 additions & 0 deletions src/datadogV1/model/model_usage_summary_date_org.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,15 @@ pub struct UsageSummaryDateOrg {
/// Shows the sum of all Error Tracking RUM error events over all hours in the current date for the given org.
#[serde(rename = "error_tracking_rum_error_events_sum")]
pub error_tracking_rum_error_events_sum: Option<i64>,
/// Shows the sum of all Event Management correlated events over all hours in the current date for the given org.
#[serde(rename = "event_management_correlation_correlated_events_sum")]
pub event_management_correlation_correlated_events_sum: Option<i64>,
/// Shows the sum of all Event Management correlated related events over all hours in the current date for the given org.
#[serde(rename = "event_management_correlation_correlated_related_events_sum")]
pub event_management_correlation_correlated_related_events_sum: Option<i64>,
/// Shows the sum of all Event Management correlations over all hours in the current date for the given org.
#[serde(rename = "event_management_correlation_sum")]
pub event_management_correlation_sum: Option<i64>,
/// The average number of Profiling Fargate tasks over all hours in the current month for the given org.
#[serde(rename = "fargate_container_profiler_profiling_fargate_avg")]
pub fargate_container_profiler_profiling_fargate_avg: Option<i64>,
Expand Down Expand Up @@ -647,6 +656,9 @@ impl UsageSummaryDateOrg {
error_tracking_error_events_sum: None,
error_tracking_events_sum: None,
error_tracking_rum_error_events_sum: None,
event_management_correlation_correlated_events_sum: None,
event_management_correlation_correlated_related_events_sum: None,
event_management_correlation_sum: None,
fargate_container_profiler_profiling_fargate_avg: None,
fargate_container_profiler_profiling_fargate_eks_avg: None,
fargate_tasks_count_avg: None,
Expand Down Expand Up @@ -1224,6 +1236,27 @@ impl UsageSummaryDateOrg {
self
}

#[allow(deprecated)]
pub fn event_management_correlation_correlated_events_sum(mut self, value: i64) -> Self {
self.event_management_correlation_correlated_events_sum = Some(value);
self
}

#[allow(deprecated)]
pub fn event_management_correlation_correlated_related_events_sum(
mut self,
value: i64,
) -> Self {
self.event_management_correlation_correlated_related_events_sum = Some(value);
self
}

#[allow(deprecated)]
pub fn event_management_correlation_sum(mut self, value: i64) -> Self {
self.event_management_correlation_sum = Some(value);
self
}

#[allow(deprecated)]
pub fn fargate_container_profiler_profiling_fargate_avg(mut self, value: i64) -> Self {
self.fargate_container_profiler_profiling_fargate_avg = Some(value);
Expand Down Expand Up @@ -1923,6 +1956,10 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
let mut error_tracking_error_events_sum: Option<i64> = None;
let mut error_tracking_events_sum: Option<i64> = None;
let mut error_tracking_rum_error_events_sum: Option<i64> = None;
let mut event_management_correlation_correlated_events_sum: Option<i64> = None;
let mut event_management_correlation_correlated_related_events_sum: Option<i64> =
None;
let mut event_management_correlation_sum: Option<i64> = None;
let mut fargate_container_profiler_profiling_fargate_avg: Option<i64> = None;
let mut fargate_container_profiler_profiling_fargate_eks_avg: Option<i64> = None;
let mut fargate_tasks_count_avg: Option<i64> = None;
Expand Down Expand Up @@ -2582,6 +2619,27 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
error_tracking_rum_error_events_sum =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"event_management_correlation_correlated_events_sum" => {
if v.is_null() {
continue;
}
event_management_correlation_correlated_events_sum =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"event_management_correlation_correlated_related_events_sum" => {
if v.is_null() {
continue;
}
event_management_correlation_correlated_related_events_sum =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"event_management_correlation_sum" => {
if v.is_null() {
continue;
}
event_management_correlation_sum =
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
}
"fargate_container_profiler_profiling_fargate_avg" => {
if v.is_null() {
continue;
Expand Down Expand Up @@ -3353,6 +3411,9 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
error_tracking_error_events_sum,
error_tracking_events_sum,
error_tracking_rum_error_events_sum,
event_management_correlation_correlated_events_sum,
event_management_correlation_correlated_related_events_sum,
event_management_correlation_sum,
fargate_container_profiler_profiling_fargate_avg,
fargate_container_profiler_profiling_fargate_eks_avg,
fargate_tasks_count_avg,
Expand Down
Loading
Loading