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
16 lines (15 loc) • 517 B
TypeScript
/**
* Recipe: service-graph
*
* Generates service dependency graph metrics from traces using the OTel
* servicegraph connector. Dual-output: metrics to Prometheus, traces to Tempo.
*
* Generated Alloy pipeline:
* otelcol.receiver.otlp → otelcol.processor.batch → {
* otelcol.connector.servicegraph → otelcol.exporter.otlphttp (metrics)
* otelcol.exporter.otlp (traces)
* }
*/
import type { PipelineRecipe } from "../types.js";
declare const recipe: PipelineRecipe;
export default recipe;