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
891dfd90
Commit
891dfd90
authored
9 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Fix pending_calls metric to not lie
parent
3d1cdda7
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/metrics/__init__.py
+18
-3
18 additions, 3 deletions
synapse/metrics/__init__.py
with
18 additions
and
3 deletions
synapse/metrics/__init__.py
+
18
−
3
View file @
891dfd90
...
...
@@ -158,18 +158,33 @@ def runUntilCurrentTimer(func):
@functools.wraps
(
func
)
def
f
(
*
args
,
**
kwargs
):
pending_calls
=
len
(
reactor
.
getDelayedCalls
())
now
=
reactor
.
seconds
()
num_pending
=
0
# _newTimedCalls is one long list of *all* pending calls. Below loop
# is based off of impl of reactor.runUntilCurrent
for
p
in
reactor
.
_newTimedCalls
:
if
p
.
time
>
now
:
break
if
p
.
delayed_time
>
0
:
continue
num_pending
+=
1
num_pending
+=
len
(
reactor
.
threadCallQueue
)
start
=
time
.
time
()
*
1000
ret
=
func
(
*
args
,
**
kwargs
)
end
=
time
.
time
()
*
1000
tick_time
.
inc_by
(
end
-
start
)
pending_calls_metric
.
inc_by
(
pending
_calls
)
pending_calls_metric
.
inc_by
(
num_
pending
)
return
ret
return
f
if
hasattr
(
reactor
,
"
runUntilCurrent
"
):
if
hasattr
(
reactor
,
"
runUntilCurrent
"
)
and
hasattr
(
reactor
,
"
_newTimedCalls
"
)
:
# runUntilCurrent is called when we have pending calls. It is called once
# per iteratation after fd polling.
reactor
.
runUntilCurrent
=
runUntilCurrentTimer
(
reactor
.
runUntilCurrent
)
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