diff --git a/.apigentools-info b/.apigentools-info index fc5a1d616cc..b3df5d15927 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -4,13 +4,13 @@ "spec_versions": { "v1": { "apigentools_version": "1.6.6", - "regenerated": "2024-12-17 15:51:05.988918", - "spec_repo_commit": "b82d3677" + "regenerated": "2024-12-18 14:10:19.119214", + "spec_repo_commit": "d1f49008" }, "v2": { "apigentools_version": "1.6.6", - "regenerated": "2024-12-17 15:51:06.004049", - "spec_repo_commit": "b82d3677" + "regenerated": "2024-12-18 14:10:19.134937", + "spec_repo_commit": "d1f49008" } } } \ No newline at end of file diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index ac76775f04e..51185eef690 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -19697,7 +19697,8 @@ components: format: int64 type: integer avg_profiled_fargate_tasks: - description: The average profiled task count for Fargate Profiling. + description: The average total count for Fargate Container Profiler over + all hours in the current date for all organizations. format: int64 type: integer aws_host_top99p: @@ -19971,6 +19972,16 @@ components: 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 date for all organizations. + format: int64 + type: integer + fargate_container_profiler_profiling_fargate_eks_avg: + description: The average number of Profiling Fargate Elastic Kubernetes + Service tasks over all hours in the current date for all organizations. + format: int64 + type: integer fargate_tasks_count_avg: description: Shows the high-watermark of all Fargate tasks over all hours in the current date for all organizations. @@ -20468,7 +20479,8 @@ components: format: int64 type: integer avg_profiled_fargate_tasks: - description: The average profiled task count for Fargate Profiling. + description: The average total count for Fargate Container Profiler over + all hours in the current month for the given org. format: int64 type: integer aws_host_top99p: @@ -20748,6 +20760,16 @@ components: 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. + format: int64 + type: integer + fargate_container_profiler_profiling_fargate_eks_avg: + description: The average number of Profiling Fargate Elastic Kubernetes + Service tasks over all hours in the current month for the given org. + format: int64 + type: integer fargate_tasks_count_avg: description: The average task count for Fargate. format: int64 @@ -21243,8 +21265,8 @@ components: format: int64 type: integer avg_profiled_fargate_tasks_sum: - description: Shows the average of all profiled Fargate tasks over all hours - in the current month for all organizations. + description: The average total count for Fargate Container Profiler over + all hours in the current month for all organizations. format: int64 type: integer aws_host_top99p_sum: @@ -21532,6 +21554,16 @@ components: 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. + format: int64 + type: integer + fargate_container_profiler_profiling_fargate_eks_avg_sum: + description: The average number of Profiling Fargate Elastic Kubernetes + Service tasks over all hours in the current month for all organizations. + format: int64 + type: integer fargate_tasks_count_avg_sum: description: Shows the average of all Fargate tasks over all hours in the current month for all organizations. diff --git a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java index a77d7fadfad..f997c67a534 100644 --- a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java +++ b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDate.java @@ -83,6 +83,8 @@ UsageSummaryDate.JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_SUM, UsageSummaryDate.JSON_PROPERTY_ERROR_TRACKING_EVENTS_SUM, UsageSummaryDate.JSON_PROPERTY_ERROR_TRACKING_RUM_ERROR_EVENTS_SUM, + UsageSummaryDate.JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_AVG, + UsageSummaryDate.JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG, UsageSummaryDate.JSON_PROPERTY_FARGATE_TASKS_COUNT_AVG, UsageSummaryDate.JSON_PROPERTY_FARGATE_TASKS_COUNT_HWM, UsageSummaryDate.JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG, @@ -383,6 +385,14 @@ public class UsageSummaryDate { "error_tracking_rum_error_events_sum"; private Long errorTrackingRumErrorEventsSum; + public static final String JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_AVG = + "fargate_container_profiler_profiling_fargate_avg"; + private Long fargateContainerProfilerProfilingFargateAvg; + + public static final String JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG = + "fargate_container_profiler_profiling_fargate_eks_avg"; + private Long fargateContainerProfilerProfilingFargateEksAvg; + public static final String JSON_PROPERTY_FARGATE_TASKS_COUNT_AVG = "fargate_tasks_count_avg"; private Long fargateTasksCountAvg; @@ -879,7 +889,8 @@ public UsageSummaryDate avgProfiledFargateTasks(Long avgProfiledFargateTasks) { } /** - * The average profiled task count for Fargate Profiling. + * The average total count for Fargate Container Profiler over all hours in the current date for + * all organizations. * * @return avgProfiledFargateTasks */ @@ -2057,6 +2068,56 @@ public void setErrorTrackingRumErrorEventsSum(Long errorTrackingRumErrorEventsSu this.errorTrackingRumErrorEventsSum = errorTrackingRumErrorEventsSum; } + public UsageSummaryDate fargateContainerProfilerProfilingFargateAvg( + Long fargateContainerProfilerProfilingFargateAvg) { + this.fargateContainerProfilerProfilingFargateAvg = fargateContainerProfilerProfilingFargateAvg; + return this; + } + + /** + * The average number of Profiling Fargate tasks over all hours in the current date for all + * organizations. + * + * @return fargateContainerProfilerProfilingFargateAvg + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_AVG) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getFargateContainerProfilerProfilingFargateAvg() { + return fargateContainerProfilerProfilingFargateAvg; + } + + public void setFargateContainerProfilerProfilingFargateAvg( + Long fargateContainerProfilerProfilingFargateAvg) { + this.fargateContainerProfilerProfilingFargateAvg = fargateContainerProfilerProfilingFargateAvg; + } + + public UsageSummaryDate fargateContainerProfilerProfilingFargateEksAvg( + Long fargateContainerProfilerProfilingFargateEksAvg) { + this.fargateContainerProfilerProfilingFargateEksAvg = + fargateContainerProfilerProfilingFargateEksAvg; + return this; + } + + /** + * The average number of Profiling Fargate Elastic Kubernetes Service tasks over all hours in the + * current date for all organizations. + * + * @return fargateContainerProfilerProfilingFargateEksAvg + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getFargateContainerProfilerProfilingFargateEksAvg() { + return fargateContainerProfilerProfilingFargateEksAvg; + } + + public void setFargateContainerProfilerProfilingFargateEksAvg( + Long fargateContainerProfilerProfilingFargateEksAvg) { + this.fargateContainerProfilerProfilingFargateEksAvg = + fargateContainerProfilerProfilingFargateEksAvg; + } + public UsageSummaryDate fargateTasksCountAvg(Long fargateTasksCountAvg) { this.fargateTasksCountAvg = fargateTasksCountAvg; return this; @@ -4014,6 +4075,12 @@ public boolean equals(Object o) { && Objects.equals(this.errorTrackingEventsSum, usageSummaryDate.errorTrackingEventsSum) && Objects.equals( this.errorTrackingRumErrorEventsSum, usageSummaryDate.errorTrackingRumErrorEventsSum) + && Objects.equals( + this.fargateContainerProfilerProfilingFargateAvg, + usageSummaryDate.fargateContainerProfilerProfilingFargateAvg) + && Objects.equals( + this.fargateContainerProfilerProfilingFargateEksAvg, + usageSummaryDate.fargateContainerProfilerProfilingFargateEksAvg) && Objects.equals(this.fargateTasksCountAvg, usageSummaryDate.fargateTasksCountAvg) && Objects.equals(this.fargateTasksCountHwm, usageSummaryDate.fargateTasksCountHwm) && Objects.equals(this.flexLogsComputeLargeAvg, usageSummaryDate.flexLogsComputeLargeAvg) @@ -4218,6 +4285,8 @@ public int hashCode() { errorTrackingErrorEventsSum, errorTrackingEventsSum, errorTrackingRumErrorEventsSum, + fargateContainerProfilerProfilingFargateAvg, + fargateContainerProfilerProfilingFargateEksAvg, fargateTasksCountAvg, fargateTasksCountHwm, flexLogsComputeLargeAvg, @@ -4446,6 +4515,12 @@ public String toString() { sb.append(" errorTrackingRumErrorEventsSum: ") .append(toIndentedString(errorTrackingRumErrorEventsSum)) .append("\n"); + sb.append(" fargateContainerProfilerProfilingFargateAvg: ") + .append(toIndentedString(fargateContainerProfilerProfilingFargateAvg)) + .append("\n"); + sb.append(" fargateContainerProfilerProfilingFargateEksAvg: ") + .append(toIndentedString(fargateContainerProfilerProfilingFargateEksAvg)) + .append("\n"); sb.append(" fargateTasksCountAvg: ") .append(toIndentedString(fargateTasksCountAvg)) .append("\n"); diff --git a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDateOrg.java b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDateOrg.java index 92a2ed9c96d..b5d1278b580 100644 --- a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDateOrg.java +++ b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryDateOrg.java @@ -83,6 +83,8 @@ UsageSummaryDateOrg.JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_SUM, UsageSummaryDateOrg.JSON_PROPERTY_ERROR_TRACKING_EVENTS_SUM, UsageSummaryDateOrg.JSON_PROPERTY_ERROR_TRACKING_RUM_ERROR_EVENTS_SUM, + UsageSummaryDateOrg.JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_AVG, + UsageSummaryDateOrg.JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG, UsageSummaryDateOrg.JSON_PROPERTY_FARGATE_TASKS_COUNT_AVG, UsageSummaryDateOrg.JSON_PROPERTY_FARGATE_TASKS_COUNT_HWM, UsageSummaryDateOrg.JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG, @@ -395,6 +397,14 @@ public class UsageSummaryDateOrg { "error_tracking_rum_error_events_sum"; private Long errorTrackingRumErrorEventsSum; + public static final String JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_AVG = + "fargate_container_profiler_profiling_fargate_avg"; + private Long fargateContainerProfilerProfilingFargateAvg; + + public static final String JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG = + "fargate_container_profiler_profiling_fargate_eks_avg"; + private Long fargateContainerProfilerProfilingFargateEksAvg; + public static final String JSON_PROPERTY_FARGATE_TASKS_COUNT_AVG = "fargate_tasks_count_avg"; private Long fargateTasksCountAvg; @@ -942,7 +952,8 @@ public UsageSummaryDateOrg avgProfiledFargateTasks(Long avgProfiledFargateTasks) } /** - * The average profiled task count for Fargate Profiling. + * The average total count for Fargate Container Profiler over all hours in the current month for + * the given org. * * @return avgProfiledFargateTasks */ @@ -2141,6 +2152,56 @@ public void setErrorTrackingRumErrorEventsSum(Long errorTrackingRumErrorEventsSu this.errorTrackingRumErrorEventsSum = errorTrackingRumErrorEventsSum; } + public UsageSummaryDateOrg fargateContainerProfilerProfilingFargateAvg( + Long fargateContainerProfilerProfilingFargateAvg) { + this.fargateContainerProfilerProfilingFargateAvg = fargateContainerProfilerProfilingFargateAvg; + return this; + } + + /** + * The average number of Profiling Fargate tasks over all hours in the current month for the given + * org. + * + * @return fargateContainerProfilerProfilingFargateAvg + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_AVG) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getFargateContainerProfilerProfilingFargateAvg() { + return fargateContainerProfilerProfilingFargateAvg; + } + + public void setFargateContainerProfilerProfilingFargateAvg( + Long fargateContainerProfilerProfilingFargateAvg) { + this.fargateContainerProfilerProfilingFargateAvg = fargateContainerProfilerProfilingFargateAvg; + } + + public UsageSummaryDateOrg fargateContainerProfilerProfilingFargateEksAvg( + Long fargateContainerProfilerProfilingFargateEksAvg) { + this.fargateContainerProfilerProfilingFargateEksAvg = + fargateContainerProfilerProfilingFargateEksAvg; + return this; + } + + /** + * The average number of Profiling Fargate Elastic Kubernetes Service tasks over all hours in the + * current month for the given org. + * + * @return fargateContainerProfilerProfilingFargateEksAvg + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getFargateContainerProfilerProfilingFargateEksAvg() { + return fargateContainerProfilerProfilingFargateEksAvg; + } + + public void setFargateContainerProfilerProfilingFargateEksAvg( + Long fargateContainerProfilerProfilingFargateEksAvg) { + this.fargateContainerProfilerProfilingFargateEksAvg = + fargateContainerProfilerProfilingFargateEksAvg; + } + public UsageSummaryDateOrg fargateTasksCountAvg(Long fargateTasksCountAvg) { this.fargateTasksCountAvg = fargateTasksCountAvg; return this; @@ -4157,6 +4218,12 @@ public boolean equals(Object o) { && Objects.equals(this.errorTrackingEventsSum, usageSummaryDateOrg.errorTrackingEventsSum) && Objects.equals( this.errorTrackingRumErrorEventsSum, usageSummaryDateOrg.errorTrackingRumErrorEventsSum) + && Objects.equals( + this.fargateContainerProfilerProfilingFargateAvg, + usageSummaryDateOrg.fargateContainerProfilerProfilingFargateAvg) + && Objects.equals( + this.fargateContainerProfilerProfilingFargateEksAvg, + usageSummaryDateOrg.fargateContainerProfilerProfilingFargateEksAvg) && Objects.equals(this.fargateTasksCountAvg, usageSummaryDateOrg.fargateTasksCountAvg) && Objects.equals(this.fargateTasksCountHwm, usageSummaryDateOrg.fargateTasksCountHwm) && Objects.equals(this.flexLogsComputeLargeAvg, usageSummaryDateOrg.flexLogsComputeLargeAvg) @@ -4379,6 +4446,8 @@ public int hashCode() { errorTrackingErrorEventsSum, errorTrackingEventsSum, errorTrackingRumErrorEventsSum, + fargateContainerProfilerProfilingFargateAvg, + fargateContainerProfilerProfilingFargateEksAvg, fargateTasksCountAvg, fargateTasksCountHwm, flexLogsComputeLargeAvg, @@ -4615,6 +4684,12 @@ public String toString() { sb.append(" errorTrackingRumErrorEventsSum: ") .append(toIndentedString(errorTrackingRumErrorEventsSum)) .append("\n"); + sb.append(" fargateContainerProfilerProfilingFargateAvg: ") + .append(toIndentedString(fargateContainerProfilerProfilingFargateAvg)) + .append("\n"); + sb.append(" fargateContainerProfilerProfilingFargateEksAvg: ") + .append(toIndentedString(fargateContainerProfilerProfilingFargateEksAvg)) + .append("\n"); sb.append(" fargateTasksCountAvg: ") .append(toIndentedString(fargateTasksCountAvg)) .append("\n"); diff --git a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryResponse.java b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryResponse.java index 73256915249..0981ffd8379 100644 --- a/src/main/java/com/datadog/api/client/v1/model/UsageSummaryResponse.java +++ b/src/main/java/com/datadog/api/client/v1/model/UsageSummaryResponse.java @@ -89,6 +89,8 @@ UsageSummaryResponse.JSON_PROPERTY_ERROR_TRACKING_ERROR_EVENTS_AGG_SUM, UsageSummaryResponse.JSON_PROPERTY_ERROR_TRACKING_EVENTS_AGG_SUM, UsageSummaryResponse.JSON_PROPERTY_ERROR_TRACKING_RUM_ERROR_EVENTS_AGG_SUM, + UsageSummaryResponse.JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_AVG_SUM, + UsageSummaryResponse.JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG_SUM, UsageSummaryResponse.JSON_PROPERTY_FARGATE_TASKS_COUNT_AVG_SUM, UsageSummaryResponse.JSON_PROPERTY_FARGATE_TASKS_COUNT_HWM_SUM, UsageSummaryResponse.JSON_PROPERTY_FLEX_LOGS_COMPUTE_LARGE_AVG_SUM, @@ -415,6 +417,15 @@ public class UsageSummaryResponse { "error_tracking_rum_error_events_agg_sum"; private Long errorTrackingRumErrorEventsAggSum; + public static final String JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_AVG_SUM = + "fargate_container_profiler_profiling_fargate_avg_sum"; + private Long fargateContainerProfilerProfilingFargateAvgSum; + + public static final String + JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG_SUM = + "fargate_container_profiler_profiling_fargate_eks_avg_sum"; + private Long fargateContainerProfilerProfilingFargateEksAvgSum; + public static final String JSON_PROPERTY_FARGATE_TASKS_COUNT_AVG_SUM = "fargate_tasks_count_avg_sum"; private Long fargateTasksCountAvgSum; @@ -949,8 +960,8 @@ public UsageSummaryResponse avgProfiledFargateTasksSum(Long avgProfiledFargateTa } /** - * Shows the average of all profiled Fargate tasks over all hours in the current month for all - * organizations. + * The average total count for Fargate Container Profiler over all hours in the current month for + * all organizations. * * @return avgProfiledFargateTasksSum */ @@ -2209,6 +2220,58 @@ public void setErrorTrackingRumErrorEventsAggSum(Long errorTrackingRumErrorEvent this.errorTrackingRumErrorEventsAggSum = errorTrackingRumErrorEventsAggSum; } + public UsageSummaryResponse fargateContainerProfilerProfilingFargateAvgSum( + Long fargateContainerProfilerProfilingFargateAvgSum) { + this.fargateContainerProfilerProfilingFargateAvgSum = + fargateContainerProfilerProfilingFargateAvgSum; + return this; + } + + /** + * The average number of Profiling Fargate tasks over all hours in the current month for all + * organizations. + * + * @return fargateContainerProfilerProfilingFargateAvgSum + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_AVG_SUM) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getFargateContainerProfilerProfilingFargateAvgSum() { + return fargateContainerProfilerProfilingFargateAvgSum; + } + + public void setFargateContainerProfilerProfilingFargateAvgSum( + Long fargateContainerProfilerProfilingFargateAvgSum) { + this.fargateContainerProfilerProfilingFargateAvgSum = + fargateContainerProfilerProfilingFargateAvgSum; + } + + public UsageSummaryResponse fargateContainerProfilerProfilingFargateEksAvgSum( + Long fargateContainerProfilerProfilingFargateEksAvgSum) { + this.fargateContainerProfilerProfilingFargateEksAvgSum = + fargateContainerProfilerProfilingFargateEksAvgSum; + return this; + } + + /** + * The average number of Profiling Fargate Elastic Kubernetes Service tasks over all hours in the + * current month for all organizations. + * + * @return fargateContainerProfilerProfilingFargateEksAvgSum + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_FARGATE_CONTAINER_PROFILER_PROFILING_FARGATE_EKS_AVG_SUM) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Long getFargateContainerProfilerProfilingFargateEksAvgSum() { + return fargateContainerProfilerProfilingFargateEksAvgSum; + } + + public void setFargateContainerProfilerProfilingFargateEksAvgSum( + Long fargateContainerProfilerProfilingFargateEksAvgSum) { + this.fargateContainerProfilerProfilingFargateEksAvgSum = + fargateContainerProfilerProfilingFargateEksAvgSum; + } + public UsageSummaryResponse fargateTasksCountAvgSum(Long fargateTasksCountAvgSum) { this.fargateTasksCountAvgSum = fargateTasksCountAvgSum; return this; @@ -4406,6 +4469,12 @@ public boolean equals(Object o) { && Objects.equals( this.errorTrackingRumErrorEventsAggSum, usageSummaryResponse.errorTrackingRumErrorEventsAggSum) + && Objects.equals( + this.fargateContainerProfilerProfilingFargateAvgSum, + usageSummaryResponse.fargateContainerProfilerProfilingFargateAvgSum) + && Objects.equals( + this.fargateContainerProfilerProfilingFargateEksAvgSum, + usageSummaryResponse.fargateContainerProfilerProfilingFargateEksAvgSum) && Objects.equals( this.fargateTasksCountAvgSum, usageSummaryResponse.fargateTasksCountAvgSum) && Objects.equals( @@ -4665,6 +4734,8 @@ public int hashCode() { errorTrackingErrorEventsAggSum, errorTrackingEventsAggSum, errorTrackingRumErrorEventsAggSum, + fargateContainerProfilerProfilingFargateAvgSum, + fargateContainerProfilerProfilingFargateEksAvgSum, fargateTasksCountAvgSum, fargateTasksCountHwmSum, flexLogsComputeLargeAvgSum, @@ -4924,6 +4995,12 @@ public String toString() { sb.append(" errorTrackingRumErrorEventsAggSum: ") .append(toIndentedString(errorTrackingRumErrorEventsAggSum)) .append("\n"); + sb.append(" fargateContainerProfilerProfilingFargateAvgSum: ") + .append(toIndentedString(fargateContainerProfilerProfilingFargateAvgSum)) + .append("\n"); + sb.append(" fargateContainerProfilerProfilingFargateEksAvgSum: ") + .append(toIndentedString(fargateContainerProfilerProfilingFargateEksAvgSum)) + .append("\n"); sb.append(" fargateTasksCountAvgSum: ") .append(toIndentedString(fargateTasksCountAvgSum)) .append("\n");