mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Add a locality to a few presence metrics (#15952)
This commit is contained in:
parent
1c802de626
commit
199c270947
1
changelog.d/15952.misc
Normal file
1
changelog.d/15952.misc
Normal file
@ -0,0 +1 @@
|
|||||||
|
Update presence metrics to differentiate remote vs local users.
|
@ -95,13 +95,12 @@ bump_active_time_counter = Counter("synapse_handler_presence_bump_active_time",
|
|||||||
get_updates_counter = Counter("synapse_handler_presence_get_updates", "", ["type"])
|
get_updates_counter = Counter("synapse_handler_presence_get_updates", "", ["type"])
|
||||||
|
|
||||||
notify_reason_counter = Counter(
|
notify_reason_counter = Counter(
|
||||||
"synapse_handler_presence_notify_reason", "", ["reason"]
|
"synapse_handler_presence_notify_reason", "", ["locality", "reason"]
|
||||||
)
|
)
|
||||||
state_transition_counter = Counter(
|
state_transition_counter = Counter(
|
||||||
"synapse_handler_presence_state_transition", "", ["from", "to"]
|
"synapse_handler_presence_state_transition", "", ["locality", "from", "to"]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
# If a user was last active in the last LAST_ACTIVE_GRANULARITY, consider them
|
# If a user was last active in the last LAST_ACTIVE_GRANULARITY, consider them
|
||||||
# "currently_active"
|
# "currently_active"
|
||||||
LAST_ACTIVE_GRANULARITY = 60 * 1000
|
LAST_ACTIVE_GRANULARITY = 60 * 1000
|
||||||
@ -567,8 +566,8 @@ class WorkerPresenceHandler(BasePresenceHandler):
|
|||||||
for new_state in states:
|
for new_state in states:
|
||||||
old_state = self.user_to_current_state.get(new_state.user_id)
|
old_state = self.user_to_current_state.get(new_state.user_id)
|
||||||
self.user_to_current_state[new_state.user_id] = new_state
|
self.user_to_current_state[new_state.user_id] = new_state
|
||||||
|
is_mine = self.is_mine_id(new_state.user_id)
|
||||||
if not old_state or should_notify(old_state, new_state):
|
if not old_state or should_notify(old_state, new_state, is_mine):
|
||||||
state_to_notify.append(new_state)
|
state_to_notify.append(new_state)
|
||||||
|
|
||||||
stream_id = token
|
stream_id = token
|
||||||
@ -1499,23 +1498,31 @@ class PresenceHandler(BasePresenceHandler):
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def should_notify(old_state: UserPresenceState, new_state: UserPresenceState) -> bool:
|
def should_notify(
|
||||||
|
old_state: UserPresenceState, new_state: UserPresenceState, is_mine: bool
|
||||||
|
) -> bool:
|
||||||
"""Decides if a presence state change should be sent to interested parties."""
|
"""Decides if a presence state change should be sent to interested parties."""
|
||||||
|
user_location = "remote"
|
||||||
|
if is_mine:
|
||||||
|
user_location = "local"
|
||||||
|
|
||||||
if old_state == new_state:
|
if old_state == new_state:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
if old_state.status_msg != new_state.status_msg:
|
if old_state.status_msg != new_state.status_msg:
|
||||||
notify_reason_counter.labels("status_msg_change").inc()
|
notify_reason_counter.labels(user_location, "status_msg_change").inc()
|
||||||
return True
|
return True
|
||||||
|
|
||||||
if old_state.state != new_state.state:
|
if old_state.state != new_state.state:
|
||||||
notify_reason_counter.labels("state_change").inc()
|
notify_reason_counter.labels(user_location, "state_change").inc()
|
||||||
state_transition_counter.labels(old_state.state, new_state.state).inc()
|
state_transition_counter.labels(
|
||||||
|
user_location, old_state.state, new_state.state
|
||||||
|
).inc()
|
||||||
return True
|
return True
|
||||||
|
|
||||||
if old_state.state == PresenceState.ONLINE:
|
if old_state.state == PresenceState.ONLINE:
|
||||||
if new_state.currently_active != old_state.currently_active:
|
if new_state.currently_active != old_state.currently_active:
|
||||||
notify_reason_counter.labels("current_active_change").inc()
|
notify_reason_counter.labels(user_location, "current_active_change").inc()
|
||||||
return True
|
return True
|
||||||
|
|
||||||
if (
|
if (
|
||||||
@ -1524,12 +1531,16 @@ def should_notify(old_state: UserPresenceState, new_state: UserPresenceState) ->
|
|||||||
):
|
):
|
||||||
# Only notify about last active bumps if we're not currently active
|
# Only notify about last active bumps if we're not currently active
|
||||||
if not new_state.currently_active:
|
if not new_state.currently_active:
|
||||||
notify_reason_counter.labels("last_active_change_online").inc()
|
notify_reason_counter.labels(
|
||||||
|
user_location, "last_active_change_online"
|
||||||
|
).inc()
|
||||||
return True
|
return True
|
||||||
|
|
||||||
elif new_state.last_active_ts - old_state.last_active_ts > LAST_ACTIVE_GRANULARITY:
|
elif new_state.last_active_ts - old_state.last_active_ts > LAST_ACTIVE_GRANULARITY:
|
||||||
# Always notify for a transition where last active gets bumped.
|
# Always notify for a transition where last active gets bumped.
|
||||||
notify_reason_counter.labels("last_active_change_not_online").inc()
|
notify_reason_counter.labels(
|
||||||
|
user_location, "last_active_change_not_online"
|
||||||
|
).inc()
|
||||||
return True
|
return True
|
||||||
|
|
||||||
return False
|
return False
|
||||||
@ -1989,7 +2000,7 @@ def handle_update(
|
|||||||
)
|
)
|
||||||
|
|
||||||
# Check whether the change was something worth notifying about
|
# Check whether the change was something worth notifying about
|
||||||
if should_notify(prev_state, new_state):
|
if should_notify(prev_state, new_state, is_mine):
|
||||||
new_state = new_state.copy_and_replace(last_federation_update_ts=now)
|
new_state = new_state.copy_and_replace(last_federation_update_ts=now)
|
||||||
persist_and_notify = True
|
persist_and_notify = True
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user