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
09b29f9c
Commit
09b29f9c
authored
6 years ago
by
Richard van der Hoff
Browse files
Options
Downloads
Patches
Plain Diff
Make RequestMetrics take a raw time rather than a clock
... which is going to make it easier to move around.
parent
8460e48d
No related branches found
Branches containing commit
Tags
v0.18.6-rc3
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
synapse/http/request_metrics.py
+4
-4
4 additions, 4 deletions
synapse/http/request_metrics.py
synapse/http/server.py
+2
-2
2 additions, 2 deletions
synapse/http/server.py
with
6 additions
and
6 deletions
synapse/http/request_metrics.py
+
4
−
4
View file @
09b29f9c
...
...
@@ -100,12 +100,12 @@ response_size = metrics.register_counter(
class
RequestMetrics
(
object
):
def
start
(
self
,
clock
,
name
):
self
.
start
=
clock
.
time_msec
()
def
start
(
self
,
time_msec
,
name
):
self
.
start
=
time_msec
self
.
start_context
=
LoggingContext
.
current_context
()
self
.
name
=
name
def
stop
(
self
,
clock
,
request
):
def
stop
(
self
,
time_msec
,
request
):
context
=
LoggingContext
.
current_context
()
tag
=
""
...
...
@@ -122,7 +122,7 @@ class RequestMetrics(object):
response_count
.
inc
(
request
.
method
,
self
.
name
,
tag
)
response_timer
.
inc_by
(
clock
.
time_msec
()
-
self
.
start
,
request
.
method
,
time_msec
-
self
.
start
,
request
.
method
,
self
.
name
,
tag
)
...
...
This diff is collapsed.
Click to expand it.
synapse/http/server.py
+
2
−
2
View file @
09b29f9c
...
...
@@ -87,7 +87,7 @@ def wrap_request_handler(request_handler, include_metrics=False):
# JsonResource (or a subclass), and JsonResource._async_render
# will update it once it picks a servlet.
servlet_name
=
self
.
__class__
.
__name__
request_metrics
.
start
(
self
.
clock
,
name
=
servlet_name
)
request_metrics
.
start
(
self
.
clock
.
time_msec
()
,
name
=
servlet_name
)
with
request
.
processing
():
try
:
...
...
@@ -138,7 +138,7 @@ def wrap_request_handler(request_handler, include_metrics=False):
finally
:
try
:
request_metrics
.
stop
(
self
.
clock
,
request
self
.
clock
.
time_msec
()
,
request
)
except
Exception
as
e
:
logger
.
warn
(
"
Failed to stop metrics: %r
"
,
e
)
...
...
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