seaweedfs/weed/s3api/stats.go

51 lines
1.5 KiB
Go
Raw Normal View History

2020-09-18 07:09:04 +00:00
package s3api
import (
"github.com/seaweedfs/seaweedfs/weed/s3api/s3_constants"
stats_collect "github.com/seaweedfs/seaweedfs/weed/stats"
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) {
bucket, _ := s3_constants.GetBucketAndObject(r)
2021-11-09 01:47:29 +00:00
w.Header().Set("Server", "SeaweedFS S3")
2020-09-30 19:59:39 +00:00
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)
if recorder.Status == http.StatusForbidden {
if m, _ := stats_collect.S3RequestCounter.GetMetricWithLabelValues(
action, strconv.Itoa(http.StatusOK), bucket); m == nil {
bucket = ""
}
}
stats_collect.S3RequestHistogram.WithLabelValues(action, bucket).Observe(time.Since(start).Seconds())
stats_collect.S3RequestCounter.WithLabelValues(action, strconv.Itoa(recorder.Status), bucket).Inc()
2020-09-18 07:09:04 +00:00
}
}
func TimeToFirstByte(action string, start time.Time, r *http.Request) {
bucket, _ := s3_constants.GetBucketAndObject(r)
stats_collect.S3TimeToFirstByteHistogram.WithLabelValues(action, bucket).Observe(float64(time.Since(start).Milliseconds()))
}