1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-24 09:57:09 +00:00

Plugins jstat__*: add format examples

This commit is contained in:
Lars Kruse 2018-07-04 20:29:52 +02:00
parent 67f9783780
commit 0ddc7e2fec
3 changed files with 9 additions and 0 deletions

View file

@ -143,6 +143,9 @@ print_stats() {
print "Permanent_Used.value " PU * 1024;
print "Permanent_Free.value " PF * 1024; }'
else
# example output of jstat for Java 1.8:
# S0C S1C S0U S1U EC EU OC OU MC MU CCSC CCSU YGC YGCT FGC FGCT GCT
# 2048.0 2048.0 0.0 1344.0 694784.0 145013.5 1398272.0 414857.1 102400.0 96308.0 12544.0 11240.1 979 20.997 5 2.705 23.702
# shellcheck disable=SC2016
awk_script='{
S0C = $1;