cloud-monitoring-promql-query
Generates valid PromQL queries from Cloud Monitoring metric descriptors and resource parameters
Install / Use
npx skills add google/skills --skill cloud-monitoring-promql-queryInstalls into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
OperationsSupported Platforms
Tags
Our assessment of cloud-monitoring-promql-query
cloud-monitoring-promql-query scores 90/100 on our quality scale, 124th of 292 Operations skills we index (top 43%).
Its SKILL.md is 10 KB long, well organised into 10 sections with 1 code example: 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 3 days ago, so cloud-monitoring-promql-query 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.
cloud-monitoring-promql-query compared with similar skills
All 4 of these similar skills score higher than cloud-monitoring-promql-query; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| cloud-monitoring-promql-query (this skill)by google | 90 | 20.3k | 3d ago | SKILL.md |
| algorithmic-artby anthropics | 100 | 177.9k | 4d ago | SKILL.md |
| pptxby anthropics | 100 | 177.9k | 4d ago | SKILL.md |
| designby nextlevelbuilder | 100 | 130.2k | 5d ago | SKILL.md |
| ui-ux-pro-maxby nextlevelbuilder | 100 | 130.2k | 5d ago | SKILL.md |
Frequently asked questions
- How do I install cloud-monitoring-promql-query?
- Run
npx skills add google/skills --skill cloud-monitoring-promql-query. The install tabs above show the steps for each supported agent. - Which AI agents does cloud-monitoring-promql-query 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-promql-query safe to use?
- 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-promql-query still maintained?
- The repository was last updated 3 days ago, so cloud-monitoring-promql-query is actively maintained.
Skill content
View source on GitHubname: cloud-monitoring-promql-query metadata: version: "1.0.0" category: CloudObservabilityAndMonitoring description: >- Generates valid PromQL queries from Cloud Monitoring metric descriptors and resource parameters. Use when asked to create, generate, write, or format PromQL queries, PromQL strings, or PromQL aggregations for Cloud Monitoring metrics and resources. Don't use for raw metric discovery or metric selection.
Cloud Monitoring PromQL Generator
Use this skill to generate a valid PromQL query from any Cloud Monitoring metric type. This guide applies to all Cloud Monitoring metric types by mapping Cloud Monitoring metric and resource descriptors to PromQL structures.
Workflow
Resolve Project ID (CRITICAL & BLOCKING)
Before performing any other actions (such as searching code, reading references, or running validation), you MUST verify whether the Google Cloud Project ID is available:
- Check Prompt/Payload: Look for the Project ID in the user's prompt or input.
- Check Environment: If the Project ID is not present in the prompt, you
MUST run
gcloud config get-value projectto attempt to resolve it from the environment. - Ask for Clarification (BLOCKING): If the Project ID is not in the prompt
AND the
gcloudcommand fails, returns an empty string, or is unavailable, you MUST immediately stop. Do NOT generate a PromQL query, do not run the validation script, and do not use placeholders (likeYOUR_PROJECT_ID). You must refuse to proceed and ask the user to provide the Project ID.
Inspect Metric and Resource Descriptors
- Use Provided Descriptors First: If the user's prompt already includes
metric descriptor details (such as
metric.type,metricKind,valueType, ormonitoredResourceTypes) or specific resource filter values, use those values directly instead of calling the Cloud Monitoring API. - Discover Missing Descriptors: If exact metric descriptors
(
metric.type,metricKind,valueType) are missing or underspecified, resolve the target metric type's descriptor using one of these paths:- Vague Query: If the prompt is vague (for example,
"VM CPU usage"), use thecloud-monitoring-metric-selectionskill first to identify the specific metric type. - Known Metric Type: If you already have the specific metric type name
(for example,
compute.googleapis.com/instance/cpu/utilization) but need its descriptor, call thegoogle-cloud-monitoring:list_metric_descriptorsMCP tool. If the tool is missing, refer to thecloud-monitoring-metric-selectionskill to configure the Cloud Monitoring MCP server. - Fallback: If the MCP tool cannot be configured, fall back to making a direct Cloud Monitoring API call.
- Vague Query: If the prompt is vague (for example,
- Identify Key Fields: From the retrieved descriptor, identify four key
schema attributes:
type: The Cloud Monitoring metric type string.metricKind:GAUGE,DELTA, orCUMULATIVE.valueType:INT64,DOUBLE,DISTRIBUTION, orBOOL.monitoredResourceTypes: Compatibleresource.typestrings required for resource scoping and grouping.
Resolve Resource Filters & Discovery Protocol
To filter data by a specific resource instance, apply these resource rules and discovery protocols:
-
Monitored Resource Filter: Always include the
monitored_resource="<type>"filter in your query to prevent collisions across services that share metric names.- Example:
monitored_resource="gae_app"
- Example:
-
Preserve User Literals (CRITICAL): ALWAYS use the literal resource names, namespaces, and IDs provided in the user's prompt. Do NOT override or replace these values with active resource names found during Cloud Monitoring discovery unless the user explicitly asked you to find active resources. Telemetry discovery must only be used to identify metric type names and label keys, not to override user input.
-
Resource Identifier Mapping:
- Direct & Specific Keys: Use the most specific resource identifier
available. Example:
version_id,cluster_name. - Name-to-ID Resolution: If the user filters by a resource name
(such as
"instance-1"), but the resource schema uses numeric IDs (likeinstance_id), use PromQL string name labels instead of numeric ID labels. Example:instance_name,metadata_system_name. - Composite Identifiers: For resources with hierarchical identifiers
(such as Cloud SQL databases), format the filter as a single composite
key. Do NOT split them into separate
project_idand sub-resource labels. Example:database_id="{project_id}:{instance_name}".
- Direct & Specific Keys: Use the most specific resource identifier
available. Example:
-
Resource Label Discovery: The
google-cloud-monitoring:list_metric_descriptorstool only returns metric-specific labels. If the label schema for a monitored resource is unknown, fetch the resource descriptor directly from the Cloud Monitoring v3 REST API (projects.monitoredResourceDescriptors.get):TOKEN=$(gcloud auth application-default print-access-token 2>/dev/null || gcloud auth print-access-token) curl -s -H "Authorization: Bearer ${TOKEN}" \ "https://monitoring.googleapis.com/v3/projects/{project_id}/monitoredResourceDescriptors/{monitored_resource_type}"An HTTP 200 OK response returns the
MonitoredResourceDescriptorobject containing thelabelsarray with the exact resource label keys for that resource.
Choose Aggregation Structure & Defaults
The query structure and aggregation functions (such as rate,
histogram_quantile, sum, or avg) depend on the metric type and how it is
visualized.
- Consult the Reference: Consult the Cloud Monitoring to PromQL Basic Aggregations Reference as the single source of truth to map Cloud Monitoring properties (Metric Kind, Value Type, Aligner, Reducer) to their PromQL structures.
- SRE Aggregation & Visualization Rules:
- Do NOT sum or average ratio/percentage utilization metrics (like CPU
% or Memory limit utilization) across resource instances. Instead, keep
them unaggregated (raw metric), group by instance, or wrap in
topk(30, avg_over_time(...)). - State Label Filtering (CRITICAL): Only the metrics
agent.googleapis.com/memory/percent_usedandagent.googleapis.com/disk/percent_usedrequire{state!="free"}. Do NOT filter by{state="used"}.
- Do NOT sum or average ratio/percentage utilization metrics (like CPU
% or Memory limit utilization) across resource instances. Instead, keep
them unaggregated (raw metric), group by instance, or wrap in
Format & Validate Query
Before presenting any PromQL queries, validate them using the linter:
Python Dependencies
Before executing the validation script (scripts/validate_promql.py), install
the required Python dependencies:
python3 -c "import promql_parser" || pip install promql-parser
Validation Procedure
- Format Constraints:
- Metric Name Normalization: Convert Cloud Monitoring metric types to
PromQL metric names using this recipe:
- Split Domain and Path: Split the Cloud Monitoring metric type by
the first slash (
/) to separate the domain from the path.- Example:
storage.googleapis.com/network/received_bytes_count-> domainstorage.googleapis.com, pathnetwork/received_bytes_count
- Example:
- Normalize Domain: Replace all periods (
.) in the domain with underscores (_).- Example:
storage.googleapis.com->storage_googleapis_com
- Example:
- Normalize Path: Replace all periods (
.) and slashes (/) in the path with underscores (_).- Example:
network/received_bytes_count->network_received_bytes_count
- Example:
- Join with Colon: Join the normalized domain and normalized path
with a colon (
:).- Example:
storage_googleapis_com:network_received_bytes_count
- Example:
- Native Prometheus Metrics: If the metric type has no slash, keep
it as-is.
- Example:
up->up,http_requests_total->http_requests_total
- Example:
- Distribution Suffix: If the metric's
valueTypeisDISTRIBUTION, append_bucketto the end of the normalized name.- Example:
cloudfunctions.googleapis.com/function/execution_times->cloudfunctions_googleapis_com:function_execution_times_bucket
- Example:
- Split Domain and Path: Split the Cloud Monitoring metric type by
the first slash (
- Ensure the final query is a single line with no comments (no
#or//). Cloud Monitoring query translation collapses whitespace and can cause code trailing a comment to be ignored or throw parsing errors. - Grouping Clause Syntax: Ensure grouping clauses (such as
by (label)) only follow aggregation operators (such assum,avg,min,max, orcount). Never place a grouping clause directly after a metric selector.- Incorrect:
metric{...} by (label) - Correct:
sum(rate(metric{...}[5m])) by (label)
- Incorrect:
- Fenced Output Code Block: ALWAYS wrap the final verified PromQL
query in a fenced
promqlcode block in your final response.
- Metric Name Normalization: Convert Cloud Monitoring metric types to
PromQL metric names using this recipe:
- Linter Verification:
- Validate all generated queries in a single batch:
python3 <path_to_skill>/scripts/validate_promql.py --query '<q1>' '<q2>' - If validation fails, read PromQL Error Recovery Guide to diagnose and fix common type mismatches and syntax errors before repeating the loop.
- Validate all generated queries in a single batch:
References
Related Skills
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…
ui-ux-pro-max
130.2kUI/UX design intelligence for web, mobile, and desktop. This skill should be used when designing, building, reviewing, or fixing interfaces, including pages, components, design systems, accessibility, interaction, responsive layout, typography, color, charts, and stack-specific UI implementation.
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.
