Skip to content

Commit

Permalink
fix: change legend for adapter dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
sunpe committed Oct 25, 2023
1 parent 0d7cb59 commit 3825d22
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions dashboards/TDinsightV3.json
Original file line number Diff line number Diff line change
Expand Up @@ -3419,7 +3419,7 @@
"hide": false,
"queryType": "SQL",
"refId": "A",
"sql": "select sum(`total`) as `Total`, sum(`success`) as `Successful`, sum(`fail`) as `Failed`, sum(`query`) as `Queries`, sum(`write`) as `Writes`, sum(`other`) as `Other` from $database.adapter_requests where req_type=0"
"sql": "select sum(`total`) as `Total`, sum(`success`) as `Successful`, sum(`fail`) as `Failed`, sum(`query`) as `Queries`, sum(`write`) as `Writes`, sum(`other`) as `Other` from $database.adapter_requests where req_type=0 and ts >= $from and ts <= $to"
}
],
"timeFrom": null,
Expand Down Expand Up @@ -3484,10 +3484,9 @@
"graph": {},
"legend": {
"calcs": [
"lastNotNull",
"min",
"max",
"lastNotNull",
"sum",
"mean"
],
"displayMode": "table",
Expand Down Expand Up @@ -3651,7 +3650,7 @@
"hide": false,
"queryType": "SQL",
"refId": "A",
"sql": "select sum(`total`) as `Total`, sum(`success`) as `Successful`, sum(`fail`) as `Failed`, sum(`query`) as `Queries`, sum(`write`) as `Writes`, sum(`other`) as `Other` from $database.adapter_requests where req_type=1"
"sql": "select sum(`total`) as `Total`, sum(`success`) as `Successful`, sum(`fail`) as `Failed`, sum(`query`) as `Queries`, sum(`write`) as `Writes`, sum(`other`) as `Other` from $database.adapter_requests where req_type=1 and ts >= $from and ts <= $to"
}
],
"timeFrom": null,
Expand Down Expand Up @@ -3716,10 +3715,9 @@
"graph": {},
"legend": {
"calcs": [
"lastNotNull",
"min",
"max",
"lastNotNull",
"sum",
"mean"
],
"displayMode": "table",
Expand Down

0 comments on commit 3825d22

Please sign in to comment.