Try the MCP server for Google Analytics. Install from
GitHub, and see the
announcement for more details.
MetricAggregation
Stay organized with collections
Save and categorize content based on your preferences.
Represents aggregation of metrics.
Enums |
METRIC_AGGREGATION_UNSPECIFIED |
Unspecified operator. |
TOTAL |
SUM operator. |
MINIMUM |
Minimum operator. |
MAXIMUM |
Maximum operator. |
COUNT |
Count operator. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-09 UTC.
[null,null,["Last updated 2024-10-09 UTC."],[[["\u003cp\u003e\u003ccode\u003eMetricAggregation\u003c/code\u003e enums are used to represent different types of metric aggregations.\u003c/p\u003e\n"],["\u003cp\u003eThese enums include options for calculating the total sum, minimum, maximum, and count of metrics.\u003c/p\u003e\n"],["\u003cp\u003eA default \u003ccode\u003eUNSPECIFIED\u003c/code\u003e enum exists but should not be used.\u003c/p\u003e\n"]]],["The content defines an aggregation system for metrics, utilizing various operators. It specifies five distinct operators within an enumeration: `METRIC_AGGREGATION_UNSPECIFIED` for no specific operation, `TOTAL` to sum values, `MINIMUM` to find the lowest value, `MAXIMUM` to find the highest value, and `COUNT` to tally the number of values. This allows for different calculations on metrics, including totals, extremes, and quantities.\n"],null,["# MetricAggregation\n\nRepresents aggregation of metrics.\n\n| Enums ||\n|----------------------------------|-----------------------|\n| `METRIC_AGGREGATION_UNSPECIFIED` | Unspecified operator. |\n| `TOTAL` | SUM operator. |\n| `MINIMUM` | Minimum operator. |\n| `MAXIMUM` | Maximum operator. |\n| `COUNT` | Count operator. |"]]