Metric Selection (Service Query & Local Keyword Filtering)
Use this skill to identify the most relevant Google Cloud Monitoring metric
descriptors. It queries all metric descriptors for a target service from the API
and filters them locally inside the agent's context using keyword matching.
CRITICAL RULES
- Always Query Live APIs: You MUST always retrieve the most up-to-date
metric descriptors dynamically by calling the
list_metric_descriptors MCP
tool.
Workflow
Step 1: Verify & Auto-Configure MCP
Check if any tool matching list_metric_descriptors (e.g.
google-cloud-monitoring:list_metric_descriptors,
mcp_google-cloud-monitoring_list_metric_descriptors, or a similar pattern)
is available in your active toolset.
Verify via Unique URL: To ensure you are calling the correct Google
Cloud Monitoring tool, confirm that the underlying MCP server configuration
points to: https://monitoring.googleapis.com/mcp.
If the tool is missing:
Locate the MCP configuration file for the user's environment. Check
common paths:
~/.gemini/config/mcp_config.json
~/.codeium/windsurf/mcp_config.json
cline_mcp_settings.json
claude_desktop_config.json
Directly update/merge the configuration file with the following server
configuration. CRITICAL: Merge the JSON object to preserve any
existing MCP servers in mcpServers. Do not overwrite the file.
"google-cloud-monitoring": {
"url": "https://monitoring.googleapis.com/mcp",
"authProviderType": "google_credentials",
"enabledTools": [
"list_metric_descriptors"
]
}
Print a clear message notifying the user that the
google-cloud-monitoring MCP server has been configured, and request
them to restart or start a new chat session to refresh tools. Stop
calling further tools and end the turn.
Step 2: Analyze Request & Extract Keywords
- Identify the target GCP service prefix (e.g.
compute, spanner,
bigquery, storage) and the project ID from the resource URI.
- Extract target metric concepts from the user's prompt (e.g., "CPU",
"memory", "bytes scanned", "latency", "connections").
- Map these concepts to standard Google Cloud Monitoring metric substrings
(e.g.,
cpu, mem, scanned_bytes, latenc, connections).
Example Query Analysis:
- User Prompt: "Check Cloud Storage bucket write throughput and request
count"
- Resource URI:
//storage.googleapis.com/projects/my-project/buckets/my-bucket
- Service Prefix:
storage (mapped to storage.googleapis.com)
- Metric Keywords:
write, throughput, request, count
- Mapped Substrings:
write, throughput, request_count, count
Step 3: Query Metric Descriptors via list_metric_descriptors Tool
Query all metric descriptors for each identified service prefix using the
list_metric_descriptors MCP tool (using pageSize: 200). Because Google Cloud
Monitoring filters do not allow combining multiple metric.type restrictions
with OR, you must initiate a separate query for each identified service
prefix (either sequentially or in parallel).
If any response includes a nextPageToken, you MUST make consecutive follow-up
calls passing pageToken until all remaining descriptors for that prefix are
retrieved before filtering.
Filter Pattern Construction: Map the target service domain to its appropriate
prefix style:
- Standard Google Cloud Services:
starts_with("<service_prefix>.googleapis.com/") (e.g.,
bigquery.googleapis.com/, redis.googleapis.com/).
- Ops Agent (Guest OS):
starts_with("agent.googleapis.com/") (for guest
OS memory/disk metrics).
- Kubernetes / GKE Native:
starts_with("kubernetes.io/")
- Istio Service Mesh:
starts_with("istio.io/")
- Knative Serving / Autoscaler:
starts_with("knative.dev/")
- Custom / External Metrics: Use
starts_with("custom.googleapis.com/")
or starts_with("external.googleapis.com/").
Example Tool Call Payload: If both Spanner and Compute Engine are targeted in
the request, execute these two tool calls:
- Spanner query:
{
"name": "projects/my-project-id",
"filter": "metric.type = starts_with(\"spanner.googleapis.com/\")",
"pageSize": 200
}
- Compute Engine query:
{
"name": "projects/my-project-id",
"filter": "metric.type = starts_with(\"compute.googleapis.com/\")",
"pageSize": 200
}
Call the list_metric_descriptors tool with these payloads.
Step 4: Local Filtering & Fallback Protocol
Aggregate all descriptors returned from Step 3, and filter them locally inside
your LLM context:
- Keyword Filtering: Filter the list by matching your target metric
keywords (e.g. "cpu", "latency") against the
type, displayName, and
description fields of the descriptors.
- Resource Alignment: Check if the metric contains labels matching the
target resource granularity (e.g., checking for a
database label if
targeting a database resource). Do not attempt to dynamically match resource
type strings directly, as Google Cloud Monitoring resource mappings (like
Spanner databases mapping to spanner_instance) can be counter-intuitive.
Troubleshooting & API Fallbacks
If any tool call fails, times out, or returns empty results, use these
strategies:
- Case A: API Syntax Error: Examine the error message, correct the filter
syntax, and retry.
- Case B: Timeout / Rate Limits: Retry the call once with a smaller page
size (e.g.,
pageSize: 20).
- Case C: Unrecoverable Failure / Empty List:
- Verify if the target service is enabled in the project.
- Search Google Cloud public documentation to verify standard metrics for
the service.
- Notify the user of the failure and ask for clarification.
Step 5: Output Selected Metrics
For each service domain, return only the 5-15 key metrics directly relevant to
the user's intent.
You MUST report the selected metrics in clean Markdown tables, grouped by
service (i.e., one table per service prefix). The table MUST include the
following columns: "Metric Type", "Display Name", "Description", "Metric Kind",
"Value Type", "Unit", and "Monitored Resource Types". Map the fields from the
Google Cloud Monitoring list_metric_descriptors tool call response objects
directly to the table columns:
- Metric Type: Map to the
type field (e.g.,
spanner.googleapis.com/instance/cpu/utilization).
- Display Name: Map to the
displayName field.
- Description: Map to the
description field.
- Metric Kind: Map to the
metricKind field (e.g., GAUGE, DELTA,
CUMULATIVE).
- Value Type: Map to the
valueType field (e.g., INT64, DOUBLE,
DISTRIBUTION, BOOL).
- Unit: Map to the
unit field (e.g., 1, By, s, ms).
- Monitored Resource Types: Map to the
monitoredResourceTypes list field
(e.g., ["spanner_instance"]).
Example Output Table:
| Metric Type |
Display Name |
Description |
Metric Kind |
Value Type |
Unit |
Monitored Resource Types |
spanner.googleapis.com/instance/cpu/utilization |
Instance CPU Utilization |
Fraction of allocated CPU currently in use. |
GAUGE |
DOUBLE |
1 |
["spanner_instance"] |
Reference Documentation & Links
Source: google/skills → skills/cloud/cloud-monitoring-metric-selection/SKILL.md
1---2name: cloud-monitoring-metric-selection3description: >- Retrieve, query, and identify relevant Google Cloud Monitoring metric descriptors for a GCP service or resource (such as Compute Engine, Spanner, BigQuery, Cloud Run, Cloud SQL, Pub/Sub, Cloud Storage, etc.). Use when asked to find, list, search, or discover GCP metric types, names, kind/value schemas, or descriptors.4---5
6
7# Metric Selection (Service Query & Local Keyword Filtering)
8
9Use this skill to identify the most relevant Google Cloud Monitoring metric
10descriptors. It queries all metric descriptors for a target service from the API
11and filters them locally inside the agent's context using keyword matching.
12
13## CRITICAL RULES
14
15* **Always Query Live APIs**: You MUST always retrieve the most up-to-date
16 metric descriptors dynamically by calling the `list_metric_descriptors` MCP
17 tool.
18
19## Workflow
20
21### Step 1: Verify & Auto-Configure MCP
22
231. Check if any tool matching `list_metric_descriptors` (e.g.
24 `google-cloud-monitoring:list_metric_descriptors`,
25 `mcp_google-cloud-monitoring_list_metric_descriptors`, or a similar pattern)
26 is available in your active toolset.
272. **Verify via Unique URL**: To ensure you are calling the correct Google
28 Cloud Monitoring tool, confirm that the underlying MCP server configuration
29 points to: **`https://monitoring.googleapis.com/mcp`**.
303. If the tool is **missing**:
31
32 * Locate the MCP configuration file for the user's environment. Check
33 common paths:
34 - `~/.gemini/config/mcp_config.json`
35 - `~/.codeium/windsurf/mcp_config.json`
36 - `cline_mcp_settings.json`
37 - `claude_desktop_config.json`
38 * Directly update/merge the configuration file with the following server
39 configuration. **CRITICAL**: Merge the JSON object to preserve any
40 existing MCP servers in `mcpServers`. Do not overwrite the file.
41
42 ```json
43 "google-cloud-monitoring": {
44 "url": "https://monitoring.googleapis.com/mcp",
45 "authProviderType": "google_credentials",
46 "enabledTools": [
47 "list_metric_descriptors"
48 ]
49 }
50 ```
51
52 * Print a clear message notifying the user that the
53 `google-cloud-monitoring` MCP server has been configured, and request
54 them to restart or start a new chat session to refresh tools. Stop
55 calling further tools and end the turn.
56
57### Step 2: Analyze Request & Extract Keywords
58
591. Identify the target GCP service prefix (e.g. `compute`, `spanner`,
60 `bigquery`, `storage`) and the project ID from the resource URI.
612. Extract target metric concepts from the user's prompt (e.g., "CPU",
62 "memory", "bytes scanned", "latency", "connections").
633. Map these concepts to standard Google Cloud Monitoring metric substrings
64 (e.g., `cpu`, `mem`, `scanned_bytes`, `latenc`, `connections`).
65
66*Example Query Analysis:*
67
68* **User Prompt**: "Check Cloud Storage bucket write throughput and request
69 count"
70* **Resource URI**:
71 `//storage.googleapis.com/projects/my-project/buckets/my-bucket`
72* **Service Prefix**: `storage` (mapped to `storage.googleapis.com`)
73* **Metric Keywords**: `write`, `throughput`, `request`, `count`
74* **Mapped Substrings**: `write`, `throughput`, `request_count`, `count`
75
76### Step 3: Query Metric Descriptors via list_metric_descriptors Tool
77
78Query all metric descriptors for each identified service prefix using the
79`list_metric_descriptors` MCP tool (using `pageSize: 200`). Because Google Cloud
80Monitoring filters do not allow combining multiple `metric.type` restrictions
81with `OR`, you must **initiate a separate query for each identified service
82prefix** (either sequentially or in parallel).
83
84If any response includes a `nextPageToken`, you MUST make consecutive follow-up
85calls passing `pageToken` until all remaining descriptors for that prefix are
86retrieved before filtering.
87
88*Filter Pattern Construction:* Map the target service domain to its appropriate
89prefix style:
90
911. **Standard Google Cloud Services**:
92 `starts_with("<service_prefix>.googleapis.com/")` (e.g.,
93 `bigquery.googleapis.com/`, `redis.googleapis.com/`).
942. **Ops Agent (Guest OS)**: `starts_with("agent.googleapis.com/")` (for guest
95 OS memory/disk metrics).
963. **Kubernetes / GKE Native**: `starts_with("kubernetes.io/")`
974. **Istio Service Mesh**: `starts_with("istio.io/")`
985. **Knative Serving / Autoscaler**: `starts_with("knative.dev/")`
996. **Custom / External Metrics**: Use `starts_with("custom.googleapis.com/")`
100 or `starts_with("external.googleapis.com/")`.
101
102*Example Tool Call Payload:* If both Spanner and Compute Engine are targeted in
103the request, execute these two tool calls:
104
1051. Spanner query:
106
107```json
108{
109 "name": "projects/my-project-id",
110 "filter": "metric.type = starts_with(\"spanner.googleapis.com/\")",
111 "pageSize": 200
112}
113```
114
1151. Compute Engine query:
116
117```json
118{
119 "name": "projects/my-project-id",
120 "filter": "metric.type = starts_with(\"compute.googleapis.com/\")",
121 "pageSize": 200
122}
123```
124
125Call the `list_metric_descriptors` tool with these payloads.
126
127### Step 4: Local Filtering & Fallback Protocol
128
129Aggregate all descriptors returned from Step 3, and filter them locally inside
130your LLM context:
131
1321. **Keyword Filtering**: Filter the list by matching your target metric
133 keywords (e.g. "cpu", "latency") against the `type`, `displayName`, and
134 `description` fields of the descriptors.
1352. **Resource Alignment**: Check if the metric contains labels matching the
136 target resource granularity (e.g., checking for a `database` label if
137 targeting a database resource). Do not attempt to dynamically match resource
138 type strings directly, as Google Cloud Monitoring resource mappings (like
139 Spanner databases mapping to `spanner_instance`) can be counter-intuitive.
140
141#### Troubleshooting & API Fallbacks
142
143If any tool call fails, times out, or returns empty results, use these
144strategies:
145
146* **Case A: API Syntax Error**: Examine the error message, correct the filter
147 syntax, and retry.
148* **Case B: Timeout / Rate Limits**: Retry the call once with a smaller page
149 size (e.g., `pageSize: 20`).
150* **Case C: Unrecoverable Failure / Empty List**:
151 1. Verify if the target service is enabled in the project.
152 2. Search Google Cloud public documentation to verify standard metrics for
153 the service.
154 3. Notify the user of the failure and ask for clarification.
155
156### Step 5: Output Selected Metrics
157
158For each service domain, return only the 5-15 key metrics directly relevant to
159the user's intent.
160
161You MUST report the selected metrics in clean Markdown tables, grouped by
162service (i.e., one table per service prefix). The table MUST include the
163following columns: "Metric Type", "Display Name", "Description", "Metric Kind",
164"Value Type", "Unit", and "Monitored Resource Types". Map the fields from the
165Google Cloud Monitoring `list_metric_descriptors` tool call response objects
166directly to the table columns:
167
168* **Metric Type**: Map to the `type` field (e.g.,
169 `spanner.googleapis.com/instance/cpu/utilization`).
170* **Display Name**: Map to the `displayName` field.
171* **Description**: Map to the `description` field.
172* **Metric Kind**: Map to the `metricKind` field (e.g., `GAUGE`, `DELTA`,
173 `CUMULATIVE`).
174* **Value Type**: Map to the `valueType` field (e.g., `INT64`, `DOUBLE`,
175 `DISTRIBUTION`, `BOOL`).
176* **Unit**: Map to the `unit` field (e.g., `1`, `By`, `s`, `ms`).
177* **Monitored Resource Types**: Map to the `monitoredResourceTypes` list field
178 (e.g., `["spanner_instance"]`).
179
180*Example Output Table:*
181
182Metric Type | Display Name | Description | Metric Kind | Value Type | Unit | Monitored Resource Types
183:------------------------------------------------ | :----------------------- | :------------------------------------------ | :---------- | :--------- | :--- | :-----------------------
184`spanner.googleapis.com/instance/cpu/utilization` | Instance CPU Utilization | Fraction of allocated CPU currently in use. | GAUGE | DOUBLE | 1 | `["spanner_instance"]`
185
186## Reference Documentation & Links
187
188* **Google Cloud Monitoring Metric List**:
189 [GCP Metrics Documentation](https://cloud.google.com/monitoring/api/metrics_gcp)
190* **MetricDescriptor MCP Tool Reference**:
191 [MCP Tools Reference: monitoring.googleapis.com](https://docs.cloud.google.com/monitoring/api/ref_v3_mcp/mcp/tools_list/list_metric_descriptors)
192* **Monitoring Filter Syntax Guide**:
193 [Monitoring Filters](https://cloud.google.com/monitoring/api/v3/filters)
194
195---
196
197**Source:** [`google/skills`](https://github.com/google/skills) → `skills/cloud/cloud-monitoring-metric-selection/SKILL.md`