Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
slapos.core
Commits
2385dc7d
Commit
2385dc7d
authored
Nov 27, 2015
by
Alain Takoudjou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slapos collect: do not divide cpu_load value by the number of cpu core
parent
807257f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
slapos/collect/reporter.py
slapos/collect/reporter.py
+1
-2
No files found.
slapos/collect/reporter.py
View file @
2385dc7d
...
...
@@ -191,14 +191,13 @@ class ConsumptionReport(object):
reference
=
self
.
computer_id
,
category
=
""
)
core_amount
=
psutil
.
cpu_count
()
for
user
in
self
.
user_list
:
partition_cpu_load_percent
=
self
.
_getPartitionCPULoadAverage
(
user
,
date_scope
)
if
partition_cpu_load_percent
is
not
None
:
journal
.
newMovement
(
transaction
,
resource
=
"service_module/cpu_load_percent"
,
title
=
"CPU Load Percent Average for %s"
%
(
user
),
quantity
=
str
(
partition_cpu_load_percent
/
core_amount
),
quantity
=
str
(
partition_cpu_load_percent
),
reference
=
user
,
category
=
""
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment