aboutsummaryrefslogtreecommitdiff
path: root/weed/s3api/stats.go
diff options
context:
space:
mode:
authorhasagi <30975629+LIBA-S@users.noreply.github.com>2020-09-22 21:38:38 +0800
committerGitHub <noreply@github.com>2020-09-22 21:38:38 +0800
commitd7bf2390e2bf4ac55132878faa68119b3558e8e4 (patch)
tree48ede45893c2130d3e039f7fe4af8440835eb02d /weed/s3api/stats.go
parent37e964d4bd60a9dd792a9cc24f05eaa05d3766f2 (diff)
parentec5b9f1e91a8609d0e70bf9d26dc0840774153c4 (diff)
downloadseaweedfs-d7bf2390e2bf4ac55132878faa68119b3558e8e4.tar.xz
seaweedfs-d7bf2390e2bf4ac55132878faa68119b3558e8e4.zip
Merge pull request #1 from chrislusf/master
catch up
Diffstat (limited to 'weed/s3api/stats.go')
-rw-r--r--weed/s3api/stats.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/weed/s3api/stats.go b/weed/s3api/stats.go
new file mode 100644
index 000000000..16a546c66
--- /dev/null
+++ b/weed/s3api/stats.go
@@ -0,0 +1,21 @@
+package s3api
+
+import (
+ stats_collect "github.com/chrislusf/seaweedfs/weed/stats"
+ "github.com/chrislusf/seaweedfs/weed/util"
+ "net/http"
+ "time"
+)
+
+func track(f http.HandlerFunc, action string) http.HandlerFunc {
+
+ return func(w http.ResponseWriter, r *http.Request) {
+
+ w.Header().Set("Server", "SeaweedFS S3 "+util.VERSION)
+
+ start := time.Now()
+ stats_collect.S3RequestCounter.WithLabelValues(action).Inc()
+ f(w, r)
+ stats_collect.S3RequestHistogram.WithLabelValues(action).Observe(time.Since(start).Seconds())
+ }
+}