How do you analyze observability and infrastructure data in Metabase?
Observability and infrastructure tools hold the operational record of how reliably your systems run: errors, incidents, alerts, deploys, utilization, and cost. In Metabase, bring summaries of those signals into a SQL database and model adjacent layers for incidents, error rollups, service health rollups, and resource snapshots. Those layers support dashboards for MTTA/MTTR, alert noise, availability, SLO compliance, release quality, utilization, and spend — next to the business data the rest of the company already reports on.
Which tools does this cover?
- Sentry — error groups (issues), event rollups, releases, projects
- PagerDuty — incidents, incident log entries, services, escalation policies
- Grafana — alert rules and instances, dashboards, annotations, datasources
- Datadog — monitor and SLO rollups, monitors, incidents, SLOs
- Prometheus — metric rollups, alerts, recording rules, scrape targets
- Cloudflare — zone analytics rollups, firewall events, Workers invocations, DNS analytics
- Amazon ECS — services and tasks, clusters, deployments, Container Insights metrics
- Amazon EKS — clusters and workloads, nodegroups, pods, Container Insights metrics
- Kubernetes — workloads and pods, nodes, namespaces, events
- Google Kubernetes Engine — clusters and workloads, node pools, cluster operations, utilization metrics
- Vercel — deployments, builds, checks, projects
- Honeycomb — query result aggregates, datasets, SLOs, triggers
- Elasticsearch — log and event rollups, indices, index stats, aggregation results
- Kibana — cases, alerting rules, rule executions, dashboards
- Axiom — event rollups, datasets, monitors, APL query results
- Raygun — error groups, error instances, deployments, RUM sessions
For the delivery side of the same story, cross-link the shared model to GitHub and GitLab — deploys and incidents together power the DORA metrics.
What is the shared observability data model?
| Concept | Common terms | Used for |
|---|---|---|
| Incident | Incident, case, outage, page | Incident count, MTTA, MTTR |
| Alert | Alert, monitor event, trigger, notification | Alert volume and noise rate |
| Error group | Issue, error group, crash group, signature | Error inflow, impact, resolution |
| Service health rollup | Availability, error rate, latency percentiles per window | Availability, SLO compliance |
| Deployment | Deploy, release, rollout, build | Deployment frequency, change failure rate |
| Resource snapshot | Workload, service, node, cluster state per day | Utilization, capacity, headroom |
| Cost allocation | Spend by service, namespace, cluster, zone | Cost trends and unit economics |
| Service | Service, application, project, zone, dataset | The join key for everything above |
How do you connect observability tools to Metabase?
- MCP + CLI route — pull a scoped, summarized export through an MCP server, save CSV, and load it with
mb upload csvfor fast exploration. - Pipeline route — sync rollups, incidents, and metadata into a database or warehouse with a connector or API pipeline, then build reliable dashboards.
- Cross-source route — join reliability data to deploys, issues, support tickets, and revenue to explain outcomes, not just outages.
What can you analyze across these tools?
- Incident count — qualifying incidents per period, by severity and service
- Mean time to acknowledge — created to first acknowledge, as a median
- MTTR — failure start to service restored, as a median
- Error rate — error events over total requests or sessions
- Alert noise rate — alerts that never became incidents
- Service availability — successful requests or minutes over total
- SLO compliance — actual reliability against explicit targets and error budgets
- Resource utilization — used capacity over requested or provisioned capacity
- Deployment frequency and change failure rate — the DORA throughput and stability pair
Which dashboards should you build?
- Incident response — incident volume, MTTA, MTTR, and on-call load
- Alert quality — alert volume, conversion to incidents, and the noisiest monitors
- Service availability — availability, error rates, and latency by service
- SLO tracking — error budgets, burn rates, and compliance by service
- Release quality — deploys, regressions, and error spikes by release
- Infrastructure cost — utilization vs. requests and spend by service
- Software delivery — the DORA view, joined from deploys and incidents
Common mistakes
Related
Analytics
Integrations
FAQ
What is observability and infrastructure analytics?
Does Metabase connect natively to Sentry, PagerDuty, or Datadog?
mb upload csv). Each tool guide — Sentry, PagerDuty, Datadog — documents both routes.