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

Cx Observability Setup

  • 1.4k installs
  • 113 repo stars
  • Updated August 4, 2026
  • coralogix/cx-cli

cx-observability-setup is a Coralogix agent skill that configures observability for a new service including saved views, alert notifications, Slack webhooks, PagerDuty connectors, and dashboard organization.

About

cx-observability-setup is a Coralogix cx-cli skill that guides coding agents through onboarding observability for a new service. The skill covers creating saved views and view folders, installing integrations and extensions, wiring Slack outgoing webhooks, configuring PagerDuty and email notification connectors, setting notification routing presets, and organizing dashboards for a production service. Developers invoke it when standing up monitoring after a deploy, connecting external contextual data, or testing webhook actions for alert automation. Trigger phrases include set up monitoring, configure observability, onboard new service, create saved view, and deploy extension. The skill keeps Coralogix setup steps inside the agent session so notification paths and views are configured consistently.

  • Automates day-1 observability onboarding for any new service or team
  • Manages saved views, view folders, and dashboard organization
  • Configures notification channels, Slack integrations, PagerDuty, email alerts and custom webhooks
  • Supports create/update/delete workflows for views and notification presets
  • Handles external service connections and contextual data mapping

Cx Observability Setup by the numbers

  • 1,423 all-time installs (skills.sh)
  • +110 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #286 of 1,039 Cloud & Infrastructure skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/coralogix/cx-cli --skill cx-observability-setup

Add your badge

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

Listed on Skillselion
Installs1.4k
repo stars113
Last updatedAugust 4, 2026
Repositorycoralogix/cx-cli

How do you onboard observability in Coralogix?

Quickly configure Coralogix observability for a new service including saved views, alert notifications, Slack webhooks, PagerDuty connectors and dashboard organiz

Who is it for?

Developers onboarding a new service to Coralogix who need saved views, alert routing, Slack webhooks, and PagerDuty connectors configured quickly.

Skip if: Teams not using Coralogix or projects that only need application code changes without observability platform setup.

When should I use this skill?

The user asks to set up monitoring, configure observability, onboard a new service, create saved views, or wire Slack and PagerDuty alert notifications in Coralogix.

What you get

Coralogix saved views, alert notification connectors, Slack webhooks, PagerDuty routing, and organized dashboard folders.

  • Saved view configuration
  • Notification connector setup
  • Organized dashboard folder structure

Files

SKILL.mdMarkdownGitHub ↗

Observability Setup Skill

Use this skill when setting up or configuring the observability stack - saved views, webhook integrations, notification channels, and external integrations. This is the "day 1 setup" skill for onboarding a new service or reconfiguring notification pipelines.

---

CLI Commands

Views

CommandPurpose
cx views listList all saved views
cx views get <id>Get a view definition
cx views create --from-fileCreate a saved view
cx views update <id> --from-fileUpdate a saved view
cx views delete <id>Delete a saved view
cx views folders listList view folders
cx views folders get <id>Get a folder
cx views folders create --from-fileCreate a folder
cx views folders update <id> --from-fileUpdate a folder
cx views folders delete <id>Delete a folder

Webhooks

CommandPurpose
cx webhooks listList all outgoing webhooks
cx webhooks get <id>Get webhook details
cx webhooks create --from-fileCreate a webhook
cx webhooks update <id> --from-fileUpdate a webhook
cx webhooks delete <id>Delete a webhook
cx webhooks test <id>Test a webhook
cx webhooks typesList available webhook types
cx webhooks actions listList automation actions
cx webhooks actions get <id>Get action details
cx webhooks actions create --from-fileCreate an action
cx webhooks actions update --from-fileUpdate an action
cx webhooks actions delete <id>Delete an action
cx webhooks actions batch --from-fileBatch execute actions
cx webhooks actions reorder --from-fileReorder actions

Notifications

CommandPurpose
cx notifications connectors listList notification connectors
cx notifications connectors get <id>Get connector details
cx notifications connectors create --from-fileCreate a connector
cx notifications connectors update --from-fileUpdate a connector
cx notifications connectors delete <id>Delete a connector
cx notifications connectors typesList connector types
cx notifications connectors entity-typesList entity types
cx notifications connectors entity-subtypes --type <type>List entity subtypes
cx notifications routers listList notification routers
cx notifications routers get <id>Get router details
cx notifications routers create --from-fileCreate a router
cx notifications routers update --from-fileUpdate a router
cx notifications routers delete <id>Delete a router
cx notifications routers validate-matcher --from-fileTest entity label matcher
cx notifications presets listList notification presets
cx notifications presets get <id>Get preset details
cx notifications presets create --from-fileCreate a custom preset
cx notifications presets update --from-fileUpdate a custom preset
cx notifications presets delete <id>Delete a custom preset
cx notifications presets set-default <id>Set default preset
cx notifications test connector --from-fileTest connector config
cx notifications test destination --from-fileTest destination
cx notifications test preset --from-fileTest preset config
cx notifications test routing-condition --from-fileTest routing condition
cx notifications test template-render --from-fileTest template rendering

Integrations

CommandPurpose
cx integrations listList all integrations
cx integrations get <id>Get integration details
cx integrations create --from-fileCreate an integration
cx integrations update <id> --from-fileUpdate an integration
cx integrations delete <id>Delete an integration
cx integrations test --from-fileTest integration config
cx integrations templateGet integration template
cx integrations definition <id>Get integration definition
cx integrations deployed <id>Get deployed integration
cx integrations extensions listList available extensions
cx integrations extensions get <id>Get extension details
cx integrations extensions deployedList deployed extensions
cx integrations extensions deploy --from-fileDeploy an extension
cx integrations extensions update --from-fileUpdate deployed extension
cx integrations extensions undeploy --from-fileUndeploy an extension
cx integrations contextual-data listList contextual data integrations
cx integrations contextual-data get <id>Get contextual data details
cx integrations contextual-data create --from-fileCreate contextual data integration
cx integrations contextual-data update <id> --from-fileUpdate contextual data integration
cx integrations contextual-data delete <id>Delete contextual data integration
cx integrations contextual-data definition <id>Get contextual data definition
cx integrations contextual-data test <id>Test contextual data integration

All commands support -o json for structured output and -p <profile> for profile selection.

---

New Service Setup Workflow

When onboarding a new service, follow this checklist:

1. Create Saved Views

Set up views for the service's key log queries:

cx views folders create --from-file folder.json
cx views create --from-file view.json

2. Set Up Notification Connectors

Configure channels (Slack, PagerDuty, email):

cx notifications connectors types -o json
cx notifications connectors create --from-file slack-connector.json

3. Configure Notification Routing

Route alerts to the right channels:

cx notifications routers create --from-file router.json

4. Set Up Webhooks

Configure outgoing webhooks for external integrations:

cx webhooks types -o json
cx webhooks create --from-file webhook.json
cx webhooks test <webhook-id>

5. Install Integrations

Deploy relevant integrations and extensions:

cx integrations list -o json
cx integrations create --from-file integration.json
cx integrations extensions deploy --from-file extension.json

6. Create Dashboard

Use the cx-dashboards skill for the full dashboard creation workflow.

7. Create SLOs

Use the cx-slos skill for SLO creation and monitoring.

---

Notification Setup Workflow

Detailed notification channel configuration:

1. List Available Connector Types

cx notifications connectors types -o json

2. Create a Connector

cx notifications connectors create --from-file connector.json

3. Create a Router

cx notifications routers create --from-file router.json

4. Assign or Create a Preset

cx notifications presets list -o json
cx notifications presets create --from-file preset.json
cx notifications presets set-default <preset-id>

5. Test End-to-End

cx notifications test connector --from-file test-connector.json
cx notifications test destination --from-file test-destination.json
cx notifications test routing-condition --from-file test-condition.json

---

Webhook Setup

1. List Webhook Types

cx webhooks types -o json

2. Create Webhook

Template from an existing webhook if possible:

cx webhooks get <existing-id> -o json > webhook-template.json
cx webhooks create --from-file webhook.json

3. Test Webhook

cx webhooks test <webhook-id>

4. Create Automation Actions (Optional)

cx webhooks actions create --from-file action.json
cx webhooks actions reorder --from-file order.json

---

Key Principles

  • Always test after setup - use cx notifications test, cx webhooks test, cx integrations test
  • Use `--from-file` for complex JSON payloads - pipe from stdin or use a file
  • Template from existing - cx <command> get <id> -o json > template.json before creating
  • Check connector types first - cx notifications connectors types and cx webhooks types before creating

---

Related Skills

  • `cx-dashboards` - dashboard creation and replace workflow
  • `cx-slos` - SLO creation and error-budget monitoring
  • `cx-cases` - triage the cases raised when alerts fire
  • `cx-alerts` - alert definitions that trigger notifications
  • `cx-telemetry-querying` - verify data flows after setup

Related skills

How it compares

Pick this over manual Coralogix UI clicking when agents should reproducibly onboard services with views, alerts, and notification connectors.

FAQ

What does cx-observability-setup configure in Coralogix?

cx-observability-setup configures Coralogix saved views, alert notifications, Slack webhooks, PagerDuty connectors, integrations, extensions, and dashboard organization for a new service.

When should developers invoke cx-observability-setup?

Invoke cx-observability-setup when onboarding a new service, creating saved views, wiring Slack or PagerDuty alerts, or organizing Coralogix dashboards and notification presets.

Cloud & Infrastructuremonitoringinfra

This week in AI coding

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

unsubscribe anytime.