docs(otel): importable SigNoz dashboard for governed runs - #138
Merged
Conversation
Add examples/otel/signoz with an importable SigNoz dashboard JSON and a short setup README, mirroring the existing Grafana + Tempo example. The dashboard is built from the OpenTelemetry GenAI spans RiskKernel already exports, so SigNoz users get the same cost/governance view as one JSON import: spend per run, budget halts by reason, tool-call outcomes, and latency and token burn by model. Targets SigNoz Query Builder v5 (dot-preserving attribute schema), so it references the gen_ai.* / riskkernel.* attributes by their pinned dotted names from api/v1/otel-genai.md. Cross-link from the Grafana example and record it in the changelog.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
examples/otel/grafana/ships a provisioned Grafana + Tempo dashboard built from RiskKernel's spans. This adds the equivalent for SigNoz, so teams already running it get "feed your existing observability" as a single import too.What's here
examples/otel/signoz/dashboards/riskkernel-agent-runs.json— an importable SigNoz dashboard (Query Builder v5 / dot-preserving attribute schema) with the same panels as the Grafana one:riskkernel.run.id)gen_ai.request.model)riskkernel.tool.status)riskkernel.halt.reason)examples/otel/signoz/README.md— how to point RiskKernel's OTLP export at SigNoz (self-hosted and Cloud, with the ingestion-key header) and how to import the dashboard. Honest about the service-name filter,durationNanofor latency, and pre-v5 SigNoz where attribute keys were underscore-normalized.Notes
api/v1/otel-genai.md—gen_ai.operation.name,gen_ai.request.model,gen_ai.usage.output_tokens,riskkernel.cost.usd,riskkernel.run.id,riskkernel.halt.reason,riskkernel.tool.status— so the panels track the stable public contract.python3 -c "import json; json.load(...)") and uses the v5 dashboard shape (version: "v5",widgets/layout/panelMap, builderqueryDatawithaggregations/filter.expression/groupBy), matching SigNoz's current import format.Closes #89