Skip to content

Commit

Permalink
pmrep conf: minor tweaks to sync with sysstat 12.7.5
Browse files Browse the repository at this point in the history
* vmstat -w now includes CPU guest time
* sar -n ETCP column label has changed
* pidstat field width minor tweak

Checked against the latest sysstat version, 12.7.5.
  • Loading branch information
myllynen committed Apr 10, 2024
1 parent 1fa3843 commit c16b92b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion qa/1180.out
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ Report created: ...

# Wed Mar 7 16:36:43.514833 2018
# TCP statistics
active/s passive/s iseg/s oseg/s atmptf/s estres/s retrans/s isegerr/s orsts/s
active/s passive/s iseg/s oseg/s atmptf/s estres/s retrseg/s isegerr/s orsts/s
16:36:43 N/A N/A N/A N/A N/A N/A N/A N/A N/A
17:06:43 N/A N/A N/A N/A N/A N/A N/A N/A N/A
17:36:43 0.00 0.00 0.57 0.40 0.00 0.00 0.00 0.00 0.00
Expand Down
6 changes: 3 additions & 3 deletions qa/1428.out
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ STAMP 323 20 12 0 0 1

# DATE
# TCP statistics
active/s passive/s iseg/s oseg/s atmptf/s estres/s retrans/s isegerr/s orsts/s
active/s passive/s iseg/s oseg/s atmptf/s estres/s retrseg/s isegerr/s orsts/s
STAMP N/A N/A N/A N/A N/A N/A N/A N/A N/A
STAMP N/A N/A N/A N/A N/A N/A N/A N/A N/A
STAMP 0.00 0.00 42.00 41.50 0.00 0.00 0.00 0.00 0.00
Expand Down Expand Up @@ -701,7 +701,7 @@ STAMP 323 20 12 0 0 1

# DATE
# TCP statistics
active/s passive/s iseg/s oseg/s atmptf/s estres/s retrans/s isegerr/s orsts/s
active/s passive/s iseg/s oseg/s atmptf/s estres/s retrseg/s isegerr/s orsts/s
STAMP N/A N/A N/A N/A N/A N/A N/A N/A N/A
STAMP N/A N/A N/A N/A N/A N/A N/A N/A N/A
STAMP 0.00 0.00 42.00 41.50 0.00 0.00 0.00 0.00 0.00
Expand Down Expand Up @@ -1122,7 +1122,7 @@ STAMP 323 20 12 0 0 1

# DATE
# TCP statistics
active/s passive/s iseg/s oseg/s atmptf/s estres/s retrans/s isegerr/s orsts/s
active/s passive/s iseg/s oseg/s atmptf/s estres/s retrseg/s isegerr/s orsts/s
STAMP N/A N/A N/A N/A N/A N/A N/A N/A N/A
STAMP N/A N/A N/A N/A N/A N/A N/A N/A N/A
STAMP 0.00 0.00 42.00 41.50 0.00 0.00 0.00 0.00 0.00
Expand Down
4 changes: 2 additions & 2 deletions src/pmrep/conf/pidstat.conf
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ timestamp = yes
precision = 2
delimiter = " "
repeat_header = auto
colxrow = " PID"
proc.id.uid = UID,,,,8
colxrow = " PID"
proc.id.uid = UID,,,,11
upct = proc.psinfo.cpu.util.user
upct.label = %%usr
upct.formula = 100 * rate(proc.psinfo.utime)
Expand Down
2 changes: 1 addition & 1 deletion src/pmrep/conf/sar.conf
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ network.tcp.insegs = iseg/s,,,,
network.tcp.outsegs = oseg/s,,,,
network.tcp.attemptfails = atmptf/s,,,,
network.tcp.estabresets = estres/s,,,,
network.tcp.retranssegs = retrans/s,,,,
network.tcp.retranssegs = retrseg/s,,,,
network.tcp.inerrs = isegerr/s,,,,
network.tcp.outrsts = orsts/s,,,,

Expand Down
5 changes: 5 additions & 0 deletions src/pmrep/conf/vmstat.conf
Original file line number Diff line number Diff line change
Expand Up @@ -171,3 +171,8 @@ steal.label = st
steal.formula = 100 * kernel.all.cpu.steal / hinv.ncpu
steal.unit = s
steal.width = 4
guest = kernel.all.cpu.guestp
guest.label = gu
guest.formula = 100 * kernel.all.cpu.guest / hinv.ncpu
guest.unit = s
guest.width = 4

0 comments on commit c16b92b

Please sign in to comment.