This document describes how you can explore metric data by building a temporary chart with Metrics Explorer. For example, to view the CPU utilization of a virtual machine (VM), you can use Metrics Explorer to construct a chart that displays the most recent data. If you want permanent charts, then you can create a chart by using Metrics Explorer and save it to a custom dashboard. An alternative is to create a custom dashboard, which can display charts, logs, incidents, and other content, and then use the dashboard interface to add charts to that dashboard. For information about custom dashboards, see Create and manage custom dashboards.
You can create charts, such as those that chart a single metric type, and complex charts, such as those that chart multiple metric types. After you create a chart with Metrics Explorer, you can discard it, save it to a custom dashboard, save its configuration, or share it.
The following screenshot shows a single metric type—the CPU Utilization of a VM instance—charted on the Metrics Explorer page:
The previous screenshot shows multiple lines, each line shows the average CPU utilization for all VMs in a specific zone.
This feature is supported only for Google Cloud projects.
Chart a single metric type
To configure a chart to display a single metric, do the following:
-
In the Google Cloud console, go to the leaderboard Metrics explorer page:
If you use the search bar to find this page, then select the result whose subheading is Monitoring.
- In the toolbar of the Google Cloud console, select your Google Cloud project.
Specify the data to display on the chart. You can use a menu-driven interface, Monitoring Query Language (MQL), PromQL, or you can enter a Monitoring filter:
- In the toolbar of the query-builder pane, select the button whose name is either code MQL or code PromQL.
- Verify that MQL is selected in the Language toggle. The language toggle is in the same toolbar that lets you format your query.
-
Enter your query into the query editor. For example, to chart the CPU Utilization of the VM instances in your Google Cloud project, use the following query:
fetch gce_instance | metric 'compute.googleapis.com/instance/cpu/utilization' | group_by 1m, [value_utilization_mean: mean(value.utilization)] | every 1m
For more information about MQL, see the following documents:
- In the toolbar of the query-builder pane, select the button whose name is either code MQL or code PromQL.
- Verify that PromQL is selected in the Language toggle. The language toggle is in the same toolbar that lets you format your query.
-
Enter your query into the query editor. For example, to chart the average CPU utilization of the VM instances in your Google Cloud project, use the following query:
avg(compute_googleapis_com:instance_cpu_utilization)
For more information about using PromQL, see PromQL in Cloud Monitoring.
-
In the Metric element, click help_outline Help, and then select Direct Filter Mode.
The Metric and Filter elements are deleted, and a Filters element that lets you enter text, is created.
If you selected a resource type, metric, or filters before switching to Direct Filter Mode mode, then those settings are shown in the field of the Filters element.
- Enter a Monitoring filter in the field of the Filters element.
Combine and align time series:
To display every time series, in the Aggregation element, set the first menu to Unaggregated and the second menu to None.
To combine time series, in the Aggregation element, do the following:
Expand the first menu and select a function.
The chart is refreshed and displays a single time series. For example, if you select Mean, then the displayed time series is the average of all time series.
To combine time series that have the same label values, expand the second menu, and then select one or more labels.
The chart is refreshed and shows one time series for each unique combination of label values. For example, to display on time series per zone, set the second menu to zone.
When the second menu is set to None, the chart displays one time series.
Optional: To configure the spacing between data points, click add Add query element, select Min Interval, and then enter a value.
For more information about grouping and alignment, see Choose how to display charted data.
Update the chart settings based on your selected metric type:
For quota metric types, use the following settings:
- In the toolbar, set the time control to be at least one week. Quota metrics typically report one sample per day.
- In the Display pane, expand the Widget type menu and then select Stacked bar chart.
For metric types that have a
Distribution
value type, ensure that the Widget type menu is set to Heatmap chart. For more information, see About distribution-valued metrics.For other metric types, use the Widget type menu to display how the data is shown. The Widget type menu lists all available widget types; however, some widgets might not be enabled. Consider a chart that displays multiple time series, and assume that each measured value is a double:
- Line chart, Stacked bar chart, and Stacked area chart widgets are listed as Compatible. You can select any of these types.
- The Heatmap widget is disabled because these widgets can only display distribution-valued data.
Optional: To change how a chart or table displays the selected data, use the options in the Display pane:
Chart options:
- Analysis mode menu: Select between line charts, x-ray, and statics.
- Compare to Past menu: Overlay current data with past data.
- Threshold Line menu: add a reference threshold.
- Legend Alias menu: configure the name of a legend column.
- Y-axis assignment, Y-axis labels, and Y-axis scale menus: Configure configure Y-axis assignment, labels, or scale.
Table options:
- Value option menu: Select between the latest value and an aggregated value.
- Visible columns menu: Select which columns are shown.
- Column formatting menu: Configure column names, alignment of data in a column, units, and whether cells are color-coded.
- Metric view menu: Select whether the value is show by itself or shown relative to a range of values.
- Legend Alias menu: configure the name of a legend column.
Chart multiple metric types
In some situations, you might want to display time series from different metric types on the same chart. For example, to compare the read and write loads on a VM, configure a chart to display the number of bytes read and the number of bytes written.
To chart multiple metrics, you must use the menu-driven interface. The other interfaces don't support charting multiple metrics.
To display multiple metrics on a chart, do the following:
-
In the Google Cloud console, go to the leaderboard Metrics explorer page:
If you use the search bar to find this page, then select the result whose subheading is Monitoring.
- In the toolbar of the Google Cloud console, select your Google Cloud project.
Specify the data to display on the chart.
Not supported.
Not supported.
Not supported.
Chart a ratio of metrics
Monitoring the number of errors reported might be useful; however, it is more likely that you need to monitor the rate of errors. That is, you want to know how many errors occurred as measured against the total number of responses. To meet this requirement, you can configure a chart to display the ratio of two metrics. For references to examples and for information about anomalies that can occur when you chart ratios of metrics, see Ratios of metrics.
To display a ratio of metrics on a chart, do the following:
-
In the Google Cloud console, go to the leaderboard Metrics explorer page:
If you use the search bar to find this page, then select the result whose subheading is Monitoring.
- In the toolbar of the Google Cloud console, select your Google Cloud project.
Specify the data to appear on the chart:
- In the toolbar of the query-builder pane, select the button whose name is either code MQL or code PromQL.
- Verify that MQL is selected in the Language toggle. The language toggle is in the same toolbar that lets you format your query.
-
Enter your query into the query editor. MQL lets you compute a ratio of two different metrics, and it lets you filter a single metric by a label and then compute the ratio. The following query computes the ratio of responses with a value of
500
to the total number of responses:fetch https_lb_rule::loadbalancing.googleapis.com/https/request_count | { filter response_code_class = 500 ; ident } | group_by [matched_url_path_rule] | outer_join 0 | div
For more information about MQL, see the following documents:
- In the toolbar of the query-builder pane, select the button whose name is either code MQL or code PromQL.
- Verify that PromQL is selected in the Language toggle. The language toggle is in the same toolbar that lets you format your query.
-
Enter your query into the query editor. For example, to chart the ratio of average latency of your
my_summary_latency_seconds
metric, use the following query:sum without (instance)(rate(my_summary_latency_seconds_sum[5m])) / sum without (instance)(rate(my_summary_latency_seconds_count[5m]))
For more information about using PromQL, see PromQL in Cloud Monitoring.
Not supported.
Save a chart for future reference
Metrics Explorer lets you create a chart that you can use to explore a metric. However, the charts created by this tool aren't persistent. When you navigate away from the Metrics Explorer page, the chart is discarded.
To save a chart you've configured with Metrics Explorer for future reference, add the chart to a custom dashboard or save the chart's URL:
To add the chart to a custom dashboard, do one of the following:
If you use the Google Cloud console to manage your custom dashboards, then select Save Chart in the Metrics Explorer toolbar, and complete the dialog. You can save the chart to an existing custom dashboard or you can create a dashboard.
If you use the Cloud Monitoring API to manage your custom dashboards, then update the JSON file that defines the dashboard and its contents. To access the JSON representation, click code JSON Editor in the chart toolbar.
For detailed information about using the API to manage your custom dashboards, see Create and manage dashboards by API.
To keep a reference to the chart configuration, save the chart URL. Because the chart URL encodes the chart configuration, when you paste this URL into a browser the chart you configured is displayed.
To obtain the chart's URL, click link Link in the chart toolbar.
Save a chart's configuration
When you manage custom dashboards by using the Cloud Monitoring API, you can use Metrics Explorer to help you construct the data you provide to the API:
To generate the JSON representation for a chart that you plan to add to a dashboard, configure the chart with Metrics Explorer. You can then use options within Metrics Explorer to view and copy the chart's JSON representation.
To identify the syntax for a Monitoring filter, which is used with the Cloud Monitoring API, use the menu-driven interface of Metrics Explorer to configure the chart. After you select the metric and filters, switch to direct filter mode to view the equivalent Monitoring filter.
Save the data displayed by the chart
To save the data displayed by the chart to your local system, click get_app Download CSV.
What's next
- Explore charted data
- Select metrics with Metrics Explorer
- View and manage metric usage
- Set chart display options