summary refs log tree commit diff
path: root/contrib/prometheus/consoles (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Improve `reactor_tick_time` metric (#11724)Richard van der Hoff2022-01-171-16/+0
| | | | | | | | | | | The existing implementation of the `python_twisted_reactor_tick_time` metric is pretty useless, because it *only* measures the time taken to execute timed calls and callbacks from threads. That neglects everything that happens off the back of I/O, which is obviously quite a lot for us. To improve this, I've hooked into a different place in the reactor - in particular, where it calls `epoll`. That call is the only place it should wait for something to happen - the rest of the loop *should* be quick. I've also removed `python_twisted_reactor_pending_calls`, because I don't believe anyone ever looks at it, and it's a nuisance to populate.
* Update example prometheus console (#8824)Dirk Klimpel2020-11-261-51/+50
| | | | Signed-off-by: Dirk Klimpel dirk@klimpel.org
* make prometheus config compliant to v0.28Krombel2018-04-051-10/+10
|
* Add prometheus configRichard van der Hoff2017-08-161-0/+395
... from https://github.com/matrix-org/synapse-prometheus-config.