summary refs log tree commit diff
path: root/synapse/storage/databases/main/metrics.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use direct references for some configuration variables (#10798)Patrick Cloke2021-09-131-1/+1
| | | | Instead of proxying through the magic getter of the RootConfig object. This should be more performant (and is more explicit).
* Add a new version of the R30 phone-home metric, which removes a false ↵reivilibre2021-07-191-0/+129
| | | | | impression of retention given by the old R30 metric (#10332) Signed-off-by: Olivier Wilkinson (reivilibre) <olivier@librepush.net>
* Minor changes to `user_daily_visits` (#10324)reivilibre2021-07-081-2/+2
| | | | | | | * Use fake time in tests in _get_start_of_day. * Change the inequality of last_seen in user_daily_visits Co-authored-by: Erik Johnston <erik@matrix.org>
* Remove redundant "coding: utf-8" lines (#9786)Jonathan de Jong2021-04-141-1/+0
| | | | | | | Part of #9744 Removes all redundant `# -*- coding: utf-8 -*-` lines from files, as python 3 automatically reads source code as utf-8 now. `Signed-off-by: Jonathan de Jong <jonathan@automatia.nl>`
* Fix some typos.Patrick Cloke2021-02-121-2/+2
|
* Add phone home stats for encrypted messages. (#9283)Jan Christian Grünhage2021-02-011-0/+56
| | | Signed-off-by: Jan Christian Grünhage <jan.christian@gruenhage.xyz>
* Fix user_daily_visits to not have duplicate rows for UA. (#8654)Erik Johnston2020-10-261-4/+5
| | | | | | | | | | | * Fix user_daily_visits to not have duplicate rows for UA. Fixes #8641. * Newsfile * Fix typo. Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com>
* Include user agent in user daily visits table (#8503)Neil Johnson2020-10-151-3/+8
| | | Include user agent in user daily visits table.
* Move additional tasks to the background worker (#8458)Patrick Cloke2020-10-071-9/+5
|
* Allow background tasks to be run on a separate worker. (#8369)Patrick Cloke2020-10-021-0/+195
|
* Add an improved "forward extremities" metricRichard van der Hoff2020-09-301-2/+25
| | | | | Hopefully, N(extremities) * N(state_events) is a more realistic approximation to "how big a problem is this room?".
* Rewrite BucketCollectorRichard van der Hoff2020-09-301-16/+10
| | | | | | | | | | | | This was a bit unweildy for what I wanted: in particular, I wanted to assign each measurement straight into a bucket, rather than storing an intermediate Counter which didn't do any bucketing at all. I've replaced it with something that is hopefully a bit easier to use. (I'm not entirely sure what the difference between a HistogramMetricFamily and a GaugeHistogramMetricFamily is, but given our counters can go down as well as up the latter *sounds* more accurate?)
* Convert tags and metrics databases to async/await (#8062)Patrick Cloke2020-08-111-14/+6
|
* Rename database classes to make some sense (#8033)Erik Johnston2020-08-051-0/+130