You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Revert "Add total event, unencrypted message, and e2ee event counts to stats reporting" (#18346)
Reverts #18260
It is causing a failure when building release debs for `debian:bullseye`
with the following error:
```
sqlite3.OperationalError: near "RETURNING": syntax error
```
Copy file name to clipboardExpand all lines: docs/usage/administration/monitoring/reporting_homeserver_usage_statistics.md
+3-6
Original file line number
Diff line number
Diff line change
@@ -30,13 +30,10 @@ The following statistics are sent to the configured reporting endpoint:
30
30
|`python_version`| string | The Python version number in use (e.g "3.7.1"). Taken from `sys.version_info`. |
31
31
|`total_users`| int | The number of registered users on the homeserver. |
32
32
|`total_nonbridged_users`| int | The number of users, excluding those created by an Application Service. |
33
-
|`daily_user_type_native`| int | The number of native, non-guest users created in the last 24 hours. |
33
+
|`daily_user_type_native`| int | The number of native users created in the last 24 hours. |
34
34
|`daily_user_type_guest`| int | The number of guest users created in the last 24 hours. |
35
35
|`daily_user_type_bridged`| int | The number of users created by Application Services in the last 24 hours. |
36
36
|`total_room_count`| int | The total number of rooms present on the homeserver. |
37
-
|`total_event_count`| int | The total number of events present on the homeserver. |
38
-
|`total_message_count`| int | The total number of non-state events with type `m.room.message` present on the homeserver. |
39
-
|`total_e2ee_event_count`| int | The total number of non-state events with type `m.room.encrypted` present on the homeserver. This can be used as a slight over-estimate for the number of encrypted messages. |
40
37
|`daily_active_users`| int | The number of unique users[^1] that have used the homeserver in the last 24 hours. |
41
38
|`monthly_active_users`| int | The number of unique users[^1] that have used the homeserver in the last 30 days. |
42
39
|`daily_active_rooms`| int | The number of rooms that have had a (state) event with the type `m.room.message` sent in them in the last 24 hours. |
@@ -53,8 +50,8 @@ The following statistics are sent to the configured reporting endpoint:
53
50
|`cache_factor`| int | The configured [`global factor`](../../configuration/config_documentation.md#caching) value for caching. |
54
51
|`event_cache_size`| int | The configured [`event_cache_size`](../../configuration/config_documentation.md#caching) value for caching. |
55
52
|`database_engine`| string | The database engine that is in use. Either "psycopg2" meaning PostgreSQL is in use, or "sqlite3" for SQLite3. |
56
-
|`database_server_version`| string | The version of the database server. Examples being "10.10" for PostgreSQL server version 10.0, and "3.38.5" for SQLite 3.38.5 installed on the system. |
57
-
|`log_level`| string | The log level in use. Examples are "INFO", "WARNING", "ERROR", "DEBUG", etc. |
53
+
|`database_server_version`| string | The version of the database server. Examples being "10.10" for PostgreSQL server version 10.0, and "3.38.5" for SQLite 3.38.5 installed on the system. |
54
+
|`log_level`| string | The log level in use. Examples are "INFO", "WARNING", "ERROR", "DEBUG", etc. |
58
55
59
56
60
57
[^1]: Native matrix users and guests are always counted. If the
0 commit comments