Retrieve, query, and identify relevant Google Cloud Monitoring metric descriptors for a GCP service or resource (such as Compute Engine, Spanner, BigQuery, Clou
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-cloud-monitoring-metric-selection-bab7d3563ae8 ,按照其中的说明把「cloud-monitoring-metric-selection」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
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.
list_metric_descriptors MCP
tool.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).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.jsoncline_mcp_settings.jsonclaude_desktop_config.jsonDirectly 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.
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:
//storage.googleapis.com/projects/my-project/buckets/my-bucketstorage (mapped to storage.googleapis.com)write, throughput, request, countwrite, throughput, request_count, countQuery 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:
starts_with("<service_prefix>.googleapis.com/") (such as
bigquery.googleapis.com/, redis.googleapis.com/).starts_with("agent.googleapis.com/") (for guest
OS memory/disk metrics).starts_with("kubernetes.io/")starts_with("istio.io/")starts_with("knative.dev/")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:
{
"name": "projects/my-project-id",
"filter": "metric.type = starts_with(\"spanner.googleapis.com/\")",
"pageSize": 200
}
{
"name": "projects/my-project-id",
"filter": "metric.type = starts_with(\"compute.googleapis.com/\")",
"pageSize": 200
}
Call the list_metric_descriptors tool with these payloads.
Aggregate all descriptors returned from Step 3, and filter them locally inside your LLM context:
type, displayName, and
description fields of the descriptors.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.If any tool call fails, times out, or returns empty results, use these strategies:
pageSize: 20).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:
type field (for example,
spanner.googleapis.com/instance/cpu/utilization).displayName field.description field.metricKind field (for example, GAUGE,
DELTA, CUMULATIVE).valueType field (for example, INT64,
DOUBLE, DISTRIBUTION, BOOL).unit field (for example, 1, By, s, ms).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"] |