Skip to content

Commit

Permalink
Fix average memory usage
Browse files Browse the repository at this point in the history
Signed-off-by: Michal Hajas <[email protected]>
  • Loading branch information
mhajas committed Nov 6, 2024
1 parent 56f2bb4 commit cbc1c5f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@
"uid": "PBFA97CFB590B2093"
},
"editorMode": "code",
"expr": "sum_over_time((sum by (pod) (jvm_memory_committed_bytes))[$__range:$__interval]) / count_over_time((sum by (pod) (jvm_memory_committed_bytes))[$__range:$__interval]) ",
"expr": "sum_over_time((sum by (pod) (jvm_memory_used_bytes))[$__range:$__interval]) / count_over_time((sum by (pod) (jvm_memory_used_bytes))[$__range:$__interval]) ",
"hide": false,
"legendFormat": "__auto",
"range": true,
Expand Down

0 comments on commit cbc1c5f

Please sign in to comment.