Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Add monthly active users documentation #13617

Merged
merged 15 commits into from
Sep 1, 2022
Prev Previous commit
Next Next commit
s/appservice|AS/application service
  • Loading branch information
Half-Shot committed Aug 30, 2022
commit b5f6ee2f8058cfcbe5d04609869163991ebc015d
8 changes: 4 additions & 4 deletions docs/usage/administration/monthly_active_users.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ So for example, if Synapse were to calculate the active users on the 15th July a

A user is **never** considered active if they are either:
- Part of the trial day cohort (described below)
- Are owned by an Application Service (AS).
- Are owned by an application service.
babolivier marked this conversation as resolved.
Show resolved Hide resolved
- Note: This **only** cover users that are part of an application service `namespaces.users` registration. The namespace
must also be marked as `exclusive`.

Expand Down Expand Up @@ -73,12 +73,12 @@ When a request is blocked, the response will have the `errcode` `M_RESOURCE_LIMI

Synapse records several different prometheus metrics for MAU.

`synapse_admin_mau:current` records the current MAU figure for native (non-appservice) users.
`synapse_admin_mau:current` records the current MAU figure for native (non-application-service) users.

`synapse_admin_mau:max` records the maximum MAU as dictated by the `max_mau_value` config value.

`synapse_admin_mau_current_mau_by_service` records the current MAU including appservice users. The label `app_service` can be used
to filter by a specific service ID. This *also* includes non-appservice users under `app_service=native` .
`synapse_admin_mau_current_mau_by_service` records the current MAU including application service users. The label `app_service` can be used
to filter by a specific service ID. This *also* includes non-application-service users under `app_service=native` .

`synapse_admin_mau:registered_reserved_users` records the number of users specified in `mau_limits_reserved_threepids` which have
registered accounts on the homeserver.