mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-08 18:16:59 +00:00
Refactor InstrumentHandlerCounter definition
This commit is contained in:
parent
2baf5baa75
commit
9b5d6c9745
@ -85,33 +85,33 @@ func makeDownloadAPI(
|
|||||||
activeRemoteRequests *types.ActiveRemoteRequests,
|
activeRemoteRequests *types.ActiveRemoteRequests,
|
||||||
activeThumbnailGeneration *types.ActiveThumbnailGeneration,
|
activeThumbnailGeneration *types.ActiveThumbnailGeneration,
|
||||||
) http.HandlerFunc {
|
) http.HandlerFunc {
|
||||||
return promhttp.InstrumentHandlerCounter(
|
counterVec := promauto.NewCounterVec(
|
||||||
promauto.NewCounterVec(
|
prometheus.CounterOpts{
|
||||||
prometheus.CounterOpts{
|
Name: name,
|
||||||
Name: name,
|
Help: "Total number of media_api requests for either thumbnails or full downloads",
|
||||||
Help: "Total number of media_api requests for either thumbnails or full downloads",
|
|
||||||
},
|
|
||||||
[]string{"code"},
|
|
||||||
), http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
|
|
||||||
req = util.RequestWithLogging(req)
|
|
||||||
|
|
||||||
// Set common headers returned regardless of the outcome of the request
|
|
||||||
util.SetCORSHeaders(w)
|
|
||||||
// Content-Type will be overridden in case of returning file data, else we respond with JSON-formatted errors
|
|
||||||
w.Header().Set("Content-Type", "application/json")
|
|
||||||
vars := mux.Vars(req)
|
|
||||||
Download(
|
|
||||||
w,
|
|
||||||
req,
|
|
||||||
gomatrixserverlib.ServerName(vars["serverName"]),
|
|
||||||
types.MediaID(vars["mediaId"]),
|
|
||||||
cfg,
|
|
||||||
db,
|
|
||||||
client,
|
|
||||||
activeRemoteRequests,
|
|
||||||
activeThumbnailGeneration,
|
|
||||||
name == "thumbnail",
|
|
||||||
)
|
|
||||||
},
|
},
|
||||||
))
|
[]string{"code"},
|
||||||
|
)
|
||||||
|
httpHandler := func(w http.ResponseWriter, req *http.Request) {
|
||||||
|
req = util.RequestWithLogging(req)
|
||||||
|
|
||||||
|
// Set common headers returned regardless of the outcome of the request
|
||||||
|
util.SetCORSHeaders(w)
|
||||||
|
// Content-Type will be overridden in case of returning file data, else we respond with JSON-formatted errors
|
||||||
|
w.Header().Set("Content-Type", "application/json")
|
||||||
|
vars := mux.Vars(req)
|
||||||
|
Download(
|
||||||
|
w,
|
||||||
|
req,
|
||||||
|
gomatrixserverlib.ServerName(vars["serverName"]),
|
||||||
|
types.MediaID(vars["mediaId"]),
|
||||||
|
cfg,
|
||||||
|
db,
|
||||||
|
client,
|
||||||
|
activeRemoteRequests,
|
||||||
|
activeThumbnailGeneration,
|
||||||
|
name == "thumbnail",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
return promhttp.InstrumentHandlerCounter(counterVec, http.HandlerFunc(httpHandler))
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user