Skip to content

Commit

Permalink
fix(traffic): fix time in traffic by hour histogram (#58)
Browse files Browse the repository at this point in the history
fix traffic by hour histogram with a wrong order in the x axis (e.g. 15:00 14:00 13:00 12:00 16:00)
  • Loading branch information
cotosso authored Dec 20, 2024
1 parent f551252 commit 42d56c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions imageroot/etc/dashboards/network_traffic_by_client.json
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@
"editorMode": "code",
"format": "table",
"rawQuery": true,
"rawSql": "SELECT bucket, bytes \nFROM ca_dpi_stats_hourly_client\nWHERE $__timeFilter(bucket) AND uuid = '$uuid' AND client_address = '$client_address'",
"rawSql": "SELECT bucket, bytes \nFROM ca_dpi_stats_hourly_client\nWHERE $__timeFilter(bucket) AND uuid = '$uuid' AND client_address = '$client_address'\nORDER BY bucket",
"refId": "A",
"sql": {
"columns": [
Expand Down Expand Up @@ -1039,4 +1039,4 @@
"uid": "b14a1181-a2ee-4df4-a732-888e0190037f",
"version": 25,
"weekStart": ""
}
}

0 comments on commit 42d56c4

Please sign in to comment.