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

11 lines (10 loc) 382 B
/** * Shared utilities for trace connector recipes (span-metrics, service-graph). */ /** * Derive an OTLP metrics ingestion URL from a Prometheus remote_write URL. * Mimir: /api/prom/push → /api/v1/otlp * Prometheus: /api/v1/write → /api/v1/otlp * Fallback: strip path, append /api/v1/otlp */ export declare function deriveOtlpMetricsUrl(remoteWriteUrl: string): string;