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
Container Registry
Model registry
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
Maunium
synapse
Commits
4ae73d16
Commit
4ae73d16
authored
9 years ago
by
Erik Johnston
Browse files
Options
Downloads
Plain Diff
Merge pull request #270 from matrix-org/markjh/fix_metrics
Fix the size reported by maxrss.
parents
a5b41b80
709ba99a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/metrics/__init__.py
+7
-4
7 additions, 4 deletions
synapse/metrics/__init__.py
with
7 additions
and
4 deletions
synapse/metrics/__init__.py
+
7
−
4
View file @
4ae73d16
...
...
@@ -17,7 +17,7 @@
from
__future__
import
absolute_import
import
logging
from
resource
import
getrusage
,
getpagesize
,
RUSAGE_SELF
from
resource
import
getrusage
,
RUSAGE_SELF
import
functools
import
os
import
stat
...
...
@@ -100,7 +100,6 @@ def render_all():
# process resource usage
rusage
=
None
PAGE_SIZE
=
getpagesize
()
def
update_resource_metrics
():
...
...
@@ -113,8 +112,8 @@ resource_metrics = get_metrics_for("process.resource")
resource_metrics
.
register_callback
(
"
utime
"
,
lambda
:
rusage
.
ru_utime
*
1000
)
resource_metrics
.
register_callback
(
"
stime
"
,
lambda
:
rusage
.
ru_stime
*
1000
)
#
pag
es
resource_metrics
.
register_callback
(
"
maxrss
"
,
lambda
:
rusage
.
ru_maxrss
*
PAGE_SIZE
)
#
kilobyt
es
resource_metrics
.
register_callback
(
"
maxrss
"
,
lambda
:
rusage
.
ru_maxrss
*
1024
)
TYPES
=
{
stat
.
S_IFSOCK
:
"
SOCK
"
,
...
...
@@ -131,6 +130,10 @@ def _process_fds():
counts
=
{(
k
,):
0
for
k
in
TYPES
.
values
()}
counts
[(
"
other
"
,)]
=
0
# Not every OS will have a /proc/self/fd directory
if
not
os
.
path
.
exists
(
"
/proc/self/fd
"
):
return
counts
for
fd
in
os
.
listdir
(
"
/proc/self/fd
"
):
try
:
s
=
os
.
stat
(
"
/proc/self/fd/%s
"
%
(
fd
))
...
...
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