
SLO Alert Configuration
FreeEasily configure PromQL-based SLO alerts for Google Cloud.
Free · Opens the source repo
What SLO Alert Configuration does
The SLO Alert Configuration skill provides a structured approach to setting up Service Level Objective (SLO) alerting policies for Google Cloud resources. By guiding users through a four-step wizard, this skill ensures that all necessary components are considered, including Service Scope, Service Level, SLI, and Alert Condition. The output is a Terraform configuration that can be directly applied, making it a valuable tool for developers and DevOps engineers looking to implement robust monitoring solutions.
This skill operates by first determining the specific Google Cloud resource the user wants to monitor. It uses gcloud commands to autonomously identify services and workloads, ensuring that the most critical components are prioritized. The user is prompted to provide necessary details, such as target reliability percentages and SLI conditions. The skill emphasizes best practices throughout the process, ensuring that users adhere to recommended strategies for effective monitoring.
Once all information is gathered, the skill generates the Terraform configuration using the google_monitoring_alert_policy and condition_prometheus_query_language resources. This output includes an alert strategy block with an auto-close setting, enhancing the management of alert notifications. The clear, structured conversation flow minimizes the risk of missing critical information, making it easier for users to set up their SLO alerts accurately.
This skill is particularly useful for teams managing cloud resources who need to ensure that their services meet specified reliability targets. By automating the configuration process, it reduces the manual effort involved in setting up monitoring and allows teams to focus on other critical tasks.
When to use it
Use this skill when you need to configure PromQL-based SLO alerts for Google Cloud resources, especially when working with Terraform.
When not to use it
This skill is not suitable for standard alerting policies that do not involve SLOs or PromQL configurations.
What you can build with it
Setting Up SLO for a New Service
When launching a new service on Google Cloud, use this skill to configure SLO alerts from the start, ensuring reliable performance monitoring.
Refining Existing SLOs
If you have existing SLOs that need adjustments, this skill can help you gather updated metrics and thresholds to refine your alerting policies.
Automating SLO Configuration
For teams looking to automate their monitoring setup, this skill provides a repeatable process for configuring SLO alerts using Terraform.
How to install SLO Alert Configuration
View source1. Install with the skills CLI
npx skills add google/skills/google-cloud-slo-alert-configuration --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by googleSLO Alert Configuration Setup Wizard
This skill guides the user through a structured conversation to configure PromQL-based Service Level Objective (SLO) alerting policies in Terraform. Your role is to act as a setup wizard that conceptually models the 4 key components of an SLO API (Service Scope, Service Level, SLI, and Alert Condition), gathers the requirements, and outputs a Terraform configuration.
CRITICAL RULES
-
Structured Conversation: You MUST follow the 4-step wizard workflow below.
-
Gather Missing Information: Evaluate all 4 steps below first. Ask the user for all missing information across all steps in a single response.
-
DO NOT stop after finding the first missing piece of information.
-
DO NOT use the
ask_questiontool. You must ask questions using plain text in your response and end your turn to wait for the user to reply. -
DO NOT write the Terraform configuration if information is missing.
-
-
Skip What Is Known: If the user has already provided information for a step in their previous messages or initial prompt DO NOT ask them for it. Move to the next missing piece of information. If ALL information for Steps 1-4 is provided, call
write_to_fileto generate the Terraform configuration without asking for permission to proceed. -
Provide Best Practices: Whenever you ask the user a question, you MUST explicitly state the recommended "Best Practice".
-
Best Practice Shortcut: If the user asks for "best practices" or similar, do not overwrite their explicit inputs. SKIP all remaining data gathering and keep any specific targets or custom metrics they provided. For all fields left blank, apply the recommended defaults defined in the "SRE Best Practice Suggestion" of each step.
-
Terraform Output: Write the generated observability configuration ONLY as Terraform (
.tf) files using thegoogle_monitoring_alert_policyresource andcondition_prometheus_query_languageresources. -
Alert Strategy: ALWAYS include an
alert_strategyblock with anauto_closesetting. Leavenotification_channelsempty unless the user provides one. Provide plain-English explanations of the PromQL math before finalizing the conversation.
SETUP WIZARD WORKFLOW
Step 1: Define ServiceScope
-
Check Context: Identify target resource, service, workload, or application the user wants to monitor. If you already know, proceed. Otherwise ask the user to identify it.
-
Autonomous Investigation: If the user specified a project or general service name without providing specifics, autonomously use
gcloudto discover the target services in their environment. If multiple services or workloads are discovered, list all of them and suggest applying SLO ONLY to the most critical backend services as a best practice.If you struggle to identify potential resources, ask the user to specify.
-
Identify Underlying Infrastructure: To resolve the correct PromQL metric, you MUST know the underlying Google Cloud resource type.
- If the user only provides a logical name or an App Hub Service/Workload
name such as
projects/.../services/frontendorprojects/.../workloads/backend, you still need to know the underlying infrastructure. - If the prompt provides the underlying infrastructure, use that information. Do NOT attempt to discover it.
- If you don't know the underlying infrastructure but have a resource
identified, you MUST proactively use
gcloudto discover the infrastructure. If you struggle to identify the resource type, ask the user to specify.
- If the user only provides a logical name or an App Hub Service/Workload
name such as
-
Label Scoping:
- If the user explicitly mentions the resource is in App Hub or provides
an App Hub URI like
projects/.../locations/.../applications/..., use App Hub labels and consultreferences/app_hub_labels.mdto identify the correct group-by fields. - Otherwise, assume it is a standard Google Cloud resource and use
standard grouping labels such as
project_id, location, service_namefor Cloud Run.
Example gcloud commands:
gcloud --quiet apphub applications services list --application=- --location=-gcloud --quiet apphub applications workloads list --application=- --location=-gcloud --quiet asset search-all-resourcesgcloud --quiet run services listgcloud --quiet apphub applications services describe <service> --application=<app> --location=<loc>gcloud --quiet apphub applications workloads describe <workload> --application=<app> --location=<loc>gcloud --quiet asset search-all-resources --query=<name>
Graceful Fallback: If a command exits with an error such as API not enabled or permission denied, DO NOT try to troubleshoot it and DO NOT use the schedule tool to wait. Immediately fall back to asking the user to provide the missing information.
- If the user explicitly mentions the resource is in App Hub or provides
an App Hub URI like
Step 2: Define ServiceLevel Target
- Check Context: If the user has already provided a Service Level Target
percentage, an SLI condition/threshold, and a measurement period proceed to
the next step. Otherwise, if any are missing, you MUST ask for them.
-
Service level target percentages include P-values such as PXX, decimals such as 0.XX, and percentages like XX%.
-
Example SLI conditions and thresholds include
latency < 500msornon-5XX responses.
-
-
Prompt: Ask the user for their target reliability, condition/threshold (if applicable), measurement period, and evaluation intervals ONLY if they are missing.
-
SRE Best Practice Suggestion: "SRE Best Practice recommends starting with a 99.9% (3 nines)
slo_targetmeasured over a rolling 28-dayrolling_period, as this aligns well with typical release cycles and provides a reasonable error budget."
Step 3: Define ServiceLevelIndicator / SLI
-
Check Context: Has the user specified the exact metric name such as
run.googleapis.com/request_count? If yes, proceed to the next step. Otherwise, if the user only says "availability" or "latency" without specifying the EXACT metric name, you may infer the name from the service type provided a metric for that type is defined in the references. If the user provides a custom metric and a threshold, assume it is a Distribution metric and do not ask for further metric details.- You MUST output valid metrics defined in
references/service_metrics.md. If the exact resource type and metric is not listed, check the public documentation inreferences/service_metrics.mdto find the exact metric. If you still cannot find it, you MUST stop and ask the user to provide the custom metric.
- You MUST output valid metrics defined in
-
Prompt: Ask the user what specific metric they want to use. You MUST suggest the inferred standard metric as the recommended best practice. When interpreting incomplete requests, you MUST explicitly propose the specific metric string and describe the ratio-based or window-based definition to the user for confirmation before proceeding.
-
Metric Mapping: Consult
references/service_metrics.mdto find the exact PromQL metric string for the Resource Type identified in Step 1 section 3. If the requested metric type does not exist for the resource in the references or the primary public documentation, you MUST explicitly inform the user that there is no default metric and ask them to provide the specific custom metric name. You MUST provide guidance on how a custom latency metric might be structured.- CRITICAL: If the primary documentation does not list a default metric, you MUST NOT try to piece together advanced metrics. Ask the user to provide the custom metric.
-
Evaluation Method: Default the
EvaluationTypetoREQUEST_BASEDunless the user specifically describes awindow-basedrequirement, typically denoted by "good minutes" or "bad minutes".- Window-Based Lookback Period: If the user indicates a window-based evaluation, you need to know the duration of the lookback windows and the evaluation interval for each window. You MUST ask the user to specify both the lookback duration and the evaluation interval if they have not already provided them. You CANNOT generate an alerting policy without this configuration.
-
SRE Best Practice Suggestion: SRE Best Practice recommends starting with two SLIs:
- Availability: a
Ratio SLIcomparing successful requests typically defined asnon-5XXresponses, to total requests evaluated asREQUEST_BASED. - Latency: a
Distribution SLIevaluated asWINDOW_BASEDsuch as 99% of 5-minute windows must meet a 300ms threshold.
- Availability: a
Step 4: Define Alerting Policy
-
Check Context: Has the user specified burn rates? If yes, proceed to the next step. Otherwise, ask the user to specify a burn rate strategy and provide a best practice suggestion.
-
SRE Best Practice Suggestion: SRE Best Practice recommends both a multi-window fast burn and multi-window slow burn.
-
Multi-Window Fast Burn: Factor 14.4 over 1h and 5m windows, catching severe outages quickly without false positives.
-
Multi-Window Slow Burn: Factor 1 over 3d and 6h windows, catching system degradation.
-
Step 5: Generate Configuration
- Look up the corresponding PromQL template from
references/promql_templates.mdbased on the user's choices. Use aWindow-Basedtemplate for window-based SLOs. - Populate the template with the
ServiceScopelabels,ServiceLeveltargets, andServiceLevelIndicatormetrics. - Wrap it in Terraform (
google_monitoring_alert_policy). - Present the
.tfblock with a plain English explanation of the math. - CRITICAL: Explicitly warn the user in the final summary if no notification channels are configured. Inform them that you can assist with setting those up if they would like.
Supporting Links
- Google SRE Workbook: Alerting on SLOs
- Google Cloud Operations: SLO Monitoring
- Prometheus: PromQL Basics
Reporting Issues
Report bugs or improvements for this skill at Google Skills Issues.
Frequently asked questions about SLO Alert Configuration
Similar skills
Turborepo
Optimized build system for JavaScript/TypeScript monorepos.
Azure Pipelines Validation
Streamline your Azure DevOps pipeline changes locally.
Azure Developer CLI
Streamline your Azure project workflows with best practices.
Azure Container Registry CLI
Manage Azure Container Registry resources with ease.
Aspire
Build and orchestrate polyglot distributed applications seamlessly.
Vercel CLI
Manage and deploy Vercel projects from the command line.
