mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-19 00:17:55 +08:00
s3: collect metrics
This commit is contained in:
17
weed/s3api/stats.go
Normal file
17
weed/s3api/stats.go
Normal file
@@ -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())
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user