Platform Features

Observability as Code

Manage dashboards, alerts, and configurations as code. Version control your observability setup, deploy changes through CI/CD, and ensure consistency across environments with GitOps workflows.

Get a Demo
observability/dashboards/api.yaml
YAML
apiVersion: v1
kind: Dashboard
metadata:
name: api-performance
team: backend
spec:
widgets:
- type: timeseries
title: Response Time
query: avg(http_response_time)
- type: gauge
title: Error Rate
query: rate(http_errors[5m])
Configuration Files
dashboards/api-performance.yaml
✓ Synced
alerts/high-latency.yaml
✓ Synced
alerts/error-rate.yaml
✓ Synced
retention/policies.yaml
✓ Synced
integrations/slack.yaml
✓ Synced

Configuration as YAML

Define dashboards, alerts, and configurations in simple YAML files. Store them in git alongside your application code. Version control everything and track changes over time.

GitOps Workflows

Deploy observability changes through pull requests. Review, approve, and track all changes with your standard git workflow. Automatic deployment on merge with rollback support.

Deployment Pipeline
PR #247: Update API dashboard
MERGED
✓ CI checks passed
✓ Deployed to production
✓ 3 dashboards updated
PR #248: Add latency alerts
IN REVIEW
⏳ Waiting for approval
✓ CI checks passed
Terraform Provider
resource "qorrelate_dashboard" "api" {
name = "API Performance"
team = "backend"

widget {
type = "timeseries"
title = "Response Time"
query = "avg(http_response_time)"
}
}

resource "qorrelate_alert" "latency" {
name = "High Latency"
condition = "avg > 500"
channels = ["slack", "pagerduty"]
}

Terraform Integration

Manage observability resources with Terraform. Provision dashboards, alerts, and integrations alongside your infrastructure. One workflow for all your infrastructure and observability.

Environment Consistency

Ensure dev, staging, and production have identical observability configurations. Test changes in lower environments before production. Promote configurations through environments with confidence.

Environment Sync
Development
✓ IN SYNC
12 dashboards • 8 alerts • Latest config
Staging
✓ IN SYNC
12 dashboards • 8 alerts • Latest config
Production
✓ IN SYNC
12 dashboards • 8 alerts • Latest config

Manage observability like infrastructure

Version control, automate deployments, and ensure consistency with GitOps.

Contact Support

Our team is here to help! Send us your question and we'll get back to you as soon as possible.