mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-04 13:49:15 +01:00
Fix typo in request metrics
This commit is contained in:
parent
aebd0c9717
commit
dcfc10b129
1 changed files with 1 additions and 1 deletions
|
@ -317,7 +317,7 @@ class RequestMetrics(object):
|
||||||
incoming_requests_counter.inc(request.method, servlet_classname, tag)
|
incoming_requests_counter.inc(request.method, servlet_classname, tag)
|
||||||
|
|
||||||
response_timer.inc_by(
|
response_timer.inc_by(
|
||||||
self.clock.time_msec() - start, request.method,
|
clock.time_msec() - self.start, request.method,
|
||||||
servlet_classname, tag
|
servlet_classname, tag
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue