Aggregating Metric Streams in a Query

Aggregating metric streams returns the combined value of all metric streams for the selected statistic. For example, aggregate all metric streams for CPU Utilization to return the combined value across all resources.

The Aggregate metric streams option is equivalent to grouping() in the MQL expression.

Note

If you aggregate metric streams, then only one stream is tracked. Don't aggregate metric streams with split notifications.

By default, a chart represents each metric stream with a line, which results in multiple lines per chart. When you aggregate metric streams, a chart represents all metric streams with a single line, which results in just one line per chart.

For query troubleshooting, see Troubleshooting Queries.

Examples

Example 1: Aggregate Metric Streams for count()
ServiceConnectorHubErrors[1m].grouping().count()

In example 1, the query returns the count (count()) of errors at a one-minute interval, with all results aggregated.

Example 2: Aggregate Metric Streams for max()
IopsRead[1m]{compartmentID = "<compartment_OCID>"}.grouping().max()

In example 2, the query returns the maximum (max()) IopsRead metric data at a one-minute interval, filtered to a compartment, with all results aggregated.