cloud-monitoring-metric-selection
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.)
Install / Use
npx skills add google/skills --skill cloud-monitoring-metric-selectionInstalls into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
OperationsSupported Platforms
Our assessment of cloud-monitoring-metric-selection
cloud-monitoring-metric-selection scores 95/100 on our quality scale, 34th of 259 Operations skills we index (top 14%).
Its SKILL.md is 9.5 KB long, well organised into 10 sections with 2 code examples: a thorough specification that gives an agent plenty to work with.
With 20,340 GitHub stars, it is one of the more widely adopted skills in the catalogue.
Maintenance, license and trust
- The repository was last updated 2 days ago, so cloud-monitoring-metric-selection is actively maintained.
- It is released under the Apache-2.0 license, a permissive license that allows use, modification and commercial use with attribution.
- Its trust signals score 100/100, with no cautions. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
Safety scan
No issues foundOur scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands.
Automated pattern scan on 2026-09-26. It catches known dangerous patterns, not every risk — read a skill before letting an agent act on it.
cloud-monitoring-metric-selection compared with similar skills
All 4 of these similar skills score higher than cloud-monitoring-metric-selection; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| cloud-monitoring-metric-selection (this skill)by google | 95 | 20.3k | 2d ago | SKILL.md |
| claude-memby thedotmack | 100 | 94.7k | 1d ago | CLAUDE.md |
| algorithmic-artby anthropics | 100 | 177.9k | 3d ago | SKILL.md |
| pptxby anthropics | 100 | 177.9k | 3d ago | SKILL.md |
| designby nextlevelbuilder | 100 | 130.2k | 4d ago | SKILL.md |
Frequently asked questions
- How do I install cloud-monitoring-metric-selection?
- Run
npx skills add google/skills --skill cloud-monitoring-metric-selection. The install tabs above show the steps for each supported agent. - Which AI agents does cloud-monitoring-metric-selection work with?
- It is written for Universal, as a SKILL.md file. Other agents that read the same format can often use it too.
- Is cloud-monitoring-metric-selection safe to use?
- Our scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. It is Apache-2.0-licensed and scores 100/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is cloud-monitoring-metric-selection still maintained?
- The repository was last updated 2 days ago, so cloud-monitoring-metric-selection is actively maintained.
Skill content
View source on GitHubname: cloud-monitoring-metric-selection metadata: version: "1.0.0" category: CloudObservabilityAndMonitoring description: >- 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.
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_descriptorsMCP 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 asmock-project,my-project-id,unused, orYOUR_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 asgoogle-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.jsoncline_mcp_settings.jsonclaude_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-monitoringMCP 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 tostorage.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 asbigquery.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/")orstarts_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, anddescriptionfields of the descriptors. - Resource Alignment: Check if the metric contains labels matching the
target resource granularity (such as checking for a
databaselabel 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 tospanner_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
typefield (for example,spanner.googleapis.com/instance/cpu/utilization). - Display Name: Map to the
displayNamefield. - Description: Map to the
descriptionfield. - Metric Kind: Map to the
metricKindfield (for example,GAUGE,DELTA,CUMULATIVE). - Value Type: Map to the
valueTypefield (for example,INT64,DOUBLE,DISTRIBUTION,BOOL). - Unit: Map to the
unitfield (for example,1,By,s,ms). - Monitored Resource Types: Map to the
monitoredResourceTypeslist 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
- Google Cloud Monitoring Metric List: GCP Metrics Documentation
- MetricDescriptor MCP Tool Reference: MCP Tools Reference: monitoring.googleapis.com
- Monitoring Filter Syntax Guide: Monitoring Filters
Related Skills
claude-mem
94.7kPersistent Context Across Sessions for Every Agent – Captures everything your agent does during sessions, compresses it with AI, and injects relevant context back into future sessions. Works with Claude Code, OpenClaw, Codex, Gemini, Hermes, Copilot, OpenCode + More
algorithmic-art
177.9kCreating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems.
pptx
177.9kUse this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an em…
design
130.2kComprehensive design skill: brand identity, design tokens, UI styling, logo generation (55 styles, Gemini, Atlas Cloud, or MuAPI AI), corporate identity program (50 deliverables, CIP mockups), HTML presentations (Chart.js), banner design (22 styles, social/ads/web/print), icon design (15 styles, SVG…
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
