summary refs log tree commit diff
path: root/synapse/http/request_metrics.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove usage of deprecated logger.warn method from codebase (#6271)Andrew Morgan2019-10-311-1/+1
| | | Replace every instance of `logger.warn` with `logger.warning` as the former is deprecated.
* Move logging utilities out of the side drawer of util/ and into logging/ (#5606)Amber Brown2019-07-041-1/+1
|
* Make the metrics less racy (#4061)Amber Brown2018-10-191-13/+18
|
* Fix more b'abcd' noise in metricsRichard van der Hoff2018-09-171-11/+11
|
* Fix typoErik Johnston2018-08-211-4/+4
|
* Make the in flight requests metrics thread safeErik Johnston2018-08-201-3/+10
|
* pep8Erik Johnston2018-07-181-1/+2
|
* Add response code to response timer metricsErik Johnston2018-07-181-3/+5
|
* Refactor logcontext resource usage tracking (#3501)Richard van der Hoff2018-07-101-66/+17
| | | | | Factor out the resource usage tracking out to a separate object, which can be passed around and copied independently of the logcontext itself.
* run isortAmber Brown2018-07-091-1/+1
|
* Fix inflight requests metric (incorrect name & traceback) (#3413)Amber Brown2018-06-201-3/+7
|
* update to more consistently use seconds in any metrics or loggingAmber Brown2018-05-281-19/+19
|
* update metrics to be in secondsAmber Brown2018-05-281-3/+3
|
* fixesAmber Brown2018-05-231-7/+7
|
* cleanup pep8 errorsAmber Brown2018-05-221-28/+86
|
* cleanups, self-registrationAmber Brown2018-05-221-12/+3
|
* Merge remote-tracking branch 'origin/develop' into 3218-official-promAmber Brown2018-05-221-1/+136
|\
| * Don't store contextErik Johnston2018-05-221-8/+5
| |
| * Move in_flight_requests_count to be a callback metricErik Johnston2018-05-221-10/+21
| |
| * Add in flight request metricsErik Johnston2018-05-211-1/+151
| | | | | | | | | | This tracks CPU and DB usage while requests are in flight, rather than when we write the response.
* | rest of the changesAmber Brown2018-05-211-83/+23
|/
* Move outgoing_responses_counter handling to RequestMetricsRichard van der Hoff2018-05-101-0/+2
| | | | it's much neater there.
* Make RequestMetrics take a raw time rather than a clockRichard van der Hoff2018-05-101-4/+4
| | | | ... which is going to make it easier to move around.
* Move RequestsMetrics to its own fileRichard van der Hoff2018-05-091-0/+147
This is useful in its own right, because server.py is full of stuff; but more importantly, I want to do some refactoring that will cause a circular reference as it is.