aboutsummaryrefslogtreecommitdiff
path: root/weed/s3api/stats.go
diff options
context:
space:
mode:
authorChris Lu <chrislusf@users.noreply.github.com>2020-09-30 13:24:08 -0700
committerGitHub <noreply@github.com>2020-09-30 13:24:08 -0700
commited170d8fe6f4d067abcbc16fc09ad497ab908f4a (patch)
tree8697b302880b822d795e4e583eff6a9375ffe989 /weed/s3api/stats.go
parent79ab10e3007f95b099f15d0ae80070562bc08eef (diff)
parent86329bbf2be4a8fdf3acdcf58d9fe0b147dbdfd4 (diff)
downloadseaweedfs-ed170d8fe6f4d067abcbc16fc09ad497ab908f4a.tar.xz
seaweedfs-ed170d8fe6f4d067abcbc16fc09ad497ab908f4a.zip
Merge pull request #1502 from kmlebedev/s3_stat_statuscode
add status code in S3RequestCounter
Diffstat (limited to 'weed/s3api/stats.go')
-rw-r--r--weed/s3api/stats.go27
1 files changed, 22 insertions, 5 deletions
diff --git a/weed/s3api/stats.go b/weed/s3api/stats.go
index 16a546c66..b667b32a0 100644
--- a/weed/s3api/stats.go
+++ b/weed/s3api/stats.go
@@ -4,18 +4,35 @@ import (
stats_collect "github.com/chrislusf/seaweedfs/weed/stats"
"github.com/chrislusf/seaweedfs/weed/util"
"net/http"
+ "strconv"
"time"
)
-func track(f http.HandlerFunc, action string) http.HandlerFunc {
+type StatusRecorder struct {
+ http.ResponseWriter
+ Status int
+}
- return func(w http.ResponseWriter, r *http.Request) {
+func NewStatusResponseWriter(w http.ResponseWriter) *StatusRecorder {
+ return &StatusRecorder{w, http.StatusOK}
+}
- w.Header().Set("Server", "SeaweedFS S3 "+util.VERSION)
+func (r *StatusRecorder) WriteHeader(status int) {
+ r.Status = status
+ r.ResponseWriter.WriteHeader(status)
+}
+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)
start := time.Now()
- stats_collect.S3RequestCounter.WithLabelValues(action).Inc()
- f(w, r)
+ f(recorder, r)
stats_collect.S3RequestHistogram.WithLabelValues(action).Observe(time.Since(start).Seconds())
+ stats_collect.S3RequestCounter.WithLabelValues(action, strconv.Itoa(recorder.Status)).Inc()
}
}