-
Notifications
You must be signed in to change notification settings - Fork 6.5k
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
Support collect ZGC memory pool metrics #11432
Support collect ZGC memory pool metrics #11432
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please share the screenshots about what is actually the diff.
"i": "5", | ||
"type": "Widget", | ||
"widget": { | ||
"title": "JVM Memory Detail (MB)" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you adding a new widget?
This name doesn't seem diff from other GC model.
instance_jvm_memory_pool_code_cache = from(ServiceInstanceJVMMemoryPool.used).filter(poolType == MemoryPoolType.CODE_CACHE_USAGE).longAvg(); | ||
instance_jvm_memory_pool_newgen = from(ServiceInstanceJVMMemoryPool.used).filter(poolType == MemoryPoolType.NEWGEN_USAGE).longAvg(); | ||
instance_jvm_memory_pool_oldgen = from(ServiceInstanceJVMMemoryPool.used).filter(poolType == MemoryPoolType.OLDGEN_USAGE).longAvg(); | ||
instance_jvm_memory_pool_survivor = from(ServiceInstanceJVMMemoryPool.used).filter(poolType == MemoryPoolType.SURVIVOR_USAGE).longAvg(); | ||
instance_jvm_memory_pool_permgen = from(ServiceInstanceJVMMemoryPool.used).filter(poolType == MemoryPoolType.PERMGEN_USAGE).longAvg(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why these? All thses are not new metrics.
I am not following.
Please make the submodule correctly, pointing to the master branch commit ID. |
1 similar comment
Please make the submodule correctly, pointing to the master branch commit ID. |
As you have updated UI, I think there is UI side commit gap too. Please update the UI part change logs accordingly. |
…kywalking into feature/20231013_zgc_support
Still missing one. Please check from git history https://github.com/apache/skywalking-booster-ui/commits/main |
Which one missing? There are no changes in the skywalking-booster-ui. |
The one I was showing above. It wasn't synced, but you are syncing sub module now, so, you need to add this to change log as well. |
* Support collect ZGC memory pool metrics * submodule update
CHANGES
log.for UI setting change, see skywalking-java #622