Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Ley
synapse
Commits
1cc22da6
Commit
1cc22da6
authored
8 years ago
by
Paul "LeoNerd" Evans
Browse files
Options
Downloads
Patches
Plain Diff
Set up the process collector during metrics __init__; that way all split-process workers have it
parent
aac13b1f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
synapse/app/homeserver.py
+0
-2
0 additions, 2 deletions
synapse/app/homeserver.py
synapse/metrics/__init__.py
+3
-0
3 additions, 0 deletions
synapse/metrics/__init__.py
with
3 additions
and
2 deletions
synapse/app/homeserver.py
+
0
−
2
View file @
1cc22da6
...
@@ -52,7 +52,6 @@ from synapse.config.homeserver import HomeServerConfig
...
@@ -52,7 +52,6 @@ from synapse.config.homeserver import HomeServerConfig
from
synapse.crypto
import
context_factory
from
synapse.crypto
import
context_factory
from
synapse.util.logcontext
import
LoggingContext
from
synapse.util.logcontext
import
LoggingContext
from
synapse.metrics
import
register_memory_metrics
,
get_metrics_for
from
synapse.metrics
import
register_memory_metrics
,
get_metrics_for
from
synapse.metrics.process_collector
import
register_process_collector
from
synapse.metrics.resource
import
MetricsResource
,
METRICS_PREFIX
from
synapse.metrics.resource
import
MetricsResource
,
METRICS_PREFIX
from
synapse.replication.resource
import
ReplicationResource
,
REPLICATION_PREFIX
from
synapse.replication.resource
import
ReplicationResource
,
REPLICATION_PREFIX
from
synapse.federation.transport.server
import
TransportLayerServer
from
synapse.federation.transport.server
import
TransportLayerServer
...
@@ -338,7 +337,6 @@ def setup(config_options):
...
@@ -338,7 +337,6 @@ def setup(config_options):
hs
.
get_replication_layer
().
start_get_pdu_cache
()
hs
.
get_replication_layer
().
start_get_pdu_cache
()
register_memory_metrics
(
hs
)
register_memory_metrics
(
hs
)
register_process_collector
(
get_metrics_for
(
"
process
"
))
reactor
.
callWhenRunning
(
start
)
reactor
.
callWhenRunning
(
start
)
...
...
This diff is collapsed.
Click to expand it.
synapse/metrics/__init__.py
+
3
−
0
View file @
1cc22da6
...
@@ -24,6 +24,7 @@ from .metric import (
...
@@ -24,6 +24,7 @@ from .metric import (
CounterMetric
,
CallbackMetric
,
DistributionMetric
,
CacheMetric
,
CounterMetric
,
CallbackMetric
,
DistributionMetric
,
CacheMetric
,
MemoryUsageMetric
,
MemoryUsageMetric
,
)
)
from
.process_collector
import
register_process_collector
logger
=
logging
.
getLogger
(
__name__
)
logger
=
logging
.
getLogger
(
__name__
)
...
@@ -121,6 +122,8 @@ reactor_metrics.register_callback(
...
@@ -121,6 +122,8 @@ reactor_metrics.register_callback(
"
gc_counts
"
,
lambda
:
{(
i
,):
v
for
i
,
v
in
enumerate
(
gc
.
get_count
())},
labels
=
[
"
gen
"
]
"
gc_counts
"
,
lambda
:
{(
i
,):
v
for
i
,
v
in
enumerate
(
gc
.
get_count
())},
labels
=
[
"
gen
"
]
)
)
register_process_collector
(
get_metrics_for
(
"
process
"
))
def
runUntilCurrentTimer
(
func
):
def
runUntilCurrentTimer
(
func
):
...
...
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