seaweedfs/weed/s3api/stats.go

39 lines
983 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"
2020-09-30 19:59:39 +00:00
"strconv"
2020-09-18 07:09:04 +00:00
"time"
)
2020-09-30 19:59:39 +00:00
type StatusRecorder struct {
http.ResponseWriter
Status int
}
2020-09-18 07:09:04 +00:00
2020-09-30 19:59:39 +00:00
func NewStatusResponseWriter(w http.ResponseWriter) *StatusRecorder {
return &StatusRecorder{w, http.StatusOK}
}
2020-09-20 23:00:01 +00:00
2020-09-30 19:59:39 +00:00
func (r *StatusRecorder) WriteHeader(status int) {
r.Status = status
r.ResponseWriter.WriteHeader(status)
}
2020-09-20 23:00:01 +00:00
2020-09-30 19:59:39 +00:00
func (r *StatusRecorder) Flush() {
r.ResponseWriter.(http.Flusher).Flush()
}
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)
recorder := NewStatusResponseWriter(w)
2020-09-18 07:09:04 +00:00
start := time.Now()
2020-09-30 19:59:39 +00:00
f(recorder, r)
2020-09-18 07:09:04 +00:00
stats_collect.S3RequestHistogram.WithLabelValues(action).Observe(time.Since(start).Seconds())
2020-09-30 19:59:39 +00:00
stats_collect.S3RequestCounter.WithLabelValues(action, strconv.Itoa(recorder.Status)).Inc()
2020-09-18 07:09:04 +00:00
}
}