Skip to content
Snippets Groups Projects
Unverified Commit 86615aa9 authored by Richard van der Hoff's avatar Richard van der Hoff Committed by GitHub
Browse files

Fix up docs for `track_puppeted_user_ips` (again) (#11757)

Fixes #11741
parent b0352f9c
No related branches found
No related tags found
No related merge requests found
Add `track_puppeted_user_ips` config flag to track puppeted user IP addresses. This also includes them in monthly active user counts. Add `track_puppeted_user_ips` config flag to record client IP addresses against puppeted users, and include the puppeted users in monthly active user counts.
Add `track_puppeted_user_ips` config flag to track puppeted user IP addresses. This also includes them in monthly active user counts. Add `track_puppeted_user_ips` config flag to record client IP addresses against puppeted users, and include the puppeted users in monthly active user counts.
Add `track_puppeted_user_ips` config flag to record client IP addresses against puppeted users, and include the puppeted users in monthly active user counts.
...@@ -1503,10 +1503,18 @@ room_prejoin_state: ...@@ -1503,10 +1503,18 @@ room_prejoin_state:
#additional_event_types: #additional_event_types:
# - org.example.custom.event.type # - org.example.custom.event.type
# By default when puppeting another user, the user who has created the # We record the IP address of clients used to access the API for various
# access token for puppeting is tracked. If this is enabled, both # reasons, including displaying it to the user in the "Where you're signed in"
# requests are tracked. Implicitly enables MAU tracking for puppeted users. # dialog.
# Uncomment to also track puppeted user IP's. #
# By default, when puppeting another user via the admin API, the client IP
# address is recorded against the user who created the access token (ie, the
# admin user), and *not* the puppeted user.
#
# Uncomment the following to also record the IP address against the puppeted
# user. (This also means that the puppeted user will count as an "active" user
# for the purpose of monthly active user tracking - see 'limit_usage_by_mau' etc
# above.)
# #
#track_puppeted_user_ips: true #track_puppeted_user_ips: true
......
...@@ -61,10 +61,18 @@ class ApiConfig(Config): ...@@ -61,10 +61,18 @@ class ApiConfig(Config):
#additional_event_types: #additional_event_types:
# - org.example.custom.event.type # - org.example.custom.event.type
# By default when puppeting another user, the user who has created the # We record the IP address of clients used to access the API for various
# access token for puppeting is tracked. If this is enabled, both # reasons, including displaying it to the user in the "Where you're signed in"
# requests are tracked. Implicitly enables MAU tracking for puppeted users. # dialog.
# Uncomment to also track puppeted user IP's. #
# By default, when puppeting another user via the admin API, the client IP
# address is recorded against the user who created the access token (ie, the
# admin user), and *not* the puppeted user.
#
# Uncomment the following to also record the IP address against the puppeted
# user. (This also means that the puppeted user will count as an "active" user
# for the purpose of monthly active user tracking - see 'limit_usage_by_mau' etc
# above.)
# #
#track_puppeted_user_ips: true #track_puppeted_user_ips: true
""" % { """ % {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment