From 777d60a39ce57230299c82f505014756d9597f68 Mon Sep 17 00:00:00 2001 From: Sebastien GODARD Date: Mon, 30 Sep 2019 15:48:39 +0200 Subject: [PATCH] simtest: Make more tests independent from timezone value Signed-off-by: Sebastien GODARD --- sa.h | 3 +- tests/00100 | 1 + tests/00110 | 2 +- tests/00120 | 2 +- tests/00140 | 2 +- tests/00150 | 2 ++ tests/00571 | 10 +----- tests/01000 | 2 +- tests/01200 | 2 ++ tests/01600 | 2 +- tests/TLIST | 20 ++++++------ tests/expected.sadf-r | 74 +++++++++++++++++++++---------------------- 12 files changed, 60 insertions(+), 62 deletions(-) diff --git a/sa.h b/sa.h index db74fd6..df46db1 100644 --- a/sa.h +++ b/sa.h @@ -730,7 +730,8 @@ struct record_header { unsigned char record_type; /* * Timestamp: Hour (0-23), minute (0-59) and second (0-59). - * Used to determine TRUE time (immutable, non locale dependent time). + * Used to determine TRUE time. + * Hour value depends in fact on timezone (TZ variable) value. */ unsigned char hour; unsigned char minute; diff --git a/tests/00100 b/tests/00100 index 484a7af..9d69d57 100644 --- a/tests/00100 +++ b/tests/00100 @@ -1,4 +1,5 @@ rm -f tests/data.tmp +TZ=GMT rm -f tests/root ln -s root1 tests/root diff --git a/tests/00110 b/tests/00110 index c356d4b..e5accdb 100644 --- a/tests/00110 +++ b/tests/00110 @@ -1,3 +1,3 @@ rm -f tests/root ln -s root1 tests/root -./sadc --unix_time=1555594649 tests/data.tmp +TZ=GMT ./sadc --unix_time=1555594649 tests/data.tmp diff --git a/tests/00120 b/tests/00120 index 9c41238..9ba6a4a 100644 --- a/tests/00120 +++ b/tests/00120 @@ -1 +1 @@ -./sadc --unix_time=1555594749 -C "Testing sysstat!" tests/data.tmp +TZ=GMT ./sadc --unix_time=1555594749 -C "Testing sysstat!" tests/data.tmp diff --git a/tests/00140 b/tests/00140 index c50db38..31593d7 100644 --- a/tests/00140 +++ b/tests/00140 @@ -1,4 +1,4 @@ rm -f tests/root ln -s root6 tests/root -./sadc --unix_time=1555595649 tests/data.tmp +TZ=GMT ./sadc --unix_time=1555595649 tests/data.tmp diff --git a/tests/00150 b/tests/00150 index 0dd5e38..b2df0ec 100644 --- a/tests/00150 +++ b/tests/00150 @@ -1,3 +1,5 @@ +TZ=GMT + rm -f tests/root ln -s root6 tests/root ./sadc --unix_time=1555595655 -S XALL tests/data.tmp 1 1 >/dev/null diff --git a/tests/00571 b/tests/00571 index e90913f..888e09e 100644 --- a/tests/00571 +++ b/tests/00571 @@ -1,9 +1 @@ -diff -u tests/out.sadf-r.tmp tests/expected.sadf-r && exit 0 -ls -l tests/out.sadf-r.tmp -sum tests/out.sadf-r.tmp -ls -l tests/expected.sadf-r -sum tests/expected.sadf-r -cmp -l tests/out.sadf-r.tmp tests/expected.sadf-r -echo -cmp -l tests/out.sadf-r.tmp tests/expected.sadf-r | gawk '{printf "%08X %02X %02X\n", $1, strtonum(0$2), strtonum(0$3)}' -exit 1 +diff -u tests/out.sadf-r.tmp tests/expected.sadf-r diff --git a/tests/01000 b/tests/01000 index eba918b..f852597 100644 --- a/tests/01000 +++ b/tests/01000 @@ -2,4 +2,4 @@ rm -f tests/data0.tmp rm -f tests/root ln -s root1 tests/root -./sadc --unix_time=1555593609 -S A_NULL,A_PCSW tests/data0.tmp >/dev/null +TZ=GMT ./sadc --unix_time=1555593609 -S A_NULL,A_PCSW tests/data0.tmp >/dev/null diff --git a/tests/01200 b/tests/01200 index 5034856..b13fb08 100644 --- a/tests/01200 +++ b/tests/01200 @@ -1,3 +1,5 @@ +TZ=GMT + rm -f tests/root ln -s root6 tests/root ./sadc --unix_time=1555593630 tests/data0.tmp >/dev/null diff --git a/tests/01600 b/tests/01600 index b51b3e6..b6a80b5 100644 --- a/tests/01600 +++ b/tests/01600 @@ -2,4 +2,4 @@ rm -f tests/data-wghfreq.tmp rm -f tests/root ln -s root1 tests/root -./sadc --unix_time=1555593609 -S A_NULL,A_PWR_FREQ tests/data-wghfreq.tmp 1 3 >/dev/null +TZ=GMT ./sadc --unix_time=1555593609 -S A_NULL,A_PWR_FREQ tests/data-wghfreq.tmp 1 3 >/dev/null diff --git a/tests/TLIST b/tests/TLIST index b501854..4368f85 100644 --- a/tests/TLIST +++ b/tests/TLIST @@ -13,9 +13,9 @@ NOTES: 00050 grep -i FIXME *.c *.h *.in && exit 1 || exit 0 ===== Creating data.tmp -00100 5 x ./sadc --unix_time=XXXXXXXXX -S XALL,-A_PWR_FAN,-A_PWR_IN,-A_PWR_TEMP,-A_PWR_FREQ tests/data.tmp 1 1 >/dev/null -00110 ./sadc --unix_time=XXXXXXXXX tests/data.tmp -00120 ./sadc --unix_time=1555594749 -C "Testing sysstat!" tests/data.tmp +00100 5 x TZ=GMT ./sadc --unix_time=XXXXXXXXX -S XALL,-A_PWR_FAN,-A_PWR_IN,-A_PWR_TEMP,-A_PWR_FREQ tests/data.tmp 1 1 >/dev/null +00110 TZ=GMT ./sadc --unix_time=XXXXXXXXX tests/data.tmp +00120 TZ=GMT ./sadc --unix_time=1555594749 -C "Testing sysstat!" tests/data.tmp ===== sar: Reading data.tmp 00130 LC_ALL=C TZ=GMT ./sar -C -u -P ALL -f tests/data.tmp > tests/out.sar-u.tmp @@ -28,8 +28,8 @@ NOTES: 00137 diff -u tests/out3.sar-all.tmp tests/expected3.sar-all ===== Appending data to data.tmp -00140 ./sadc --unix_time=1555595649 tests/data.tmp -00150 2 x ./sadc --unix_time=XXXXXXXXX -S XALL tests/data.tmp 1 1 >/dev/null +00140 TZ=GMT ./sadc --unix_time=1555595649 tests/data.tmp +00150 2 x TZ=GMT ./sadc --unix_time=XXXXXXXXX -S XALL tests/data.tmp 1 1 >/dev/null ===== sar: Reading data.tmp 00160 LC_ALL=C TZ=GMT ./sar -C -u -P ALL -f tests/data.tmp > tests/out2.sar-u.tmp @@ -152,7 +152,7 @@ NOTES: 00942 diff -u tests/out.sar.tmp tests/expected.sar1 ===== Creating data0.tmp with no data inside -01000 ./sadc --unix_time=1555593609 -S A_NULL,A_PCSW tests/data0.tmp >/dev/null +01000 TZ=GMT ./sadc --unix_time=1555593609 -S A_NULL,A_PCSW tests/data0.tmp >/dev/null ===== sar/sadf: Reading data0.tmp 01100 LC_ALL=C TZ=GMT ./sar -A -f tests/data0.tmp > tests/out0.sar-A.tmp @@ -168,7 +168,7 @@ NOTES: 01152 diff -u tests/out0.sadf-g.tmp tests/expected0.sadf-g ===== Append data to data0.tmp then read its contents -01200 2 x ./sadc --unix_time=xxxxxxxxx [ -S XALL ] tests/data0.tmp [ 1 1 ] >/dev/null +01200 2 x TZ=GMT ./sadc --unix_time=xxxxxxxxx [ -S XALL ] tests/data0.tmp [ 1 1 ] >/dev/null 01210 LC_ALL=C TZ=GMT ./sar -A -f tests/data0.tmp > tests/out01.sar-A.tmp 01212 diff -u tests/out01.sar-A.tmp tests/expected01.sar-A 01220 ./sadf -d tests/data0.tmp -- -A > tests/out01.sadf-d.tmp @@ -181,12 +181,12 @@ NOTES: ===== Playing with standard activity datafiles 01300 echo foo >tests/sa01 ; ./sadc 1 1 - 2>&1 | grep "Invalid system activity" >/dev/null -01305 ./sadc -F 1 1 - +01305 LC_ALL=C TZ=GMT ./sadc -F 1 1 - 01310 LC_ALL=C TZ=GMT ./sar -f tests/sa01 > tests/out3.sar-u.tmp 01312 diff -u tests/out3.sar-u.tmp tests/expected3.sar-u 01314 LC_ALL=C TZ=GMT ./sar > tests/out31.sar-u.tmp 01316 diff -u tests/out31.sar-u.tmp tests/expected3.sar-u -01320 ./sadc -D - +01320 LC_ALL=C TZ=GMT ./sadc -D - 01330 LC_ALL=C TZ=GMT ./sar -f tests/sa19700101 > tests/out32.sar-u.tmp 01332 diff -u tests/out32.sar-u.tmp tests/expected32.sar-u 01335 LC_ALL=C TZ=GMT ./sar > tests/out33.sar-u.tmp @@ -239,7 +239,7 @@ NOTES: 01559 cat tests/out.data-11.6.5-sadf-x.tmp | $VER_XML --dtdvalid xml/sysstat-*.dtd - >/dev/null; ===== Specific tests for A_PWR_FREQ statistics -01600 ./sadc --unix_time=1555593609 -S A_NULL,A_PWR_FREQ tests/data-wghfreq.tmp 1 3 >/dev/null +01600 TZ=GMT ./sadc --unix_time=1555593609 -S A_NULL,A_PWR_FREQ tests/data-wghfreq.tmp 1 3 >/dev/null 01610 LC_ALL=C TZ=GMT ./sar -f tests/data-wghfreq.tmp -m FREQ -P ALL > tests/out.sar-m-freq.tmp 01615 diff -u tests/out.sar-m-freq.tmp tests/expected.sar-m-freq 01620 LC_ALL=C TZ=GMT ./sadf -d tests/data-wghfreq.tmp -- -m FREQ -P ALL > tests/out.data-wghfreq-sadf-d.tmp diff --git a/tests/expected.sadf-r b/tests/expected.sadf-r index a941123..b2ed454 100644 --- a/tests/expected.sadf-r +++ b/tests/expected.sadf-r @@ -43,7 +43,7 @@ 13:20:49 UTC; CPU; 5; %usr; 12694; 12863; %nice; 308545; 308545; %sys; 6911; 7000; %iowait; 7914; 7917; %steal; 0; 0; %irq; 3124; 3135; %soft; 1081; 1086; %guest; 0; 0; %gnice; 0; 0; %idle; 387770; 389710; 13:20:49 UTC; CPU; 6; %usr; 0; 18318; %nice; 0; 60355; %sys; 0; 10450; %iowait; 0; 10888; %steal; 0; 0; %irq; 0; 3568; %soft; 0; 1122; %guest; 0; 0; %gnice; 0; 0; %idle; 0; 624713; 13:20:49 UTC; CPU; 7; %usr; 16519; 16692; %nice; 100925; 100925; %sys; 9176; 9273; %iowait; 7307; 7314; %steal; 0; 0; %irq; 2112; 2126; %soft; 986; 991; %guest; 0; 0; %gnice; 0; 0; %idle; 590355; 592273; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_PCSW; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; proc/s; 46972; 47083; cswch/s; 130465866; 132598184; @@ -56,7 +56,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_PCSW; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; proc/s; 47375; 47493; cswch/s; 136544596; 138969137; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_IRQ; nr_curr; 489; nr_alloc; 489; nr_ini; 489 13:20:19 UTC; INTR; -1; intr/s; 95105080; 96212396; @@ -2021,7 +2021,7 @@ 13:20:49 UTC; INTR; 485; intr/s; 0; 0; 13:20:49 UTC; INTR; 486; intr/s; 0; 0; 13:20:49 UTC; INTR; 487; intr/s; 0; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_SWAP; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; pswpin/s; 0; 0; pswpout/s; 0; 0; @@ -2034,7 +2034,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_SWAP; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; pswpin/s; 0; 0; pswpout/s; 0; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_PAGE; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; pgpgin/s; 2685938; 2685938; pgpgout/s; 1863420; 1863420; fault/s; 60863302; 60863302; majflt/s; 10715; 10715; pgfree/s; 63486798; 63486798; pgscank/s; 0; 0; pgscand/s; 0; 0; pgsteal/s; 0; 0; @@ -2047,7 +2047,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_PAGE; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; pgpgin/s; 2685938; 2685938; pgpgout/s; 1863420; 1863420; fault/s; 60863302; 60863302; majflt/s; 10715; 10715; pgfree/s; 63486798; 63486798; pgscank/s; 0; 0; pgscand/s; 0; 0; pgsteal/s; 0; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_IO; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; tps; 61832; 61832; rtps; 49652; 49652; wtps; 12180; 12180; dtps; 0; 0; bread/s; 3199714; 3199714; bwrtn/s; 821088; 821088; bdscd/s; 0; 0; @@ -2060,7 +2060,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_IO; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; tps [DEC]; 61940; 61781; rtps [DEC]; 49757; 49601; wtps [DEC]; 12183; 12180; dtps; 0; 0; bread/s [DEC]; 3208530; 3195498; bwrtn/s [DEC]; 821112; 821088; bdscd/s; 0; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_MEMORY; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; kbmemfree; 1437740; kbavail; 4389516; kbttlmem; 8144960; kbbuffers; 260172; kbcached; 2821596; kbcommit; 12097852; kbactive; 4042384; kbinact; 1772396; kbdirty; 396; kbanonpg; 2733164; kbslab; 445740; kbkstack; 15328; kbpgtbl; 73760; kbvmused; 0; @@ -2073,7 +2073,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_MEMORY; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; kbmemfree; 1437740; kbavail; 4389516; kbttlmem; 8144960; kbbuffers; 260172; kbcached; 2821596; kbcommit; 12097852; kbactive; 4042384; kbinact; 1772396; kbdirty; 396; kbanonpg; 2733164; kbslab; 445740; kbkstack; 15328; kbpgtbl; 73760; kbvmused; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_MEMORY; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; kbswpfree; 16777212; kbttlswp; 16777212; kbswpcad; 0; @@ -2086,7 +2086,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_MEMORY; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; kbswpfree; 16777212; kbttlswp; 16777212; kbswpcad; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_HUGE; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; kbhugfree; 0; hugtotal; 0; kbhugrsvd; 0; kbhugsurp; 0; @@ -2099,7 +2099,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_HUGE; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; kbhugfree; 0; hugtotal; 0; kbhugrsvd; 0; kbhugsurp; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_KTABLES; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; dentunusd; 156063; file-nr; 16704; inode-nr; 157735; pty-nr; 4; @@ -2112,7 +2112,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_KTABLES; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; dentunusd; 156063; file-nr; 16704; inode-nr; 157735; pty-nr; 4; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_QUEUE; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; runq-sz; 3; plist-sz; 956; ldavg-1; 316; ldavg-5; 324; ldavg-15; 343; blocked; 0; @@ -2125,7 +2125,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_QUEUE; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; runq-sz; 3; plist-sz; 956; ldavg-1; 316; ldavg-5; 324; ldavg-15; 343; blocked; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_SERIAL; nr_curr; 2; nr_alloc; 2; nr_ini; 2 13:20:19 UTC; TTY; 0; rcvin/s; 32543; 32543; txmtin/s; 14323; 14323; framerr/s; 123; 123; prtyerr/s; 123; 123; brk/s; 42; 42; ovrun/s; 13; 13; @@ -2142,7 +2142,7 @@ # name; A_SERIAL; nr_curr; 2; nr_alloc; 2; nr_ini; 2 13:20:49 UTC; TTY; 0; rcvin/s; 32543; 32543; txmtin/s; 14323; 14323; framerr/s; 123; 123; prtyerr/s; 123; 123; brk/s; 42; 42; ovrun/s; 13; 13; 13:20:49 UTC; TTY; 1; rcvin/s; 0; 0; txmtin/s; 0; 0; framerr/s; 0; 0; prtyerr/s; 0; 0; brk/s; 0; 0; ovrun/s; 0; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_DISK; nr_curr; 14; nr_alloc; 19; nr_ini; 19 13:20:19 UTC; major; 8; minor; 0; DEV; dev8-0; tps; 61781; 61781; rkB/s; 3195498; 3195498; wkB/s; 821088; 821088; dkB/s; 0; 0; rd_ticks; 623970; 623970; wr_ticks; 117109; 117109; dc_ticks; 0; 0; tot_ticks; 32862; 32862; aqu-sz; 714408; 714408; @@ -2209,7 +2209,7 @@ 13:20:49 UTC; major; 8; minor; 12; DEV; dev8-12; tps; 13528; 13528; rkB/s; 363650; 363650; wkB/s; 534960; 534960; dkB/s; 0; 0; rd_ticks; 124848; 124848; wr_ticks; 59590; 59590; dc_ticks; 0; 0; tot_ticks; 7316; 7316; aqu-sz; 178474; 178474; 13:20:49 UTC; major; 8; minor; 80; DEV; dev8-80; tps; 47; 47; rkB/s; 4184; 4184; wkB/s; 0; 0; dkB/s; 0; 0; rd_ticks; 2938; 2938; wr_ticks; 0; 0; dc_ticks; 0; 0; tot_ticks; 33; 33; aqu-sz; 2917; 2917; 13:20:49 UTC; major; 8; minor; 96; DEV; dev8-96; tps; 112; 133; rkB/s; 8848; 9848; wkB/s; 24; 34; dkB/s; 0; 0; rd_ticks; 2732; 2832; wr_ticks; 40; 70; dc_ticks; 0; 0; tot_ticks; 73; 93; aqu-sz; 2724; 3724; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_NET_DEV; nr_curr; 5; nr_alloc; 10; nr_ini; 5 13:20:19 UTC; IFACE; lo; rxpck/s; 95831; 95831; txpck/s; 95831; 95831; rxkB/s; 81228574; 81228574; txkB/s; 81228574; 81228574; rxcmp/s; 0; 0; txcmp/s; 0; 0; rxmcst/s; 0; 0; speed; 0; duplex; 0; @@ -2241,7 +2241,7 @@ 13:20:49 UTC; IFACE; virbr0; rxpck/s; 0; 0; txpck/s; 0; 0; rxkB/s; 0; 0; txkB/s; 0; 0; rxcmp/s; 0; 0; txcmp/s; 0; 0; rxmcst/s; 0; 0; speed; 0; duplex; 0; 13:20:49 UTC; IFACE; wlp5s0; rxpck/s; 0; 0; txpck/s; 0; 0; rxkB/s; 0; 0; txkB/s; 0; 0; rxcmp/s; 0; 0; txcmp/s; 0; 0; rxmcst/s; 0; 0; speed; 0; duplex; 0; 13:20:49 UTC; IFACE; wlp5s1; rxpck/s; 15; 15; txpck/s; 5; 5; rxkB/s; 1000; 1000; txkB/s; 250; 250; rxcmp/s; 0; 0; txcmp/s; 0; 0; rxmcst/s; 0; 0; speed; 0; duplex; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_NET_EDEV; nr_curr; 5; nr_alloc; 10; nr_ini; 5 13:20:19 UTC; IFACE; lo; rxerr/s; 0; 0; txerr/s; 0; 0; coll/s; 0; 0; rxdrop/s; 0; 0; txdrop/s; 0; 0; txcarr/s; 0; 0; rxfram/s; 0; 0; rxfifo/s; 0; 0; txfifo/s; 0; 0; @@ -2273,7 +2273,7 @@ 13:20:49 UTC; IFACE; virbr0; rxerr/s; 0; 0; txerr/s; 0; 0; coll/s; 0; 0; rxdrop/s; 0; 0; txdrop/s; 0; 0; txcarr/s; 0; 0; rxfram/s; 0; 0; rxfifo/s; 0; 0; txfifo/s; 0; 0; 13:20:49 UTC; IFACE; wlp5s0; rxerr/s; 0; 0; txerr/s; 0; 0; coll/s; 0; 0; rxdrop/s; 0; 0; txdrop/s; 0; 0; txcarr/s; 0; 0; rxfram/s; 0; 0; rxfifo/s; 0; 0; txfifo/s; 0; 0; 13:20:49 UTC; IFACE; wlp5s1; rxerr/s; 0; 0; txerr/s; 0; 0; coll/s; 10; 10; rxdrop/s; 0; 0; txdrop/s; 0; 0; txcarr/s; 0; 0; rxfram/s; 0; 0; rxfifo/s; 0; 0; txfifo/s; 0; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_NET_NFS; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; call/s; 53; 53; retrans/s; 13; 13; read/s; 77; 77; write/s; 88; 88; access/s; 55; 55; getatt/s; 22; 22; @@ -2286,7 +2286,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_NET_NFS; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; call/s; 53; 53; retrans/s; 13; 13; read/s; 77; 77; write/s; 88; 88; access/s; 55; 55; getatt/s; 22; 22; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_NET_NFSD; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; scall/s; 12; 12; badcall/s; 23; 23; packet/s; 12; 12; udp/s; 23; 23; tcp/s; 34; 34; hit/s; 12; 12; miss/s; 23; 23; sread/s; 77; 77; swrite/s; 88; 88; saccess/s; 55; 55; sgetatt/s; 22; 22; @@ -2299,7 +2299,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_NET_NFSD; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; scall/s; 12; 12; badcall/s; 23; 23; packet/s; 12; 12; udp/s; 23; 23; tcp/s; 34; 34; hit/s; 12; 12; miss/s; 23; 23; sread/s; 77; 77; swrite/s; 88; 88; saccess/s; 55; 55; sgetatt/s; 22; 22; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_NET_SOCK; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; totsck; 1316; tcpsck; 10; udpsck; 6; rawsck; 0; ip-frag; 0; tcp-tw; 1; @@ -2312,7 +2312,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_NET_SOCK; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; totsck; 1316; tcpsck; 10; udpsck; 6; rawsck; 0; ip-frag; 0; tcp-tw; 1; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_NET_IP; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; irec/s; 144883; 144883; fwddgm/s; 0; 0; idel/s; 144023; 144023; orq/s; 138629; 138629; asmrq/s; 4; 4; asmok/s; 1; 1; fragok/s; 0; 0; fragcrt/s; 0; 0; @@ -2325,7 +2325,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_NET_IP; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; irec/s; 144883; 144883; fwddgm/s; 0; 0; idel/s; 144023; 144023; orq/s; 138629; 138629; asmrq/s; 4; 4; asmok/s; 1; 1; fragok/s; 0; 0; fragcrt/s; 0; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_NET_EIP; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; ihdrerr/s; 0; 0; iadrerr/s; 1; 1; iukwnpr/s; 0; 0; idisc/s; 0; 0; odisc/s; 0; 0; onort/s; 4; 4; asmf/s; 0; 0; fragf/s; 0; 0; @@ -2338,7 +2338,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_NET_EIP; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; ihdrerr/s; 0; 0; iadrerr/s; 1; 1; iukwnpr/s; 0; 0; idisc/s; 0; 0; odisc/s; 0; 0; onort/s; 4; 4; asmf/s; 0; 0; fragf/s; 0; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_NET_ICMP; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; imsg/s; 7; 7; omsg/s; 0; 0; iech/s; 0; 0; iechr/s; 0; 0; oech/s; 0; 0; oechr/s; 0; 0; itm/s; 0; 0; itmr/s; 0; 0; otm/s; 0; 0; otmr/s; 0; 0; iadrmk/s; 0; 0; iadrmkr/s; 0; 0; oadrmk/s; 0; 0; oadrmkr/s; 0; 0; @@ -2351,7 +2351,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_NET_ICMP; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; imsg/s; 7; 7; omsg/s; 0; 0; iech/s; 0; 0; iechr/s; 0; 0; oech/s; 0; 0; oechr/s; 0; 0; itm/s; 0; 0; itmr/s; 0; 0; otm/s; 0; 0; otmr/s; 0; 0; iadrmk/s; 0; 0; iadrmkr/s; 0; 0; oadrmk/s; 0; 0; oadrmkr/s; 0; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_NET_EICMP; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; ierr/s; 0; 0; oerr/s; 0; 0; idstunr/s; 7; 7; odstunr/s; 0; 0; itmex/s; 0; 0; otmex/s; 0; 0; iparmpb/s; 0; 0; oparmpb/s; 0; 0; isrcq/s; 0; 0; osrcq/s; 0; 0; iredir/s; 0; 0; oredir/s; 0; 0; @@ -2364,7 +2364,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_NET_EICMP; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; ierr/s; 0; 0; oerr/s; 0; 0; idstunr/s; 7; 7; odstunr/s; 0; 0; itmex/s; 0; 0; otmex/s; 0; 0; iparmpb/s; 0; 0; oparmpb/s; 0; 0; isrcq/s; 0; 0; osrcq/s; 0; 0; iredir/s; 0; 0; oredir/s; 0; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_NET_TCP; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; active/s; 1516; 1516; passive/s; 1; 1; iseg/s; 148044; 148044; oseg/s; 145504; 145504; @@ -2377,7 +2377,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_NET_TCP; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; active/s; 1516; 1516; passive/s; 1; 1; iseg/s; 148044; 148044; oseg/s; 145504; 145504; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_NET_ETCP; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; atmptf/s; 11; 11; estres/s; 62; 62; retrans/s; 304; 304; isegerr/s; 35; 35; orsts/s; 943; 943; @@ -2390,7 +2390,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_NET_ETCP; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; atmptf/s; 11; 11; estres/s; 62; 62; retrans/s; 304; 304; isegerr/s; 35; 35; orsts/s; 943; 943; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_NET_UDP; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; idgm/s; 4198; 4198; odgm/s; 3581; 3581; noport/s; 0; 0; idgmerr/s; 0; 0; @@ -2403,7 +2403,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_NET_UDP; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; idgm/s; 4198; 4198; odgm/s; 3581; 3581; noport/s; 0; 0; idgmerr/s; 0; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_NET_SOCK6; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; tcp6sck; 3; udp6sck; 3; raw6sck; 1; ip6-frag; 0; @@ -2416,7 +2416,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_NET_SOCK6; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; tcp6sck; 3; udp6sck; 3; raw6sck; 1; ip6-frag; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_NET_IP6; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; irec6/s; 10228; 10228; fwddgm6/s; 0; 0; idel6/s; 10207; 10207; orq6/s; 9201; 9201; asmrq6/s; 0; 0; asmok6/s; 0; 0; imcpck6/s; 1704; 1704; omcpck6/s; 583; 583; fragok6/s; 0; 0; fragcr6/s; 0; 0; @@ -2429,7 +2429,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_NET_IP6; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; irec6/s; 10228; 10228; fwddgm6/s; 0; 0; idel6/s; 10207; 10207; orq6/s; 9201; 9201; asmrq6/s; 0; 0; asmok6/s; 0; 0; imcpck6/s; 1704; 1704; omcpck6/s; 583; 583; fragok6/s; 0; 0; fragcr6/s; 0; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_NET_EIP6; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; ihdrer6/s; 0; 0; iadrer6/s; 0; 0; iukwnp6/s; 0; 0; i2big6/s; 0; 0; idisc6/s; 0; 0; odisc6/s; 0; 0; inort6/s; 0; 0; onort6/s; 16; 16; asmf6/s; 0; 0; fragf6/s; 0; 0; itrpck6/s; 0; 0; @@ -2442,7 +2442,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_NET_EIP6; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; ihdrer6/s; 0; 0; iadrer6/s; 0; 0; iukwnp6/s; 0; 0; i2big6/s; 0; 0; idisc6/s; 0; 0; odisc6/s; 0; 0; inort6/s; 0; 0; onort6/s; 16; 16; asmf6/s; 0; 0; fragf6/s; 0; 0; itrpck6/s; 0; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_NET_ICMP6; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; imsg6/s; 1260; 1260; omsg6/s; 1181; 1181; iech6/s; 0; 0; iechr6/s; 0; 0; oechr6/s; 0; 0; igmbq6/s; 0; 0; igmbr6/s; 0; 0; ogmbr6/s; 0; 0; igmbrd6/s; 0; 0; ogmbrd6/s; 0; 0; irtsol6/s; 0; 0; ortsol6/s; 1; 1; irtad6/s; 267; 267; inbsol6/s; 850; 850; onbsol6/s; 146; 146; inbad6/s; 143; 143; onbad6/s; 491; 491; @@ -2455,7 +2455,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_NET_ICMP6; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; imsg6/s; 1260; 1260; omsg6/s; 1181; 1181; iech6/s; 0; 0; iechr6/s; 0; 0; oechr6/s; 0; 0; igmbq6/s; 0; 0; igmbr6/s; 0; 0; ogmbr6/s; 0; 0; igmbrd6/s; 0; 0; ogmbrd6/s; 0; 0; irtsol6/s; 0; 0; ortsol6/s; 1; 1; irtad6/s; 267; 267; inbsol6/s; 850; 850; onbsol6/s; 146; 146; inbad6/s; 143; 143; onbad6/s; 491; 491; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_NET_EICMP6; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; ierr6/s; 0; 0; idtunr6/s; 0; 0; odtunr6/s; 0; 0; itmex6/s; 0; 0; otmex6/s; 0; 0; iprmpb6/s; 0; 0; oprmpb6/s; 0; 0; iredir6/s; 0; 0; oredir6/s; 0; 0; ipck2b6/s; 0; 0; opck2b6/s; 0; 0; @@ -2468,7 +2468,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_NET_EICMP6; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; ierr6/s; 0; 0; idtunr6/s; 0; 0; odtunr6/s; 0; 0; itmex6/s; 0; 0; otmex6/s; 0; 0; iprmpb6/s; 0; 0; oprmpb6/s; 0; 0; iredir6/s; 0; 0; oredir6/s; 0; 0; ipck2b6/s; 0; 0; opck2b6/s; 0; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_NET_UDP6; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:19 UTC; idgm6/s; 671; 671; odgm6/s; 36; 36; noport6/s; 0; 0; idgmer6/s; 0; 0; @@ -2481,7 +2481,7 @@ # uptime_cs; 731585; ust_time; 1555593649; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:49 # name; A_NET_UDP6; nr_curr; 1; nr_alloc; 1; nr_ini; 1 13:20:49 UTC; idgm6/s; 671; 671; odgm6/s; 36; 36; noport6/s; 0; 0; idgmer6/s; 0; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_NET_FC; nr_curr; 1; nr_alloc; 2; nr_ini; 1 13:20:19 UTC; FCHOST; host0; fch_rxf/s; 16; 16; fch_txf/s; 5; 5; fch_rxw/s; 4; 4; fch_txw/s; 2; 2; @@ -2496,7 +2496,7 @@ # name; A_NET_FC; nr_curr; 2; nr_alloc; 2; nr_ini; 1 13:20:49 UTC; FCHOST; host0; fch_rxf/s; 16; 16; fch_txf/s; 5; 5; fch_rxw/s; 4; 4; fch_txw/s; 2; 2; 13:20:49 UTC; FCHOST; host1; fch_rxf/s; 16; 16; fch_txf/s; 5; 5; fch_rxw/s; 4; 4; fch_txw/s; 2; 2; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_NET_SOFT; nr_curr; 9; nr_alloc; 9; nr_ini; 9 13:20:19 UTC; CPU; 0; total/s; 11976; 11976; dropd/s; 0; 0; squeezd/s; 0; 0; rx_rps/s; 0; 0; flw_lim/s; 0; 0; @@ -2537,7 +2537,7 @@ 13:20:49 UTC; CPU; 5; total/s; 13176; 13176; dropd/s; 0; 0; squeezd/s; 0; 0; rx_rps/s; 0; 0; flw_lim/s; 0; 0; 13:20:49 UTC; CPU; 6; total/s; 0; 21614; dropd/s; 0; 0; squeezd/s; 0; 0; rx_rps/s; 0; 0; flw_lim/s; 0; 0; 13:20:49 UTC; CPU; 7; total/s; 18776; 18776; dropd/s; 0; 0; squeezd/s; 0; 0; rx_rps/s; 0; 0; flw_lim/s; 0; 0; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_PWR_CPU; nr_curr; 9; nr_alloc; 9; nr_ini; 9 13:20:19 UTC; CPU; -1; MHz; 352254; @@ -2582,7 +2582,7 @@ 13:20:49 UTC; CPU; 5; MHz; 349355; 13:20:49 UTC; CPU; 6; MHz; 349222; 13:20:49 UTC; CPU; 7; MHz; 349756; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 # uptime_cs; 722372; ust_time; 1555593619; extra_next; 0; record_type; 1; HH:MM:SS; 15:20:19 # name; A_FS; nr_curr; 4; nr_alloc; 8; nr_ini; 4 13:20:19 UTC; FILESYSTEM; "/dev/sda9"; f_bfree; 89739427840; f_blocks; 97891291136; f_bavail; 84722675712; Ifree; 6008414; f_files; 6111232; @@ -2611,11 +2611,11 @@ 13:20:49 UTC; FILESYSTEM; "/dev/sda7"; f_bfree; 293286670336; f_blocks; 309502345216; f_bavail; 277541253120; Ifree; 19201593; f_files; 19202048; 13:20:49 UTC; FILESYSTEM; "/dev/sda12"; f_bfree; 89739427840; f_blocks; 97891291136; f_bavail; 84722675712; Ifree; 6008414; f_files; 6111232; 13:20:49 UTC; FILESYSTEM; "/dev/sda6"; f_bfree; 293286670336; f_blocks; 309502345216; f_bavail; 277541253120; Ifree; 19201593; f_files; 19202048; -# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 15:37:29 +# uptime_cs; 0; ust_time; 1555594649; extra_next; 0; record_type; 2; HH:MM:SS; 13:37:29 13:37:29 UTC; LINUX-RESTART (8 CPU) -# uptime_cs; 0; ust_time; 1555594749; extra_next; 0; record_type; 4; HH:MM:SS; 15:39:09 +# uptime_cs; 0; ust_time; 1555594749; extra_next; 0; record_type; 4; HH:MM:SS; 13:39:09 13:39:09 UTC; COM Testing sysstat! -# uptime_cs; 0; ust_time; 1555595649; extra_next; 0; record_type; 2; HH:MM:SS; 15:54:09 +# uptime_cs; 0; ust_time; 1555595649; extra_next; 0; record_type; 2; HH:MM:SS; 13:54:09 13:54:09 UTC; LINUX-RESTART (10 CPU) # uptime_cs; 719255; ust_time; 1555595655; extra_next; 0; record_type; 1; HH:MM:SS; 15:54:15 # uptime_cs; 722372; ust_time; 1555595675; extra_next; 0; record_type; 1; HH:MM:SS; 15:54:35 -- 2.40.0