Major overhaul of db -> hypertable conversion, updated GUI, added inventory
This commit is contained in:
parent
fdf9f04bc6
commit
f218350959
8 changed files with 1565 additions and 210 deletions
|
|
@ -4,7 +4,11 @@
|
|||
"title": "Dereth Tracker Dashboard",
|
||||
"schemaVersion": 30,
|
||||
"version": 1,
|
||||
"refresh": "10s",
|
||||
"refresh": "30s",
|
||||
"time": {
|
||||
"from": "now-24h",
|
||||
"to": "now"
|
||||
},
|
||||
"panels": [
|
||||
{
|
||||
"type": "timeseries",
|
||||
|
|
@ -17,7 +21,7 @@
|
|||
"refId": "A",
|
||||
"format": "time_series",
|
||||
"datasource": { "uid": "dereth-db" },
|
||||
"rawSql": "SELECT $__time(timestamp), kills_per_hour AS value FROM telemetry_events WHERE character_name = '$character' ORDER BY timestamp"
|
||||
"rawSql": "SELECT $__time(timestamp), kills_per_hour AS value FROM telemetry_events WHERE character_name = '$character' AND $__timeFilter(timestamp) ORDER BY timestamp"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -32,7 +36,7 @@
|
|||
"refId": "A",
|
||||
"format": "time_series",
|
||||
"datasource": { "uid": "dereth-db" },
|
||||
"rawSql": "SELECT $__time(timestamp), mem_mb AS value FROM telemetry_events WHERE character_name = '$character' ORDER BY timestamp"
|
||||
"rawSql": "SELECT $__time(timestamp), mem_mb AS value FROM telemetry_events WHERE character_name = '$character' AND $__timeFilter(timestamp) ORDER BY timestamp"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -47,7 +51,7 @@
|
|||
"refId": "A",
|
||||
"format": "time_series",
|
||||
"datasource": { "uid": "dereth-db" },
|
||||
"rawSql": "SELECT $__time(timestamp), cpu_pct AS value FROM telemetry_events WHERE character_name = '$character' ORDER BY timestamp"
|
||||
"rawSql": "SELECT $__time(timestamp), cpu_pct AS value FROM telemetry_events WHERE character_name = '$character' AND $__timeFilter(timestamp) ORDER BY timestamp"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -62,7 +66,7 @@
|
|||
"refId": "A",
|
||||
"format": "time_series",
|
||||
"datasource": { "uid": "dereth-db" },
|
||||
"rawSql": "SELECT $__time(timestamp), mem_handles AS value FROM telemetry_events WHERE character_name = '$character' ORDER BY timestamp"
|
||||
"rawSql": "SELECT $__time(timestamp), mem_handles AS value FROM telemetry_events WHERE character_name = '$character' AND $__timeFilter(timestamp) ORDER BY timestamp"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue