Bug 1454456
Summary: | CPU allocated and CPU used shouldn't be summed up as CPU Total in Chargeback reports | ||||||
---|---|---|---|---|---|---|---|
Product: | Red Hat CloudForms Management Engine | Reporter: | Nandini Chandra <nachandr> | ||||
Component: | Reporting | Assignee: | Šimon Lukašík <slukasik> | ||||
Status: | CLOSED DUPLICATE | QA Contact: | Nandini Chandra <nachandr> | ||||
Severity: | medium | Docs Contact: | |||||
Priority: | low | ||||||
Version: | 5.8.0 | CC: | cpelland, gtanzill, jhardy, obarenbo, slukasik, yrudman | ||||
Target Milestone: | GA | ||||||
Target Release: | 5.8.1 | ||||||
Hardware: | Unspecified | ||||||
OS: | Unspecified | ||||||
Whiteboard: | chargeback | ||||||
Fixed In Version: | Doc Type: | If docs needed, set a value | |||||
Doc Text: | Story Points: | --- | |||||
Clone Of: | Environment: | ||||||
Last Closed: | 2017-06-06 08:11:17 UTC | Type: | Bug | ||||
Regression: | --- | Mount Type: | --- | ||||
Documentation: | --- | CRM: | |||||
Verified Versions: | Category: | --- | |||||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
Cloudforms Team: | CFME Core | Target Upstream Version: | |||||
Embargoed: | |||||||
Attachments: |
|
Description
Nandini Chandra
2017-05-22 19:48:09 UTC
Created attachment 1281207 [details]
chargeback report
FYI: Fully proper fix requires migration. New commit detected on ManageIQ/manageiq/master: https://github.com/ManageIQ/manageiq/commit/afb10c142b4aafd8136ef8e153e5704d2a15c888 commit afb10c142b4aafd8136ef8e153e5704d2a15c888 Author: Šimon Lukašík <isimluk> AuthorDate: Wed May 31 14:18:43 2017 +0200 Commit: Šimon Lukašík <isimluk> CommitDate: Wed May 31 15:12:58 2017 +0200 Do not calculate useless group metrics https://bugzilla.redhat.com/show_bug.cgi?id=1455690 https://bugzilla.redhat.com/show_bug.cgi?id=1454456 - cpu is useless as it counts usagemhz and vm_numvcpus together - cpu_cores is useless as it only reports cpu_cores - memory is useless as counts used and available together - net_io is useless as it only reports net_ui_rate_avg - disk_io is useless as it only reports disk_usage_rate_avg - storage is useless as it counts used and allocated together - fixed is useless as it counts all the fixed metrics together (that equals to 4 for each day, not useful) app/models/chargeable_field.rb | 3 +-- spec/models/chargeback_vm_spec.rb | 6 ------ 2 files changed, 1 insertion(+), 8 deletions(-) New commit detected on ManageIQ/manageiq/master: https://github.com/ManageIQ/manageiq/commit/22570acb78e1c72752b76d37c45b5f8e4369d6a2 commit 22570acb78e1c72752b76d37c45b5f8e4369d6a2 Author: Šimon Lukašík <isimluk> AuthorDate: Wed May 31 15:24:57 2017 +0200 Commit: Šimon Lukašík <isimluk> CommitDate: Wed May 31 15:24:57 2017 +0200 Do not offer report columns that are useless See https://github.com/ManageIQ/manageiq/pull/15260 to learn why this is not useful. https://bugzilla.redhat.com/show_bug.cgi?id=1455690 https://bugzilla.redhat.com/show_bug.cgi?id=1454456 app/models/chargeback_vm.rb | 6 ------ 1 file changed, 6 deletions(-) New commit detected on ManageIQ/manageiq/euwe: https://github.com/ManageIQ/manageiq/commit/a5c8a79363ef3a470fe1315d6456011bcd47e9a1 commit a5c8a79363ef3a470fe1315d6456011bcd47e9a1 Author: Šimon Lukašík <isimluk> AuthorDate: Wed May 31 14:18:43 2017 +0200 Commit: Šimon Lukašík <isimluk> CommitDate: Thu Jun 8 10:34:42 2017 +0200 Do not calculate useless group metrics https://bugzilla.redhat.com/show_bug.cgi?id=1455690 https://bugzilla.redhat.com/show_bug.cgi?id=1454456 - cpu is useless as it counts usagemhz and vm_numvcpus together - cpu_cores is useless as it only reports cpu_cores - memory is useless as counts used and available together - net_io is useless as it only reports net_ui_rate_avg - disk_io is useless as it only reports disk_usage_rate_avg - storage is useless as it counts used and allocated together - fixed is useless as it counts all the fixed metrics together (that equals to 4 for each day, not useful) (cherry picked from commit afb10c142b4aafd8136ef8e153e5704d2a15c888) Conflicts: app/models/chargeable_field.rb spec/models/chargeback_vm_spec.rb app/models/chargeback_rate_detail.rb | 3 +-- spec/models/chargeback_vm_spec.rb | 6 ------ 2 files changed, 1 insertion(+), 8 deletions(-) The needinfo request[s] on this closed bug have been removed as they have been unresolved for 1000 days |