2014-03-30 18:28:04 +00:00
|
|
|
package weed_server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2019-06-25 16:49:27 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/stats"
|
2014-03-30 18:28:04 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func (fs *FilerServer) filerHandler(w http.ResponseWriter, r *http.Request) {
|
2019-06-25 16:49:27 +00:00
|
|
|
start := time.Now()
|
2014-03-30 18:28:04 +00:00
|
|
|
switch r.Method {
|
|
|
|
case "GET":
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestCounter.WithLabelValues("get").Inc()
|
2014-03-30 18:28:04 +00:00
|
|
|
fs.GetOrHeadHandler(w, r, true)
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestHistogram.WithLabelValues("get").Observe(time.Since(start).Seconds())
|
2014-03-30 18:28:04 +00:00
|
|
|
case "HEAD":
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestCounter.WithLabelValues("head").Inc()
|
2014-03-30 18:28:04 +00:00
|
|
|
fs.GetOrHeadHandler(w, r, false)
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestHistogram.WithLabelValues("head").Observe(time.Since(start).Seconds())
|
2014-03-30 18:28:04 +00:00
|
|
|
case "DELETE":
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestCounter.WithLabelValues("delete").Inc()
|
2014-03-30 18:28:04 +00:00
|
|
|
fs.DeleteHandler(w, r)
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestHistogram.WithLabelValues("delete").Observe(time.Since(start).Seconds())
|
2014-03-30 18:28:04 +00:00
|
|
|
case "PUT":
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestCounter.WithLabelValues("put").Inc()
|
2014-03-30 18:28:04 +00:00
|
|
|
fs.PostHandler(w, r)
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestHistogram.WithLabelValues("put").Observe(time.Since(start).Seconds())
|
2014-03-30 18:28:04 +00:00
|
|
|
case "POST":
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestCounter.WithLabelValues("post").Inc()
|
2014-03-30 18:28:04 +00:00
|
|
|
fs.PostHandler(w, r)
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestHistogram.WithLabelValues("post").Observe(time.Since(start).Seconds())
|
2014-03-30 18:28:04 +00:00
|
|
|
}
|
|
|
|
}
|
2017-05-28 03:14:22 +00:00
|
|
|
|
|
|
|
func (fs *FilerServer) readonlyFilerHandler(w http.ResponseWriter, r *http.Request) {
|
2019-06-25 16:49:27 +00:00
|
|
|
start := time.Now()
|
2017-05-28 03:14:22 +00:00
|
|
|
switch r.Method {
|
|
|
|
case "GET":
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestCounter.WithLabelValues("get").Inc()
|
2017-05-28 03:14:22 +00:00
|
|
|
fs.GetOrHeadHandler(w, r, true)
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestHistogram.WithLabelValues("get").Observe(time.Since(start).Seconds())
|
2017-05-28 03:14:22 +00:00
|
|
|
case "HEAD":
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestCounter.WithLabelValues("head").Inc()
|
2017-05-28 03:14:22 +00:00
|
|
|
fs.GetOrHeadHandler(w, r, false)
|
2019-06-25 16:49:27 +00:00
|
|
|
stats.FilerRequestHistogram.WithLabelValues("head").Observe(time.Since(start).Seconds())
|
2017-05-28 03:14:22 +00:00
|
|
|
}
|
|
|
|
}
|