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
ff88d36d
Commit
ff88d36d
authored
5 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Add metric fo number of state groups in resolution
parent
499d4a32
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/state/__init__.py
+10
-0
10 additions, 0 deletions
synapse/state/__init__.py
with
10 additions
and
0 deletions
synapse/state/__init__.py
+
10
−
0
View file @
ff88d36d
...
...
@@ -21,6 +21,7 @@ from six import iteritems, itervalues
import
attr
from
frozendict
import
frozendict
from
prometheus_client
import
Histogram
from
twisted.internet
import
defer
...
...
@@ -37,6 +38,13 @@ from synapse.util.metrics import Measure
logger
=
logging
.
getLogger
(
__name__
)
# Metrics for number of state groups involved in a resolution.
state_groups_histogram
=
Histogram
(
"
synapse_state_number_state_groups
"
,
""
,
buckets
=
(
0
,
1
,
2
,
3
,
5
,
7
,
10
,
20
,
50
,
100
,
"
+Inf
"
),
)
KeyStateTuple
=
namedtuple
(
"
KeyStateTuple
"
,
(
"
context
"
,
"
type
"
,
"
state_key
"
))
...
...
@@ -364,6 +372,8 @@ class StateHandler(object):
room_id
,
event_ids
)
state_groups_histogram
.
observe
(
len
(
state_groups_ids
))
if
len
(
state_groups_ids
)
==
0
:
defer
.
returnValue
(
_StateCacheEntry
(
state
=
{},
...
...
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