You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the query and response from the Cryostat Web "MBean Metrics" dashboard layout template.
Other queries are seemingly working as intended, but the heapMemoryUsagePercent always returns this almost-0 value: "heapMemoryUsagePercent": 5e-324,.
Expected Behavior
This query should either return a sensible value, or else it should be removed from the API if the value can no longer be sourced or calculated.
I guess that this behaviour likely changed in cryostatio/cryostat-core#362 . Maybe there are some leads there to figure out if or how the behaviour changed on the JMC side.
Steps To Reproduce
No response
Environment
No response
Anything else?
The other keys in the memory query, ex. heapMemoryUsage or nonHeapMemoryUsage, correspond to MemoryMXBean attributes. heapMemoryUsagePercent does not.
I believe this pseudo-attribute was previously injected by JMC code:
Current Behavior
This is the query and response from the Cryostat Web "MBean Metrics" dashboard layout template.
Other queries are seemingly working as intended, but the
heapMemoryUsagePercent
always returns this almost-0 value:"heapMemoryUsagePercent": 5e-324,
.Expected Behavior
This query should either return a sensible value, or else it should be removed from the API if the value can no longer be sourced or calculated.
I guess that this behaviour likely changed in cryostatio/cryostat-core#362 . Maybe there are some leads there to figure out if or how the behaviour changed on the JMC side.
Steps To Reproduce
No response
Environment
No response
Anything else?
The other keys in the memory query, ex.
heapMemoryUsage
ornonHeapMemoryUsage
, correspond to MemoryMXBean attributes.heapMemoryUsagePercent
does not.I believe this pseudo-attribute was previously injected by JMC code:
https://stackoverflow.com/questions/68813986/how-heapmemoryusagepercent-is-calculated-in-jdk-mission-control-jmc
In Cryostat Core, if this attribute is not present, we default it to the
Double.MIN_VALUE
:The text was updated successfully, but these errors were encountered: