Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
9b13817e
Commit
9b13817e
authored
6 years ago
by
Neil Johnson
Browse files
Options
Downloads
Patches
Plain Diff
factor out metrics from __init__ to app/homeserver
parent
251e6c12
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
synapse/app/homeserver.py
+19
-1
19 additions, 1 deletion
synapse/app/homeserver.py
synapse/storage/__init__.py
+13
-24
13 additions, 24 deletions
synapse/storage/__init__.py
with
32 additions
and
25 deletions
synapse/app/homeserver.py
+
19
−
1
View file @
9b13817e
...
...
@@ -18,6 +18,7 @@ import logging
import
os
import
sys
from
prometheus_client
import
Gauge
from
six
import
iteritems
from
twisted.application
import
service
...
...
@@ -299,7 +300,12 @@ class SynapseHomeServer(HomeServer):
except
IncorrectDatabaseSetup
as
e
:
quit_with_error
(
e
.
message
)
# Gauges to expose monthly active user control metrics
current_mau_gauge
=
Gauge
(
"
synapse_admin_current_mau
"
,
"
Current MAU
"
)
max_mau_value_gauge
=
Gauge
(
"
synapse_admin_max_mau_value
"
,
"
MAU Limit
"
)
limit_usage_by_mau_gauge
=
Gauge
(
"
synapse_admin_limit_usage_by_mau
"
,
"
MAU Limiting enabled
"
)
def
setup
(
config_options
):
"""
Args:
...
...
@@ -512,6 +518,18 @@ def run(hs):
# table will decrease
clock
.
looping_call
(
generate_user_daily_visit_stats
,
5
*
60
*
1000
)
def
generate_monthly_active_users
():
count
=
0
if
hs
.
config
.
limit_usage_by_mau
:
count
=
hs
.
get_datastore
().
count_monthly_users
()
logger
.
info
(
"
NJ count is %d
"
%
(
count
,))
current_mau_gauge
.
set
(
float
(
count
))
max_mau_value_gauge
.
set
(
float
(
hs
.
config
.
max_mau_value
))
limit_usage_by_mau_gauge
.
set
(
float
(
hs
.
config
.
limit_usage_by_mau
))
generate_monthly_active_users
()
clock
.
looping_call
(
generate_monthly_active_users
,
5
*
60
*
1000
)
if
hs
.
config
.
report_stats
:
logger
.
info
(
"
Scheduling stats reporting for 3 hour intervals
"
)
clock
.
looping_call
(
start_phone_stats_home
,
3
*
60
*
60
*
1000
)
...
...
This diff is collapsed.
Click to expand it.
synapse/storage/__init__.py
+
13
−
24
View file @
9b13817e
...
...
@@ -19,7 +19,6 @@ import logging
import
time
from
dateutil
import
tz
from
prometheus_client
import
Gauge
from
synapse.api.constants
import
PresenceState
from
synapse.storage.devices
import
DeviceStore
...
...
@@ -61,14 +60,6 @@ from .util.id_generators import ChainedIdGenerator, IdGenerator, StreamIdGenerat
logger
=
logging
.
getLogger
(
__name__
)
# Gauges to expose monthly active user control metrics
current_mau_gauge
=
Gauge
(
"
synapse_admin_current_mau
"
,
"
Current MAU
"
)
max_mau_value_gauge
=
Gauge
(
"
synapse_admin_max_mau_value
"
,
"
MAU Limit
"
)
limit_usage_by_mau_gauge
=
Gauge
(
"
synapse_admin_limit_usage_by_mau
"
,
"
MAU Limiting enabled
"
)
class
DataStore
(
RoomMemberStore
,
RoomStore
,
RegistrationStore
,
StreamStore
,
ProfileStore
,
PresenceStore
,
TransactionStore
,
...
...
@@ -102,6 +93,7 @@ class DataStore(RoomMemberStore, RoomStore,
self
.
_clock
=
hs
.
get_clock
()
self
.
database_engine
=
hs
.
database_engine
self
.
db_conn
=
db_conn
self
.
_stream_id_gen
=
StreamIdGenerator
(
db_conn
,
"
events
"
,
"
stream_ordering
"
,
extra_tables
=
[(
"
local_invites
"
,
"
stream_id
"
)]
...
...
@@ -282,22 +274,19 @@ class DataStore(RoomMemberStore, RoomStore,
returns:
int: count of current monthly active users
"""
def
_count_monthly_users
(
txn
):
thirty_days_ago
=
int
(
self
.
_clock
.
time_msec
())
-
(
1000
*
60
*
60
*
24
*
30
)
sql
=
"""
SELECT COUNT(*) FROM user_ips
WHERE last_seen > ?
"""
txn
.
execute
(
sql
,
(
thirty_days_ago
,))
count
,
=
txn
.
fetchone
()
self
.
_current_mau
=
count
current_mau_gauge
.
set
(
self
.
_current_mau
)
max_mau_value_gauge
.
set
(
self
.
hs
.
config
.
max_mau_value
)
limit_usage_by_mau_gauge
.
set
(
self
.
hs
.
config
.
limit_usage_by_mau
)
logger
.
info
(
"
calling mau stats
"
)
return
count
return
self
.
runInteraction
(
"
count_monthly_users
"
,
_count_monthly_users
)
thirty_days_ago
=
int
(
self
.
_clock
.
time_msec
())
-
(
1000
*
60
*
60
*
24
*
30
)
sql
=
"""
SELECT COALESCE(count(*), 0) FROM (
SELECT user_id FROM user_ips
WHERE last_seen > ?
GROUP BY user_id
) u
"""
txn
=
self
.
db_conn
.
cursor
()
txn
.
execute
(
sql
,
(
thirty_days_ago
,))
count
,
=
txn
.
fetchone
()
return
count
def
count_r30_users
(
self
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment