UNPKG

openclaw-grafana-lens

Version:

OpenClaw plugin that gives AI agents full Grafana access — 18 composable tools for PromQL/LogQL/TraceQL queries, dashboard creation, alerting, SRE investigation, security monitoring, data collection pipeline management via Grafana Alloy (29 recipes), and

17 lines (16 loc) 574 B
/** * Recipe: span-metrics * * Generates RED (Request rate, Error rate, Duration) metrics from traces * using the OTel spanmetrics connector. Produces both metrics (to Prometheus) * and forwards traces (to Tempo) via dual-output fan-out. * * Generated Alloy pipeline: * otelcol.receiver.otlp → otelcol.processor.batch → { * otelcol.connector.spanmetrics → otelcol.exporter.otlphttp (metrics) * otelcol.exporter.otlp (traces) * } */ import type { PipelineRecipe } from "../types.js"; declare const recipe: PipelineRecipe; export default recipe;