grafana: fix probe status table join
All checks were successful
Run nix flake check / flake-check (push) Successful in 2m9s
All checks were successful
Run nix flake check / flake-check (push) Successful in 2m9s
Use joinByField transformation instead of merge to properly align rows by instance. Also exclude duplicate Time/job columns from join. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -279,12 +279,16 @@
|
||||
],
|
||||
"transformations": [
|
||||
{
|
||||
"id": "merge"
|
||||
"id": "joinByField",
|
||||
"options": {
|
||||
"byField": "instance",
|
||||
"mode": "outer"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "organize",
|
||||
"options": {
|
||||
"excludeByName": {"Time": true, "job": true, "__name__": true},
|
||||
"excludeByName": {"Time": true, "Time 1": true, "Time 2": true, "Time 3": true, "job": true, "job 1": true, "job 2": true, "job 3": true, "__name__": true},
|
||||
"renameByName": {
|
||||
"instance": "Endpoint",
|
||||
"Value #A": "Success",
|
||||
|
||||
Reference in New Issue
Block a user