diff options
| author | Konstantin Lebedev <lebedev_k@tochka.com> | 2020-10-01 00:59:39 +0500 |
|---|---|---|
| committer | Konstantin Lebedev <lebedev_k@tochka.com> | 2020-10-01 00:59:39 +0500 |
| commit | 68463e92c1aa8dbec2c2bc0151f2c5809f36b131 (patch) | |
| tree | 369b2fbfc9dad5f2d73a801116bc1079ba3ad659 /weed/stats/metrics.go | |
| parent | 79ab10e3007f95b099f15d0ae80070562bc08eef (diff) | |
| download | seaweedfs-68463e92c1aa8dbec2c2bc0151f2c5809f36b131.tar.xz seaweedfs-68463e92c1aa8dbec2c2bc0151f2c5809f36b131.zip | |
add status code in S3RequestCounter
Diffstat (limited to 'weed/stats/metrics.go')
| -rw-r--r-- | weed/stats/metrics.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/stats/metrics.go b/weed/stats/metrics.go index d930caf0f..a60cda290 100644 --- a/weed/stats/metrics.go +++ b/weed/stats/metrics.go @@ -16,7 +16,7 @@ import ( ) var ( - Gather = prometheus.NewRegistry() + Gather = prometheus.NewRegistry() FilerRequestCounter = prometheus.NewCounterVec( prometheus.CounterOpts{ @@ -99,7 +99,7 @@ var ( Subsystem: "s3", Name: "request_total", Help: "Counter of s3 requests.", - }, []string{"type"}) + }, []string{"type", "code"}) S3RequestHistogram = prometheus.NewHistogramVec( prometheus.HistogramOpts{ Namespace: "SeaweedFS", |
