CD/CD consolidation

This commit is contained in:
StellaOps Bot
2025-12-26 17:32:23 +02:00
parent a866eb6277
commit c786faae84
638 changed files with 3821 additions and 181 deletions

View File

@@ -0,0 +1,50 @@
{
"title": "Excititor VEX Observations Traces",
"tags": ["excititor", "traces", "vex"],
"timezone": "browser",
"schemaVersion": 38,
"version": 1,
"refresh": "30s",
"panels": [
{
"type": "stat",
"title": "Spans (last 15m)",
"gridPos": {"h": 4, "w": 6, "x": 0, "y": 0},
"targets": [
{
"refId": "A",
"datasource": {"type": "tempo", "uid": "tempo"},
"expr": "sum by(service_name)(rate(traces_spanmetrics_calls_total{service_name=~\"excititor.*\"}[15m]))"
}
]
},
{
"type": "stat",
"title": "Errors (last 15m)",
"gridPos": {"h": 4, "w": 6, "x": 6, "y": 0},
"targets": [
{
"refId": "A",
"datasource": {"type": "tempo", "uid": "tempo"},
"expr": "sum by(status_code)(rate(traces_spanmetrics_calls_total{status_code=\"STATUS_CODE_ERROR\",service_name=~\"excititor.*\"}[15m]))"
}
]
},
{
"type": "table",
"title": "Recent /v1/vex/observations spans",
"gridPos": {"h": 12, "w": 24, "x": 0, "y": 4},
"options": {
"showHeader": true
},
"targets": [
{
"refId": "A",
"datasource": {"type": "tempo", "uid": "tempo"},
"queryType": "traceql",
"expr": "{ service.name = \"excititor\" && http.target = \"/v1/vex/observations\" } | limit 50"
}
]
}
]
}