Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
grafana avatar

Synth Manage Checks

  • 1 installs
  • 524 repo stars
  • Updated August 4, 2026
  • grafana/gcx

synth-manage-checks skill documents Use when the user wants to create, update, pull, push, or delete Synthetic Monitoring checks.

About

synth-manage-checks skill documents Use when the user wants to create, update, pull, push, or delete Synthetic Monitoring checks. Trigger on phrases like "create a check", "add a synthetic check", "update check", "pull my SM checks", "push checks", "delete check", or when the user provides a target URL/hostname/domain for monitoring. . name: synth-manage-checks description: Use when the user wants to create, update, pull, push, or delete Synthetic Monitoring checks. Trigger on phrases like "create a check", "add a synthetic check", "update check", "pull my SM checks", "push checks", "delete check", or when the user provides a target URL/hostname/domain for monitoring. For check status overview use synth-check-status. For investi

  • Use when the user wants to create, update, pull, push, or delete Synthetic Monitoring checks.
  • Platform-specific setup patterns for synth-manage-checks.
  • Evidence-backed steps from upstream SKILL.md.
  • When-to-use criteria for synth-manage-checks versus alternatives.

Synth Manage Checks by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #1,172 of 1,435 DevOps & CI/CD skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

synth-manage-checks capabilities & compatibility

Capabilities
synth manage checks quick start · synth manage checks when to use guidance · synth manage checks integration patterns
Works with
grafana
From the docs

What synth-manage-checks says it does

allowed-tools: [gcx, Bash, Read, Write, Edit]
SKILL.md
npx skills add https://github.com/grafana/gcx --skill synth-manage-checks

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
repo stars524
Last updatedAugust 4, 2026
Repositorygrafana/gcx

How do I use synth-manage-checks correctly?

Use when the user wants to create, update, pull, push, or delete Synthetic Monitoring checks. Trigger on phrases like "create a check", "add a synthetic check", "update check", "pull my SM checks", "p

Who is it for?

Teams implementing synth-manage-checks workflows from the catalog.

Skip if: Skip when requirements clearly match a different specialized stack.

When should I use this skill?

User asks about synth-manage-checks, use when the user wants to create, update, pull, push, or delete synthetic monitoring chec.

What you get

Working synth-manage-checks setup with validated configuration and next steps.

Files

SKILL.mdMarkdownGitHub ↗

Synthetic Monitoring Check Manager

Manage SM checks using gcx. Experienced operators — no hand-holding.

Core Principles

1. Use gcx commands; never call Grafana APIs directly (no curl, no HTTP calls) 2. Trust the user's expertise — no explanations of what SM or gcx is 3. Use -o json for agent processing; default table format for user display 4. Always dry-run before pushing: --dry-run first, actual push only on success 5. Probe names are case-sensitive — always copy-paste from gcx synth probes list

Workflow 1: Create New Check

Step 1: Determine Check Type

Use the decision table in references/check-types.md:

TargetCheck Type
URL (https://..., http://...)HTTP
Hostname or IP (no port)Ping
Domain name (DNS lookup)DNS
host:portTCP
URL with routing path analysisTraceroute

If unsure, ask the user what they want to test (availability, DNS, port connectivity, routing).

Step 2: List and Select Probes

gcx synth probes list

Recommend at least 3 geographically distributed probes. Copy names exactly as shown — case-sensitive. Suggest probes across different continents or regions to provide meaningful coverage (e.g., one each from North America, Europe, Asia-Pacific).

Step 3: Build YAML Definition

Use the template from references/check-types.md for the chosen type. Scaffold the file locally:

apiVersion: syntheticmonitoring.ext.grafana.app/v1alpha1
kind: Check
metadata:
  name: <job-name>   # Non-numeric = create; numeric = update
spec:
  job: <job-name>
  target: <target>
  frequency: 60000    # milliseconds; 10000-120000 typical
  timeout: 10000      # milliseconds; must be < frequency
  enabled: true
  labels:
    environment: production
    team: platform
  probes:
    - Atlanta
    - Frankfurt
    - Singapore
  alertSensitivity: medium  # none, low, medium, high
  basicMetricsOnly: false   # true = fewer metrics, lower cardinality
  settings:
    http: {}   # Replace with type-specific settings

Configuration guidance:

  • frequency: critical checks 10,000–60,000ms; standard checks 60,000–300,000ms
  • timeout: must be strictly less than frequency; typically 5,000–30,000ms
  • alertSensitivity: high = alert if >5% failing; medium = >10%; low = >25%; none = no alerts
  • basicMetricsOnly: true reduces metric cardinality (fewer label dimensions); false emits full metrics

Step 4: Dry-run and Push

# Always dry-run first
gcx synth checks push <file.yaml> --dry-run

# Push only after dry-run succeeds
gcx synth checks push <file.yaml>

Push semantics:

  • Non-numeric `metadata.name` (e.g., my-api-check): creates a new check; server assigns a numeric ID and updates the local file
  • Numeric `metadata.name` (e.g., 12345): updates the existing check with that ID

After creation, verify with:

gcx synth checks list
gcx synth checks status <ID>

Workflow 2: Update Existing Check

Step 1: Pull Current Definition

Fetch the specific check or all checks:

# Get single check as YAML (use ID from list output)
gcx synth checks get <ID> -o yaml > check-<ID>.yaml

# Or pull all checks to a directory
gcx synth checks pull -d ./sm-checks/

Step 2: Edit and Push

Edit the pulled YAML file (the metadata.name will be the numeric ID). Modify only the fields that need changing.

# Dry-run the update
gcx synth checks push check-<ID>.yaml --dry-run

# Apply
gcx synth checks push check-<ID>.yaml

Workflow 3: GitOps Sync (Pull/Push)

Pull all checks to local directory, edit in source control, push to apply:

# Pull all checks to directory
gcx synth checks pull -d ./sm-checks/

# Edit files as needed, then push each changed file
gcx synth checks push ./sm-checks/<file>.yaml --dry-run
gcx synth checks push ./sm-checks/<file>.yaml

For bulk push from a directory, push files individually to control which checks are updated. Review dry-run output before each push.

Workflow 4: Delete Checks

# List checks to confirm IDs
gcx synth checks list

# Delete one or more checks (by numeric ID)
gcx synth checks delete <ID>

# Skip confirmation prompt
gcx synth checks delete <ID> -f

# Delete multiple checks
gcx synth checks delete <ID1> <ID2> <ID3>

Confirm the check identity (job name and target) before deleting — use gcx synth checks get <ID> to review.

Output Format

After creating or updating:

Check: <job-name>
Target: <target>
Type: <HTTP|Ping|DNS|TCP|Traceroute>
Probes: <count> selected (<list>)
Push: SUCCESS — ID: <assigned-id>

Verify status:
  gcx synth checks status <ID>

After pull:

Pulled <N> checks to <dir>/
Files: <list of filenames>

After delete:

Deleted check <ID> (<job-name> -> <target>)

Error Handling

  • "probe not found": Probe names are case-sensitive. Run gcx synth probes list and copy names exactly.
  • "timeout must be less than frequency": Reduce timeout value or increase frequency.
  • "invalid frequency": frequency must be between 10,000ms and 120,000ms (10s–2min).
  • Dry-run fails with validation error: Fix the YAML field indicated in the error before pushing.
  • Push fails with "check already exists": The check job+target combination may already exist. Use gcx synth checks list to find it and update instead of create.
  • No probes available: Run gcx synth probes list; if empty, verify gcx context and SM API access.
  • Complex check types (MultiHTTP, Browser, Scripted): Settings map is not fully documented. Pull an existing check of that type as a template: gcx synth checks get <ID> -o yaml.

Related skills

FAQ

What does synth-manage-checks do?

synth-manage-checks skill documents Use when the user wants to create, update, pull, push, or delete Synthetic Monitoring checks.

When should I use synth-manage-checks?

User asks about synth-manage-checks, use when the user wants to create, update, pull, push, or delete synthetic monitoring chec.

Is this skill safe to install?

Review the Security Audits panel on this page before installing in production.

DevOps & CI/CDmonitoring

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.