seaweedfs/weed/s3api/stats.go

22 lines
526 B
Go
Raw Normal View History

2020-09-18 07:09:04 +00:00
package s3api
import (
stats_collect "github.com/chrislusf/seaweedfs/weed/stats"
2020-09-20 23:00:01 +00:00
"github.com/chrislusf/seaweedfs/weed/util"
2020-09-18 07:09:04 +00:00
"net/http"
"time"
)
2020-09-20 23:00:01 +00:00
func track(f http.HandlerFunc, action string) http.HandlerFunc {
2020-09-18 07:09:04 +00:00
return func(w http.ResponseWriter, r *http.Request) {
2020-09-20 23:00:01 +00:00
2020-09-20 23:01:56 +00:00
w.Header().Set("Server", "SeaweedFS S3 "+util.VERSION)
2020-09-20 23:00:01 +00:00
2020-09-18 07:09:04 +00:00
start := time.Now()
stats_collect.S3RequestCounter.WithLabelValues(action).Inc()
f(w, r)
stats_collect.S3RequestHistogram.WithLabelValues(action).Observe(time.Since(start).Seconds())
}
}