diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-09-18 00:09:04 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-09-18 00:09:04 -0700 |
| commit | 23e9ede068fdc4ffde6505f97a0100684fdcf142 (patch) | |
| tree | 0d8b9f5e80cf2d3cdd91b46342023ed93380f6fb /weed/s3api/stats.go | |
| parent | 852e5f7cbce6103874cb2b09e5e124276f298657 (diff) | |
| download | seaweedfs-23e9ede068fdc4ffde6505f97a0100684fdcf142.tar.xz seaweedfs-23e9ede068fdc4ffde6505f97a0100684fdcf142.zip | |
s3: collect metrics
Diffstat (limited to 'weed/s3api/stats.go')
| -rw-r--r-- | weed/s3api/stats.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/weed/s3api/stats.go b/weed/s3api/stats.go new file mode 100644 index 000000000..8776949d4 --- /dev/null +++ b/weed/s3api/stats.go @@ -0,0 +1,17 @@ +package s3api + +import ( + stats_collect "github.com/chrislusf/seaweedfs/weed/stats" + "net/http" + "time" +) + +func stats(f http.HandlerFunc, action string) http.HandlerFunc { + + return func(w http.ResponseWriter, r *http.Request) { + start := time.Now() + stats_collect.S3RequestCounter.WithLabelValues(action).Inc() + f(w, r) + stats_collect.S3RequestHistogram.WithLabelValues(action).Observe(time.Since(start).Seconds()) + } +} |
