2020-09-18 15:09:04 +08:00
|
|
|
package s3api
|
|
|
|
|
|
|
|
import (
|
2022-07-29 15:17:28 +08:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/s3api/s3_constants"
|
|
|
|
stats_collect "github.com/seaweedfs/seaweedfs/weed/stats"
|
2024-09-10 00:07:55 +08:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
2020-09-18 15:09:04 +08:00
|
|
|
"net/http"
|
2020-10-01 03:59:39 +08:00
|
|
|
"strconv"
|
2020-09-18 15:09:04 +08:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2020-10-01 03:59:39 +08:00
|
|
|
func track(f http.HandlerFunc, action string) http.HandlerFunc {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
2022-06-16 13:21:25 +08:00
|
|
|
bucket, _ := s3_constants.GetBucketAndObject(r)
|
2024-09-10 00:07:55 +08:00
|
|
|
w.Header().Set("Server", "SeaweedFS "+util.VERSION)
|
2024-01-11 02:05:27 +08:00
|
|
|
recorder := stats_collect.NewStatusResponseWriter(w)
|
2020-09-18 15:09:04 +08:00
|
|
|
start := time.Now()
|
2020-10-01 03:59:39 +08:00
|
|
|
f(recorder, r)
|
2022-10-04 16:20:01 +08:00
|
|
|
if recorder.Status == http.StatusForbidden {
|
2024-09-05 02:06:54 +08:00
|
|
|
bucket = ""
|
2022-10-04 16:20:01 +08:00
|
|
|
}
|
2022-06-16 13:21:25 +08:00
|
|
|
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 15:09:04 +08:00
|
|
|
}
|
|
|
|
}
|
2023-08-21 15:42:39 +08: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()))
|
|
|
|
}
|