Skip to content

Commit

Permalink
feat(metric): remove 0.25 summary quantile
Browse files Browse the repository at this point in the history
  • Loading branch information
amazing-gao committed Aug 18, 2021
1 parent 63d6f38 commit 08c0a9e
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion pkg/client/mongodb/metric.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ var (
"mongodb client command duration seconds",
[]string{"command", "error"},
map[float64]float64{
0.25: 0.05,
0.5: 0.05,
0.75: 0.05,
0.9: 0.01,
Expand Down
1 change: 0 additions & 1 deletion pkg/client/redis/metric.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ var (
"redis command duration seconds",
[]string{"address", "db", "masterName", "pipe", "cmd", "error"},
map[float64]float64{
0.25: 0.05,
0.5: 0.05,
0.75: 0.05,
0.9: 0.01,
Expand Down
1 change: 0 additions & 1 deletion pkg/client/wukong/metric.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ var (
"http client request duration",
[]string{"method", "baseUrl", "url", "statusCode", "error"},
map[float64]float64{
0.25: 0.05,
0.5: 0.05,
0.75: 0.05,
0.9: 0.01,
Expand Down
1 change: 0 additions & 1 deletion pkg/server/grpcserver/interceptor/metric/metric.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ var (
"gGPC server handle msg duration",
[]string{"method", "type", "code"},
map[float64]float64{
0.25: 0.05,
0.5: 0.05,
0.75: 0.05,
0.9: 0.01,
Expand Down

0 comments on commit 08c0a9e

Please sign in to comment.