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
ea0152b1
Commit
ea0152b1
authored
8 years ago
by
Erik Johnston
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #2104 from matrix-org/erikj/metrics_tcp
Rearrange TCP replication metrics
parents
a5c401bd
3f213d90
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/replication/tcp/protocol.py
+38
-7
38 additions, 7 deletions
synapse/replication/tcp/protocol.py
with
38 additions
and
7 deletions
synapse/replication/tcp/protocol.py
+
38
−
7
View file @
ea0152b1
...
...
@@ -51,6 +51,7 @@ indicate which side is sending, these are *not* included on the wire::
from
twisted.internet
import
defer
from
twisted.protocols.basic
import
LineOnlyReceiver
from
twisted.python.failure
import
Failure
from
commands
import
(
COMMAND_MAP
,
VALID_CLIENT_COMMANDS
,
VALID_SERVER_COMMANDS
,
...
...
@@ -60,6 +61,7 @@ from commands import (
from
streams
import
STREAMS_MAP
from
synapse.util.stringutils
import
random_string
from
synapse.metrics.metric
import
CounterMetric
import
logging
import
synapse.metrics
...
...
@@ -69,11 +71,8 @@ import fcntl
metrics
=
synapse
.
metrics
.
get_metrics_for
(
__name__
)
inbound_commands_counter
=
metrics
.
register_counter
(
"
inbound_commands
"
,
labels
=
[
"
command
"
,
"
name
"
,
"
conn_id
"
],
)
outbound_commands_counter
=
metrics
.
register_counter
(
"
outbound_commands
"
,
labels
=
[
"
command
"
,
"
name
"
,
"
conn_id
"
],
connection_close_counter
=
metrics
.
register_counter
(
"
close_reason
"
,
labels
=
[
"
reason_type
"
],
)
...
...
@@ -135,6 +134,13 @@ class BaseReplicationStreamProtocol(LineOnlyReceiver):
# The LoopingCall for sending pings.
self
.
_send_ping_loop
=
None
self
.
inbound_commands_counter
=
CounterMetric
(
"
inbound_commands
"
,
labels
=
[
"
command
"
],
)
self
.
outbound_commands_counter
=
CounterMetric
(
"
outbound_commands
"
,
labels
=
[
"
command
"
],
)
def
connectionMade
(
self
):
logger
.
info
(
"
[%s] Connection established
"
,
self
.
id
())
...
...
@@ -193,7 +199,7 @@ class BaseReplicationStreamProtocol(LineOnlyReceiver):
self
.
last_received_command
=
self
.
clock
.
time_msec
()
inbound_commands_counter
.
inc
(
cmd_name
,
self
.
name
,
self
.
conn_id
)
self
.
inbound_commands_counter
.
inc
(
cmd_name
)
cmd_cls
=
COMMAND_MAP
[
cmd_name
]
try
:
...
...
@@ -242,7 +248,7 @@ class BaseReplicationStreamProtocol(LineOnlyReceiver):
self
.
_queue_command
(
cmd
)
return
outbound_commands_counter
.
inc
(
cmd
.
NAME
,
self
.
name
,
self
.
conn_id
)
self
.
outbound_commands_counter
.
inc
(
cmd
.
NAME
)
string
=
"
%s %s
"
%
(
cmd
.
NAME
,
cmd
.
to_line
(),)
if
"
\n
"
in
string
:
...
...
@@ -307,6 +313,10 @@ class BaseReplicationStreamProtocol(LineOnlyReceiver):
def
connectionLost
(
self
,
reason
):
logger
.
info
(
"
[%s] Replication connection closed: %r
"
,
self
.
id
(),
reason
)
if
isinstance
(
reason
,
Failure
):
connection_close_counter
.
inc
(
reason
.
type
.
__name__
)
else
:
connection_close_counter
.
inc
(
reason
.
__class__
.
__name__
)
try
:
# Remove us from list of connections to be monitored
...
...
@@ -604,3 +614,24 @@ metrics.register_callback(
},
labels
=
[
"
name
"
,
"
conn_id
"
],
)
metrics
.
register_callback
(
"
inbound_commands
"
,
lambda
:
{
(
k
[
0
],
p
.
name
,
p
.
conn_id
):
count
for
p
in
connected_connections
for
k
,
count
in
p
.
inbound_commands_counter
.
counts
.
iteritems
()
},
labels
=
[
"
command
"
,
"
name
"
,
"
conn_id
"
],
)
metrics
.
register_callback
(
"
outbound_commands
"
,
lambda
:
{
(
k
[
0
],
p
.
name
,
p
.
conn_id
):
count
for
p
in
connected_connections
for
k
,
count
in
p
.
outbound_commands_counter
.
counts
.
iteritems
()
},
labels
=
[
"
command
"
,
"
name
"
,
"
conn_id
"
],
)
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