diff options
| author | Chris Lu <chrislusf@users.noreply.github.com> | 2022-06-15 23:15:41 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-15 23:15:41 -0700 |
| commit | 40055211bd91744cf7a5f79d91eda10d4c7beaa7 (patch) | |
| tree | 92b51222f077ada7427a336112d41b6e23547803 /weed/s3api/stats.go | |
| parent | 097a12dfb488236b8accda8e868b2c5d4b64b14e (diff) | |
| parent | 6449114e5e88953b0fe22b50b46d91a7bed52523 (diff) | |
| download | seaweedfs-40055211bd91744cf7a5f79d91eda10d4c7beaa7.tar.xz seaweedfs-40055211bd91744cf7a5f79d91eda10d4c7beaa7.zip | |
Merge pull request #3190 from famosss/master
add bucket label to s3 prometheus metrics
Diffstat (limited to 'weed/s3api/stats.go')
| -rw-r--r-- | weed/s3api/stats.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/weed/s3api/stats.go b/weed/s3api/stats.go index 973d8c0eb..003807a25 100644 --- a/weed/s3api/stats.go +++ b/weed/s3api/stats.go @@ -1,6 +1,7 @@ package s3api import ( + "github.com/chrislusf/seaweedfs/weed/s3api/s3_constants" stats_collect "github.com/chrislusf/seaweedfs/weed/stats" "net/http" "strconv" @@ -27,11 +28,12 @@ func (r *StatusRecorder) Flush() { func track(f http.HandlerFunc, action string) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { + bucket, _ := s3_constants.GetBucketAndObject(r) w.Header().Set("Server", "SeaweedFS S3") recorder := NewStatusResponseWriter(w) start := time.Now() f(recorder, r) - stats_collect.S3RequestHistogram.WithLabelValues(action).Observe(time.Since(start).Seconds()) - stats_collect.S3RequestCounter.WithLabelValues(action, strconv.Itoa(recorder.Status)).Inc() + stats_collect.S3RequestHistogram.WithLabelValues(action, bucket).Observe(time.Since(start).Seconds()) + stats_collect.S3RequestCounter.WithLabelValues(action, strconv.Itoa(recorder.Status), bucket).Inc() } } |
