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.
- Mandatory Project ID and Resource Parameter Clarification: BEFORE
calling any API tools (such as
list_metric_descriptors), you MUST ensure
the GCP Project ID is provided in the prompt, URI, or environment context.
If the Project ID cannot be resolved, you MUST ask the user to clarify or
provide it BEFORE executing API queries. Do NOT run API queries against
unconfirmed default or placeholder project names (such as mock-project,
my-project-id, unused, or YOUR_PROJECT_ID).
- Fallback Reporting: If API calls fail and fallback sources (such as
public docs) are used, you MUST state the error, the fallback source, and
the risks of non-live data (such as potential staleness, missing custom
metrics, or schema mismatches).
Workflow
Step 1: Verify & Auto-Configure MCP
Check if any tool matching list_metric_descriptors (such as
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
Resolve Project ID and Identifiers: Check for the GCP Project ID and
resource identifiers in the prompt, resource URIs, or environment context.
According to the CRITICAL RULES above, do NOT use placeholder project names.
Identify Service Prefix: Map target GCP services to their standard
prefix (such as compute, spanner, bigquery, storage).
Extract Metric Concepts: Extract metric keywords from user prompt (such
as "CPU", "memory", "bytes scanned", "latency", "connections") and map to
search substrings.
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/") (such as
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 (such as "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 (such as 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 (such as
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.
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 (that is, 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 (for example,
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 (for example, GAUGE,
DELTA, CUMULATIVE).
- Value Type: Map to the
valueType field (for example, INT64,
DOUBLE, DISTRIBUTION, BOOL).
- Unit: Map to the
unit field (for example, 1, By, s, ms).
- Monitored Resource Types: Map to the
monitoredResourceTypes list field
(for example, ["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
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---56# Metric Selection (Service Query & Local Keyword Filtering)78Use this skill to identify the most relevant Google Cloud Monitoring metric9descriptors. It queries all metric descriptors for a target service from the API10and filters them locally inside the agent's context using keyword matching.1112## CRITICAL RULES1314* **Always Query Live APIs**: You MUST always retrieve the most up-to-date15 metric descriptors dynamically by calling the `list_metric_descriptors` MCP16 tool.17* **Mandatory Project ID and Resource Parameter Clarification**: BEFORE18 calling any API tools (such as `list_metric_descriptors`), you MUST ensure19 the GCP Project ID is provided in the prompt, URI, or environment context.20 If the Project ID cannot be resolved, you MUST ask the user to clarify or21 provide it BEFORE executing API queries. Do NOT run API queries against22 unconfirmed default or placeholder project names (such as `mock-project`,23 `my-project-id`, `unused`, or `YOUR_PROJECT_ID`).24* **Fallback Reporting**: If API calls fail and fallback sources (such as25 public docs) are used, you MUST state the error, the fallback source, and26 the risks of non-live data (such as potential staleness, missing custom27 metrics, or schema mismatches).2829## Workflow3031### Step 1: Verify & Auto-Configure MCP32331. Check if any tool matching `list_metric_descriptors` (such as34 `google-cloud-monitoring:list_metric_descriptors`,35 `mcp_google-cloud-monitoring_list_metric_descriptors`, or a similar pattern)36 is available in your active toolset.372. **Verify via Unique URL**: To ensure you are calling the correct Google38 Cloud Monitoring tool, confirm that the underlying MCP server configuration39 points to: **`https://monitoring.googleapis.com/mcp`**.403. If the tool is **missing**:4142 * Locate the MCP configuration file for the user's environment. Check43 common paths:44 - `~/.gemini/config/mcp_config.json`45 - `~/.codeium/windsurf/mcp_config.json`46 - `cline_mcp_settings.json`47 - `claude_desktop_config.json`48 * Directly update/merge the configuration file with the following server49 configuration. **CRITICAL**: Merge the JSON object to preserve any50 existing MCP servers in `mcpServers`. Do not overwrite the file.5152 ```json53 "google-cloud-monitoring": {54 "url": "https://monitoring.googleapis.com/mcp",55 "authProviderType": "google_credentials",56 "enabledTools": [57 "list_metric_descriptors"58 ]59 }60 ```6162 * Print a clear message notifying the user that the63 `google-cloud-monitoring` MCP server has been configured, and request64 them to restart or start a new chat session to refresh tools. Stop65 calling further tools and end the turn.6667### Step 2: Analyze Request & Extract Keywords68691. **Resolve Project ID and Identifiers**: Check for the GCP Project ID and70 resource identifiers in the prompt, resource URIs, or environment context.71 According to the CRITICAL RULES above, do NOT use placeholder project names.72732. **Identify Service Prefix**: Map target GCP services to their standard74 prefix (such as `compute`, `spanner`, `bigquery`, `storage`).75763. **Extract Metric Concepts**: Extract metric keywords from user prompt (such77 as "CPU", "memory", "bytes scanned", "latency", "connections") and map to78 search substrings.7980*Example Query Analysis:*8182* **User Prompt**: "Check Cloud Storage bucket write throughput and request83 count"84* **Resource URI**:85 `//storage.googleapis.com/projects/my-project/buckets/my-bucket`86* **Service Prefix**: `storage` (mapped to `storage.googleapis.com`)87* **Metric Keywords**: `write`, `throughput`, `request`, `count`88* **Mapped Substrings**: `write`, `throughput`, `request_count`, `count`8990### Step 3: Query Metric Descriptors via list_metric_descriptors Tool9192Query all metric descriptors for each identified service prefix using the93`list_metric_descriptors` MCP tool (using `pageSize: 200`). Because Google Cloud94Monitoring filters do not allow combining multiple `metric.type` restrictions95with `OR`, you must **initiate a separate query for each identified service96prefix** (either sequentially or in parallel).9798If any response includes a `nextPageToken`, you MUST make consecutive follow-up99calls passing `pageToken` until all remaining descriptors for that prefix are100retrieved before filtering.101102*Filter Pattern Construction:* Map the target service domain to its appropriate103prefix style:1041051. **Standard Google Cloud Services**:106 `starts_with("<service_prefix>.googleapis.com/")` (such as107 `bigquery.googleapis.com/`, `redis.googleapis.com/`).1082. **Ops Agent (Guest OS)**: `starts_with("agent.googleapis.com/")` (for guest109 OS memory/disk metrics).1103. **Kubernetes / GKE Native**: `starts_with("kubernetes.io/")`1114. **Istio Service Mesh**: `starts_with("istio.io/")`1125. **Knative Serving / Autoscaler**: `starts_with("knative.dev/")`1136. **Custom / External Metrics**: Use `starts_with("custom.googleapis.com/")`114 or `starts_with("external.googleapis.com/")`.115116*Example Tool Call Payload:* If both Spanner and Compute Engine are targeted in117the request, execute these two tool calls:1181191. Spanner query:120121```json122{123 "name": "projects/my-project-id",124 "filter": "metric.type = starts_with(\"spanner.googleapis.com/\")",125 "pageSize": 200126}127```1281291. Compute Engine query:130131```json132{133 "name": "projects/my-project-id",134 "filter": "metric.type = starts_with(\"compute.googleapis.com/\")",135 "pageSize": 200136}137```138139Call the `list_metric_descriptors` tool with these payloads.140141### Step 4: Local Filtering & Fallback Protocol142143Aggregate all descriptors returned from Step 3, and filter them locally inside144your LLM context:1451461. **Keyword Filtering**: Filter the list by matching your target metric147 keywords (such as "cpu", "latency") against the `type`, `displayName`, and148 `description` fields of the descriptors.1492. **Resource Alignment**: Check if the metric contains labels matching the150 target resource granularity (such as checking for a `database` label if151 targeting a database resource). Do not attempt to dynamically match resource152 type strings directly, as Google Cloud Monitoring resource mappings (like153 Spanner databases mapping to `spanner_instance`) can be counter-intuitive.154155#### Troubleshooting & API Fallbacks156157If any tool call fails, times out, or returns empty results, use these158strategies:159160* **Case A: API Syntax Error**: Examine the error message, correct the filter161 syntax, and retry.162* **Case B: Timeout / Rate Limits**: Retry the call once with a smaller page163 size (such as `pageSize: 20`).164* **Case C: Unrecoverable Failure / Empty List**:165 1. Verify if the target service is enabled in the project.166 2. Search Google Cloud public documentation to verify standard metrics for167 the service.168169### Step 5: Output Selected Metrics170171For each service domain, return only the 5-15 key metrics directly relevant to172the user's intent.173174You MUST report the selected metrics in clean Markdown tables, grouped by175service (that is, one table per service prefix). The table MUST include the176following columns: "Metric Type", "Display Name", "Description", "Metric Kind",177"Value Type", "Unit", and "Monitored Resource Types". Map the fields from the178Google Cloud Monitoring `list_metric_descriptors` tool call response objects179directly to the table columns:180181* **Metric Type**: Map to the `type` field (for example,182 `spanner.googleapis.com/instance/cpu/utilization`).183* **Display Name**: Map to the `displayName` field.184* **Description**: Map to the `description` field.185* **Metric Kind**: Map to the `metricKind` field (for example, `GAUGE`,186 `DELTA`, `CUMULATIVE`).187* **Value Type**: Map to the `valueType` field (for example, `INT64`,188 `DOUBLE`, `DISTRIBUTION`, `BOOL`).189* **Unit**: Map to the `unit` field (for example, `1`, `By`, `s`, `ms`).190* **Monitored Resource Types**: Map to the `monitoredResourceTypes` list field191 (for example, `["spanner_instance"]`).192193*Example Output Table:*194195Metric Type | Display Name | Description | Metric Kind | Value Type | Unit | Monitored Resource Types196:------------------------------------------------ | :----------------------- | :------------------------------------------ | :---------- | :--------- | :--- | :-----------------------197`spanner.googleapis.com/instance/cpu/utilization` | Instance CPU Utilization | Fraction of allocated CPU currently in use. | GAUGE | DOUBLE | 1 | `["spanner_instance"]`198199## Reference Documentation & Links200201* **Google Cloud Monitoring Metric List**:202 [GCP Metrics Documentation](https://cloud.google.com/monitoring/api/metrics_gcp)203* **MetricDescriptor MCP Tool Reference**:204 [MCP Tools Reference: monitoring.googleapis.com](https://docs.cloud.google.com/monitoring/api/ref_v3_mcp/mcp/tools_list/list_metric_descriptors)205* **Monitoring Filter Syntax Guide**:206 [Monitoring Filters](https://cloud.google.com/monitoring/api/v3/filters)