grafana: update kv duration filter condition (#20023)

This commit is contained in:
Zejun Li
2020-09-28 11:12:12 +08:00
committed by GitHub
parent 17b7b5e815
commit 353e87cf76
2 changed files with 3 additions and 3 deletions

View File

@ -6927,7 +6927,7 @@
"steppedLine": false,
"targets": [
{
"expr": "histogram_quantile(0.99, sum(rate(tidb_tikvclient_request_seconds_bucket{type!=\"GC\"}[1m])) by (le, store))",
"expr": "histogram_quantile(0.99, sum(rate(tidb_tikvclient_request_seconds_bucket{store!=\"0\"}[1m])) by (le, store))",
"format": "time_series",
"intervalFactor": 2,
"legendFormat": "store-{{store}}",
@ -7022,7 +7022,7 @@
"steppedLine": false,
"targets": [
{
"expr": "histogram_quantile(0.99, sum(rate(tidb_tikvclient_request_seconds_bucket{type!=\"GC\"}[1m])) by (le,type))",
"expr": "histogram_quantile(0.99, sum(rate(tidb_tikvclient_request_seconds_bucket{store!=\"0\"}[1m])) by (le,type))",
"format": "time_series",
"intervalFactor": 2,
"legendFormat": "{{type}}",

View File

@ -1098,7 +1098,7 @@
"steppedLine": false,
"targets": [
{
"expr": "histogram_quantile(0.99, sum(rate(tidb_tikvclient_request_seconds_bucket{type!=\"GC\",instance=~\"$instance\"}[30s])) by (le, store))",
"expr": "histogram_quantile(0.99, sum(rate(tidb_tikvclient_request_seconds_bucket{store!=\"0\",instance=~\"$instance\"}[30s])) by (le, store))",
"format": "time_series",
"intervalFactor": 1,
"legendFormat": "tidb-to-store{{store}}",