Cloud Monitoring List Time Series Request logo

Cloud Monitoring List Time Series Request

OrganizationPopular
google
cloud-monitoring-list-time-series-request

Generates valid Cloud Monitoring ListTimeSeries requests and aggregation specifications from metric descriptors and resource parameters. Use when asked to create, generate, format, or build ListTimeSeries requests, JSON payloads, filter expressions, or aligner/reducer aggregations for Cloud Monitoring metrics and charts. Don't use for metric discovery or metric selection.

Overview

Publishergoogle
Repositoryskills
Skill namecloud-monitoring-list-time-series-request
Stars
20.1K
Forks
1.6K
Bundled files
1
LicenseApache-2.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 1 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by google on GitHub. Read the source before you install it.

Installation

Install the Cloud Monitoring List Time Series Request AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/google/skills.git /tmp/skills
mkdir -p .claude/skills
cp -r /tmp/skills/skills/cloud/cloud-monitoring-list-time-series-request .claude/skills/cloud-monitoring-list-time-series-request
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Cloud Monitoring List Time Series Request in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Cloud Monitoring List Time Series Request on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Cloud Monitoring List Time Series Request is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Cloud Monitoring ListTimeSeries Request Generator

Use this skill to translate any Cloud Monitoring metric descriptor into valid, production-ready ListTimeSeries REST API query parameters (name, filter, interval.startTime, interval.endTime, aggregation.*, view).

CRITICAL RULES

  • Mandatory Project ID Clarification: You MUST ensure the GCP Project ID is present in the user prompt, input payload, or environment context (such as via gcloud config get-value project). If the Project ID is missing and cannot be resolved, you MUST ask the user to clarify it before generating or executing ListTimeSeries requests. Do NOT use placeholders for project names.

Workflow

Inspect Metric Metadata

  1. Use Provided Metric Metadata First: If the user's prompt already includes metric metadata such as metric.type, metricKind, valueType, resource types, or label keys, use those values directly instead of calling API tools.
  2. Discover Missing Metadata: If exact metric descriptors including metric.type, metricKind, and valueType are missing or underspecified, resolve the target metric's descriptor using one of these paths:
    • Vague Query: If the prompt is vague, such as asking for VM CPU usage, use the cloud-monitoring-metric-selection skill first to identify the specific metric type.
    • Known Metric Type: If you already have the specific metric type name such as compute.googleapis.com/instance/cpu/utilization, but need its descriptor, call the list_metric_descriptors MCP tool. If the tool is missing, refer to the cloud-monitoring-metric-selection skill 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.
  3. Identify Key Fields: From the retrieved descriptor, identify key schema attributes:
    • type: The Cloud Monitoring metric type string.
    • metricKind: GAUGE, DELTA, or CUMULATIVE.
    • valueType: INT64, DOUBLE, DISTRIBUTION, or BOOL.
    • monitoredResourceTypes: Compatible resource.type strings, for example ["cloudsql_database", "cloudsql_instance"]. If multiple resource types are listed, select the specific resource.type that matches the target granularity of the user's request.

Construct Monitoring Filter

The filter parameter is a mandatory string in Cloud Monitoring syntax that restricts the query to a single metric.type and optional resource and metric labels:

  1. Single Metric Type Restriction: Every filter MUST specify exactly one metric.type clause using an equality operator. For example:

    • metric.type = "compute.googleapis.com/instance/cpu/utilization"
  2. Monitored Resource Type Filter: MUST include the resource.type filter when the target resource granularity is known, preventing collisions across services that share metric types or sub-resources. For example:

    • metric.type = "cloudsql.googleapis.com/database/cpu/utilization" AND resource.type = "cloudsql_database"
  3. Preserve User Literals and IDs: You MUST use literal resource names, IDs, zones, and project parameters provided by the user without alteration. Do NOT override or replace user-specified identifiers with active resources found during metric metadata discovery unless explicitly requested.

  4. Label Type Prefixing:

    • Prefix resource-level dimensions, such as instance ID, zone, project, database ID, or subscription ID, with the resource.labels. prefix. For example:
      • resource.labels.instance_id = "123456789"
      • resource.labels.database_id = "my-project:my-instance"
    • Prefix metric-level dimensions, such as state, command, response code, or instance name metadata when stored on the metric, with the metric.labels. prefix. For example:
      • metric.labels.state != "free"
      • metric.labels.instance_name = "instance-1"
  5. Resource Name versus ID Resolution:

    • If the user specifies a human-readable GCE VM instance name such as "instance-1", but resource.labels.instance_id expects a numeric ID, you MUST filter using either metric.labels.instance_name = "instance-1" or metadata.system_labels.name = "instance-1".
    • Do NOT use resource.metadata.name or resource.metadata.*. This prefix is invalid in Cloud Monitoring filter syntax.
    • Do NOT assign a string instance name directly to resource.labels.instance_id unless the resource type explicitly uses string IDs.
  6. Database Identifier Labels: Database labels such as database_id for Cloud SQL and Spanner, or dataset_id for BigQuery, use composite keys formatted as <project_id>:<instance_name>. For example: resource.labels.database_id = "my-project:foo".

  7. Ops Agent Metrics State Label Filtering: For agent.googleapis.com/memory/percent_used and agent.googleapis.com/disk/percent_used metrics, you MUST use metric.labels.state != "free". Do NOT filter by metric.labels.state = "used".


Choose Aggregation Structure

Select the perSeriesAligner, crossSeriesReducer, groupByFields, and alignmentPeriod according to the metric properties and visualization goal:

  1. Consult the Aggregations Reference: You MUST include both perSeriesAligner and crossSeriesReducer in the aggregation query parameters of every request. Read and follow the Cloud Monitoring ListTimeSeries Basic Aggregations Reference to select the exact perSeriesAligner and crossSeriesReducer combinations for your metric's Metric Kind and Value Type pairing, and to apply mandatory SRE rules for utilization metrics, counters, distributions, and state-based gauges such as memory filtered by state != "free".
  2. Grouping Fields and Resource Granularity: When crossSeriesReducer is specified as anything other than REDUCE_NONE, list the exact labels to preserve. When querying multi-instance resources like VMs, databases, or subscriptions, include the primary resource identifier in groupByFields. For example, use resource.labels.instance_id for VMs or resource.labels.database_id for databases. This prevents collapsing separate resource streams into a single global aggregate.
  3. Alignment Period Determination: Calculate the query lookback duration from endTime minus startTime, ensuring startTime precedes endTime. If endTime <= startTime, flag an error before computing duration. Set alignmentPeriod according to Cloud Console default fine granularity standards:
    • Duration <= 110 minutes: Set alignmentPeriod = "60s".
    • Duration <= 23 hours: Set alignmentPeriod = "300s".
    • Duration <= 6 days: Set alignmentPeriod = "3600s".
    • Duration <= 23 days: Set alignmentPeriod = "10800s".
    • Duration <= 80 days: Set alignmentPeriod = "21600s".
    • Duration <= 180 days: Set alignmentPeriod = "43200s".
    • Duration <= 350 days: Set alignmentPeriod = "86400s".
    • Duration <= 500 days: Set alignmentPeriod = "172800s".
    • Omission Rule: alignmentPeriod is omitted only when perSeriesAligner is set to ALIGN_NONE.

Format Valid Request

Present the generated ListTimeSeries REST query parameters. For example:

json
{
  "name": "projects/<project_id>",
  "filter": "metric.type = \"<metric_type>\" AND resource.type = \"<resource_type>\"",
  "interval": {
    "startTime": "<iso_8601_start>",
    "endTime": "<iso_8601_end>"
  },
  "aggregation": {
    "alignmentPeriod": "60s",
    "perSeriesAligner": "ALIGN_RATE",
    "crossSeriesReducer": "REDUCE_SUM",
    "groupByFields": [
      "resource.labels.zone"
    ]
  },
  "view": "FULL"
}
  • Aggregation Requirements: Populate the aggregation parameters with the perSeriesAligner, crossSeriesReducer, alignmentPeriod, and optional groupByFields values determined during aggregation selection.
  • Interval Requirements: startTime and endTime MUST be valid RFC 3339 and ISO 8601 timestamps such as "YYYY-MM-DDTHH:MM:SSZ". If not explicitly provided by the user, dynamically compute a one-hour lookback interval ending at the current time, where endTime is the present moment and startTime is one hour prior. Do NOT hardcode static dates from examples.
  • Alignment Period Requirement: Determine alignmentPeriod from the lookback duration of endTime minus startTime using the mapping above. For the default one-hour lookback interval, alignmentPeriod is "60s".
  • View Requirement: MUST default to "FULL" when time series data points are needed, or "HEADERS" when inspecting metadata and series identities only.

Validate Request via list_timeseries MCP Tool

You MUST validate the generated request parameters against live Cloud Monitoring telemetry before returning the final output. Call the list_timeseries MCP tool passing all generated query parameters (name, filter, interval, aggregation). When validating you MUST set view="HEADERS" to minimize latency and payload size while verifying request structure. A response without API errors confirms that your filter and aggregation settings are valid.

If the list_timeseries tool is unavailable, fall back to a direct API call.


References

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Cloud Monitoring List Time Series Request AI skill do?

Generates valid Cloud Monitoring ListTimeSeries requests and aggregation specifications from metric descriptors and resource parameters. Use when asked to create, generate, format, or build ListTimeSeries requests, JSON payloads, filter expressions, or aligner/reducer aggregations for Cloud Monitoring metrics and charts. Don't use for metric discovery or metric selection.

Why use Cloud Monitoring List Time Series Request on TypingMind?

Because you install it once and use it with any model. Cloud Monitoring List Time Series Request is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Cloud Monitoring List Time Series Request in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/google/skills/tree/main/skills/cloud/cloud-monitoring-list-time-series-request. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Cloud Monitoring List Time Series Request?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Cloud Monitoring List Time Series Request?

As many as you like. As long as a model supports skills, you can use Cloud Monitoring List Time Series Request with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Cloud Monitoring List Time Series Request AI skill free?

Yes. It is published on GitHub by google under the Apache-2.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇