mcpbeat Sign in

Cloud Monitoring Metric Selection Agent Skill

>- 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.

2k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
15506
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/google/skills --skill cloud-monitoring-metric-selection

What it tells the agent to use

found in the instruction text
Write writes files

The instruction itself

10 sections, as written by the author

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"]

  • Google Cloud Monitoring Metric List:

GCP Metrics Documentation

  • MetricDescriptor MCP Tool Reference:

MCP Tools Reference: monitoring.googleapis.com

  • Monitoring Filter Syntax Guide:

Monitoring Filters

Other skills for the same job

different authors, same section of the catalogue
Azure Kubernetes Automatic Readiness
by microsoft
vendor ×3

Assess Kubernetes workloads and cluster configuration for AKS Automatic compatibility. Identifies incompatibilities, generates fixes, and guides migration from AKS Standard to AKS Automatic. WHEN: migrate to AKS Automatic, check AKS Automatic readiness, validate manifests for Automatic, assess cluster for Automatic compatibility, fix deployment for Automatic compatibility, identify AKS Automatic migration blockers, is my cluster ready for AKS Automatic.

13k tokens
Capacity
by microsoft
vendor ×3

Discovers available Azure OpenAI model capacity across regions and projects. Analyzes quota limits, compares availability, and recommends optimal deployment locations based on capacity requirements. USE FOR: find capacity, check quota, where can I deploy, capacity discovery, best region for capacity, multi-project capacity search, quota analysis, model availability, region comparison, check TPM availability. DO NOT USE FOR: actual deployment (hand off to preset or customize after discovery), quota increase requests (direct user to Azure Portal), listing existing deployments.

6k tokens scripts
Customize
by microsoft
vendor ×3

Interactive guided deployment flow for Azure OpenAI models with full customization control. Step-by-step selection of model version, SKU (GlobalStandard/Standard/ProvisionedManaged), capacity, RAI policy (content filter), and advanced options (dynamic quota, priority processing, spillover). USE FOR: custom deployment, customize model deployment, choose version, select SKU, set capacity, configure content filter, RAI policy, deployment options, detailed deployment, advanced deployment, PTU deployment, provisioned throughput. DO NOT USE FOR: quick deployment to optimal region (use preset).

8k tokens
Deploy Model
by microsoft
vendor ×3

Unified Azure OpenAI model deployment skill with intelligent intent-based routing. Handles quick preset deployments, fully customized deployments (version/SKU/capacity/RAI policy), and capacity discovery across regions and projects. USE FOR: deploy model, deploy gpt, create deployment, model deployment, deploy openai model, set up model, provision model, find capacity, check model availability, where can I deploy, best region for model, capacity analysis. DO NOT USE FOR: listing existing deployments (use foundry_models_deployments_list MCP tool), deleting deployments, agent creation (use agent/create), project creation (use project/create).

26k tokens scripts
Preset
by microsoft
vendor ×3

Intelligently deploys Azure OpenAI models to optimal regions by analyzing capacity across all available regions. Automatically checks current region first and shows alternatives if needed. USE FOR: quick deployment, optimal region, best region, automatic region selection, fast setup, multi-region capacity check, high availability deployment, deploy to best location. DO NOT USE FOR: custom SKU selection (use customize), specific version selection (use customize), custom capacity configuration (use customize), PTU deployments (use customize).

9k tokens
Lamindb
by christophacham
×3

This skill should be used when working with LaminDB, an open-source data framework for biology that makes data queryable, traceable, reproducible, and FAIR. Use when managing biological datasets (scRNA-seq, spatial, flow cytometry, etc.), tracking computational workflows, curating and validating data with biological ontologies, building data lakehouses, or ensuring data lineage and reproducibility in biological research. Covers data management, annotation, ontologies (genes, cell types, diseases, tissues), schema validation, integrations with workflow managers (Nextflow, Snakemake) and MLOps platforms (W&B, MLflow), and deployment strategies.

22k tokens
Latchbio Integration
by christophacham
×3

Latch platform for bioinformatics workflows. Build pipelines with Latch SDK, @workflow/@task decorators, deploy serverless workflows, LatchFile/LatchDir, Nextflow/Snakemake integration.

12k tokens
Modal
by christophacham
×3

Run Python code in the cloud with serverless containers, GPUs, and autoscaling. Use when deploying ML models, running batch processing jobs, scheduling compute-intensive tasks, or serving APIs that require GPU acceleration or dynamic scaling.

17k tokens

How to use it

Copy the folder

Take google/cloud-monitoring-metric-selection from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.