Skip to main content
Enterprise Feature — Metrics & telemetry is available on superglue Enterprise plans. Contact us to learn more.
Superglue exposes organization-scoped runtime metrics via a Prometheus text exposition endpoint. Use these to build dashboards, SLOs, and alerts for your Superglue usage.

Endpoint

GET /v1/metrics

Auth: Authorization: Bearer <SUPERGLUE_API_KEY>
Format: Prometheus text exposition (text/plain; version=0.0.4)
OpenTelemetry users: Superglue exposes metrics in Prometheus format. To integrate with an OpenTelemetry stack, use an OpenTelemetry Collector Prometheus receiver and export via OTLP to your backend.

Quick Setup

Option B: Using bearer_token

Example Response


Metrics Reference

Type: CounterTotal number of finished runs in your org, grouped by outcome and source.
Best used for rates and error ratios over time using increase() / rate().
PromQL ExamplesTotal throughput (5m):
Error rate (5m):
Breakdown by source:
Type: Gaugep95 runtime (seconds) for finished runs over a trailing 5-minute window.
This is end-to-end latency as Superglue sees it. Good for catching tail latency regressions.
PromQL ExamplesAlert when API runs get slow:
Dashboard all sources:

Use Cases

1

Monitor Scheduled Jobs

Track superglue_runs_total filtered by source="scheduler" to see successful vs failed runs over time.
2

Alert on Failures

Set up alerts when scheduled runs fail — catch issues before they pile up.
3

Investigate in Superglue

When an alert fires, jump into the Superglue dashboard or query the REST API to fetch the latest runs and inspect stack traces.