-
Notifications
You must be signed in to change notification settings - Fork 729
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: Added changes to display CPU Governors in Javacore #3348
Open
bharathappali
wants to merge
1
commit into
eclipse-openj9:master
Choose a base branch
from
bharathappali:javacore-cpu-governors
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
WIP: Added changes to display CPU Governors in Javacore #3348
bharathappali
wants to merge
1
commit into
eclipse-openj9:master
from
bharathappali:javacore-cpu-governors
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bharathappali
force-pushed
the
javacore-cpu-governors
branch
3 times, most recently
from
October 23, 2018 08:20
f8c252e
to
96052e9
Compare
bharathappali
force-pushed
the
javacore-cpu-governors
branch
2 times, most recently
from
November 2, 2018 07:17
e2af616
to
4526c6a
Compare
Refactoring the code. Will be updating for review after the code changes are done. |
bharathappali
force-pushed
the
javacore-cpu-governors
branch
2 times, most recently
from
December 10, 2018 08:04
2b22efc
to
781af4e
Compare
bharathappali
force-pushed
the
javacore-cpu-governors
branch
3 times, most recently
from
December 19, 2018 11:16
2caf761
to
ff13e31
Compare
bharathappali
force-pushed
the
javacore-cpu-governors
branch
2 times, most recently
from
January 7, 2019 04:38
2085e58
to
3299404
Compare
bharathappali
force-pushed
the
javacore-cpu-governors
branch
2 times, most recently
from
January 22, 2019 10:04
a8653f7
to
4b8ed32
Compare
bharathappali
force-pushed
the
javacore-cpu-governors
branch
2 times, most recently
from
March 13, 2019 02:54
d49d71c
to
132a6ca
Compare
DanHeidinga
modified the milestones:
Release 0.14.0 (Java 8, 11, 12) April refresh,
Release 0.15 (Java 8, 11, 12) July refresh
Mar 20, 2019
Signed-off-by: bharathappali <[email protected]>
bharathappali
force-pushed
the
javacore-cpu-governors
branch
from
April 23, 2019 06:41
132a6ca
to
03bd4ca
Compare
DanHeidinga
modified the milestones:
Release 0.15 (Java 8, 11, 12) July refresh,
Release 0.16 (Java 13)
Jun 18, 2019
Moving forward until this picks up again. |
pshipton
modified the milestones:
Release 0.16 (Java 13),
Release 0.18 (Java 8, 11, 13) Jan refresh
Jul 8, 2019
Can one of the admins verify this patch? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
As stated in the issue #2838 CPU Governors in linux might be useful for debugging purposes and thought it would be good to have that information in javacore.
The current changes adds a J9 Port Library api
j9sysinfo_get_cpu_governor_info
which fetch the CPU governor information and this will be called inruntime/rasdump/javadump.cpp
inwriteCPUInfo
function.These lines are added after
CPU Information
to get theCPU Governor Details
Example
In the above example there are 4 cpu's and each of them are having their cpu scaling governor set to powersave
Note: This features are work in progress as the way of information representation may have changes.
Please kindly add your views on this PR or in the issue #2838
FYI - @ashu-mehra @DanHeidinga
Thanks
Doc issue eclipse-openj9/openj9-docs#136
Signed-off-by: bharathappali [email protected]