forked from sysstat/sysstat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pr_stats.c
2538 lines (2297 loc) · 83.9 KB
/
pr_stats.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* pr_stats.c: Functions used by sar to display statistics
* (C) 1999-2013 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
* *
* This program is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without the implied warranty of MERCHANTABILITY *
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License *
* for more details. *
* *
* You should have received a copy of the GNU General Public License along *
* with this program; if not, write to the Free Software Foundation, Inc., *
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
***************************************************************************
*/
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include "sa.h"
#include "ioconf.h"
#include "pr_stats.h"
#ifdef USE_NLS
#include <locale.h>
#include <libintl.h>
#define _(string) gettext(string)
#else
#define _(string) (string)
#endif
extern unsigned int flags;
extern unsigned int dm_major;
extern int dis;
extern char timestamp[][TIMESTAMP_LEN];
extern unsigned long avg_count;
/*
***************************************************************************
* Display CPU statistics.
*
* IN:
* @a Activity structure with statistics.
* @prev Index in array where stats used as reference are.
* @curr Index in array for current sample statistics.
* @g_itv Interval of time in jiffies multiplied by the number
* of processors.
***************************************************************************
*/
__print_funct_t print_cpu_stats(struct activity *a, int prev, int curr,
unsigned long long g_itv)
{
int i;
struct stats_cpu *scc, *scp;
if (dis) {
if (DISPLAY_CPU_DEF(a->opt_flags)) {
printf("\n%-11s CPU %%user %%nice %%system"
" %%iowait %%steal %%idle\n",
timestamp[!curr]);
}
else if (DISPLAY_CPU_ALL(a->opt_flags)) {
printf("\n%-11s CPU %%usr %%nice %%sys"
" %%iowait %%steal %%irq %%soft"
" %%guest %%gnice %%idle\n",
timestamp[!curr]);
}
}
for (i = 0; (i < a->nr) && (i < a->bitmap->b_size + 1); i++) {
/*
* The size of a->buf[...] CPU structure may be different from the default
* sizeof(struct stats_cpu) value if data have been read from a file!
* That's why we don't use a syntax like:
* scc = (struct stats_cpu *) a->buf[...] + i;
*/
scc = (struct stats_cpu *) ((char *) a->buf[curr] + i * a->msize);
scp = (struct stats_cpu *) ((char *) a->buf[prev] + i * a->msize);
/*
* Note: a->nr is in [1, NR_CPUS + 1].
* Bitmap size is provided for (NR_CPUS + 1) CPUs.
* Anyway, NR_CPUS may vary between the version of sysstat
* used by sadc to create a file, and the version of sysstat
* used by sar to read it...
*/
/* Should current CPU (including CPU "all") be displayed? */
if (a->bitmap->b_array[i >> 3] & (1 << (i & 0x07))) {
/* Yes: Display it */
printf("%-11s", timestamp[curr]);
if (!i) {
/* This is CPU "all" */
printf(" all");
}
else {
printf(" %3d", i - 1);
/*
* If the CPU is offline then it is omited from /proc/stat:
* All the fields couldn't have been read and the sum of them is zero.
* (Remember that guest/guest_nice times are already included in
* user/nice modes.)
*/
if ((scc->cpu_user + scc->cpu_nice + scc->cpu_sys +
scc->cpu_iowait + scc->cpu_idle + scc->cpu_steal +
scc->cpu_hardirq + scc->cpu_softirq) == 0) {
/*
* Set current struct fields (which have been set to zero)
* to values from previous iteration. Hence their values won't
* jump from zero when the CPU comes back online.
*/
*scc = *scp;
/* %user, %nice, %system, %iowait, %steal, ..., %idle */
printf(" %6.2f %6.2f %6.2f"
" %6.2f %6.2f %6.2f",
0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
if (DISPLAY_CPU_ALL(a->opt_flags)) {
/*
* Four additional fields to display:
* %irq, %soft, %guest, %gnice.
*/
printf(" %6.2f %6.2f %6.2f %6.2f",
0.0, 0.0, 0.0, 0.0);
}
printf("\n");
continue;
}
/* Recalculate interval for current proc */
g_itv = get_per_cpu_interval(scc, scp);
if (!g_itv) {
/*
* If the CPU is tickless then there is no change in CPU values
* but the sum of values is not zero.
* %user, %nice, %system, %iowait, %steal, ..., %idle
*/
printf(" %6.2f %6.2f %6.2f"
" %6.2f %6.2f",
0.0, 0.0, 0.0, 0.0, 0.0);
if (DISPLAY_CPU_DEF(a->opt_flags)) {
printf(" %6.2f\n", 100.0);
}
/*
* Four additional fields to display:
* %irq, %soft, %guest, %gnice.
*/
else if (DISPLAY_CPU_ALL(a->opt_flags)) {
printf(" %6.2f %6.2f %6.2f %6.2f\n",
0.0, 0.0, 0.0, 100.0);
}
continue;
}
}
if (DISPLAY_CPU_DEF(a->opt_flags)) {
printf(" %6.2f %6.2f %6.2f %6.2f %6.2f %6.2f\n",
ll_sp_value(scp->cpu_user, scc->cpu_user, g_itv),
ll_sp_value(scp->cpu_nice, scc->cpu_nice, g_itv),
ll_sp_value(scp->cpu_sys + scp->cpu_hardirq + scp->cpu_softirq,
scc->cpu_sys + scc->cpu_hardirq + scc->cpu_softirq,
g_itv),
ll_sp_value(scp->cpu_iowait, scc->cpu_iowait, g_itv),
ll_sp_value(scp->cpu_steal, scc->cpu_steal, g_itv),
scc->cpu_idle < scp->cpu_idle ?
0.0 :
ll_sp_value(scp->cpu_idle, scc->cpu_idle, g_itv));
}
else if (DISPLAY_CPU_ALL(a->opt_flags)) {
printf(" %6.2f %6.2f %6.2f %6.2f %6.2f %6.2f"
" %6.2f %6.2f %6.2f %6.2f\n",
(scc->cpu_user - scc->cpu_guest) < (scp->cpu_user - scp->cpu_guest) ?
0.0 :
ll_sp_value(scp->cpu_user - scp->cpu_guest,
scc->cpu_user - scc->cpu_guest, g_itv),
(scc->cpu_nice - scc->cpu_guest_nice) < (scp->cpu_nice - scp->cpu_guest_nice) ?
0.0 :
ll_sp_value(scp->cpu_nice - scp->cpu_guest_nice,
scc->cpu_nice - scc->cpu_guest_nice, g_itv),
ll_sp_value(scp->cpu_sys, scc->cpu_sys, g_itv),
ll_sp_value(scp->cpu_iowait, scc->cpu_iowait, g_itv),
ll_sp_value(scp->cpu_steal, scc->cpu_steal, g_itv),
ll_sp_value(scp->cpu_hardirq, scc->cpu_hardirq, g_itv),
ll_sp_value(scp->cpu_softirq, scc->cpu_softirq, g_itv),
ll_sp_value(scp->cpu_guest, scc->cpu_guest, g_itv),
ll_sp_value(scp->cpu_guest_nice, scc->cpu_guest_nice, g_itv),
scc->cpu_idle < scp->cpu_idle ?
0.0 :
ll_sp_value(scp->cpu_idle, scc->cpu_idle, g_itv));
}
}
}
}
/*
***************************************************************************
* Display tasks creation and context switches statistics.
*
* IN:
* @a Activity structure with statistics.
* @prev Index in array where stats used as reference are.
* @curr Index in array for current sample statistics.
* @itv Interval of time in jiffies.
***************************************************************************
*/
__print_funct_t print_pcsw_stats(struct activity *a, int prev, int curr,
unsigned long long itv)
{
struct stats_pcsw
*spc = (struct stats_pcsw *) a->buf[curr],
*spp = (struct stats_pcsw *) a->buf[prev];
if (dis) {
printf("\n%-11s proc/s cswch/s\n", timestamp[!curr]);
}
printf("%-11s %9.2f %9.2f\n", timestamp[curr],
S_VALUE (spp->processes, spc->processes, itv),
ll_s_value(spp->context_switch, spc->context_switch, itv));
}
/*
***************************************************************************
* Display interrupts statistics.
*
* IN:
* @a Activity structure with statistics.
* @prev Index in array where stats used as reference are.
* @curr Index in array for current sample statistics.
* @itv Interval of time in jiffies.
***************************************************************************
*/
__print_funct_t print_irq_stats(struct activity *a, int prev, int curr,
unsigned long long itv)
{
int i;
struct stats_irq *sic, *sip;
if (dis) {
printf("\n%-11s INTR intr/s\n", timestamp[!curr]);
}
for (i = 0; (i < a->nr) && (i < a->bitmap->b_size + 1); i++) {
sic = (struct stats_irq *) ((char *) a->buf[curr] + i * a->msize);
sip = (struct stats_irq *) ((char *) a->buf[prev] + i * a->msize);
/*
* Note: a->nr is in [0, NR_IRQS + 1].
* Bitmap size is provided for (NR_IRQS + 1) interrupts.
* Anyway, NR_IRQS may vary between the version of sysstat
* used by sadc to create a file, and the version of sysstat
* used by sar to read it...
*/
/* Should current interrupt (including int "sum") be displayed? */
if (a->bitmap->b_array[i >> 3] & (1 << (i & 0x07))) {
/* Yes: Display it */
printf("%-11s", timestamp[curr]);
if (!i) {
/* This is interrupt "sum" */
printf(" sum");
}
else {
printf(" %3d", i - 1);
}
printf(" %9.2f\n",
ll_s_value(sip->irq_nr, sic->irq_nr, itv));
}
}
}
/*
***************************************************************************
* Display swapping statistics.
*
* IN:
* @a Activity structure with statistics.
* @prev Index in array where stats used as reference are.
* @curr Index in array for current sample statistics.
* @itv Interval of time in jiffies.
***************************************************************************
*/
__print_funct_t print_swap_stats(struct activity *a, int prev, int curr,
unsigned long long itv)
{
struct stats_swap
*ssc = (struct stats_swap *) a->buf[curr],
*ssp = (struct stats_swap *) a->buf[prev];
if (dis) {
printf("\n%-11s pswpin/s pswpout/s\n", timestamp[!curr]);
}
printf("%-11s %9.2f %9.2f\n", timestamp[curr],
S_VALUE(ssp->pswpin, ssc->pswpin, itv),
S_VALUE(ssp->pswpout, ssc->pswpout, itv));
}
/*
***************************************************************************
* Display paging statistics.
*
* IN:
* @a Activity structure with statistics.
* @prev Index in array where stats used as reference are.
* @curr Index in array for current sample statistics.
* @itv Interval of time in jiffies.
***************************************************************************
*/
__print_funct_t print_paging_stats(struct activity *a, int prev, int curr,
unsigned long long itv)
{
struct stats_paging
*spc = (struct stats_paging *) a->buf[curr],
*spp = (struct stats_paging *) a->buf[prev];
if (dis) {
printf("\n%-11s pgpgin/s pgpgout/s fault/s majflt/s pgfree/s"
" pgscank/s pgscand/s pgsteal/s %%vmeff\n",
timestamp[!curr]);
}
printf("%-11s %9.2f %9.2f %9.2f %9.2f %9.2f %9.2f %9.2f %9.2f %9.2f\n",
timestamp[curr],
S_VALUE(spp->pgpgin, spc->pgpgin, itv),
S_VALUE(spp->pgpgout, spc->pgpgout, itv),
S_VALUE(spp->pgfault, spc->pgfault, itv),
S_VALUE(spp->pgmajfault, spc->pgmajfault, itv),
S_VALUE(spp->pgfree, spc->pgfree, itv),
S_VALUE(spp->pgscan_kswapd, spc->pgscan_kswapd, itv),
S_VALUE(spp->pgscan_direct, spc->pgscan_direct, itv),
S_VALUE(spp->pgsteal, spc->pgsteal, itv),
(spc->pgscan_kswapd + spc->pgscan_direct -
spp->pgscan_kswapd - spp->pgscan_direct) ?
SP_VALUE(spp->pgsteal, spc->pgsteal,
spc->pgscan_kswapd + spc->pgscan_direct -
spp->pgscan_kswapd - spp->pgscan_direct) : 0.0);
}
/*
***************************************************************************
* Display I/O and transfer rate statistics.
*
* IN:
* @a Activity structure with statistics.
* @prev Index in array where stats used as reference are.
* @curr Index in array for current sample statistics.
* @itv Interval of time in jiffies.
***************************************************************************
*/
__print_funct_t print_io_stats(struct activity *a, int prev, int curr,
unsigned long long itv)
{
struct stats_io
*sic = (struct stats_io *) a->buf[curr],
*sip = (struct stats_io *) a->buf[prev];
if (dis) {
printf("\n%-11s tps rtps wtps bread/s bwrtn/s\n",
timestamp[!curr]);
}
printf("%-11s %9.2f %9.2f %9.2f %9.2f %9.2f\n", timestamp[curr],
S_VALUE(sip->dk_drive, sic->dk_drive, itv),
S_VALUE(sip->dk_drive_rio, sic->dk_drive_rio, itv),
S_VALUE(sip->dk_drive_wio, sic->dk_drive_wio, itv),
S_VALUE(sip->dk_drive_rblk, sic->dk_drive_rblk, itv),
S_VALUE(sip->dk_drive_wblk, sic->dk_drive_wblk, itv));
}
/*
***************************************************************************
* Display memory and swap statistics. This function is used to
* display instantaneous and average statistics.
*
* IN:
* @a Activity structure with statistics.
* @prev Index in array where stats used as reference are.
* @curr Index in array for current sample statistics.
* @itv Interval of time in jiffies.
* @dispavg TRUE if displaying average statistics.
***************************************************************************
*/
void stub_print_memory_stats(struct activity *a, int prev, int curr,
unsigned long long itv, int dispavg)
{
struct stats_memory
*smc = (struct stats_memory *) a->buf[curr],
*smp = (struct stats_memory *) a->buf[prev];
static unsigned long long
avg_frmkb = 0,
avg_bufkb = 0,
avg_camkb = 0,
avg_comkb = 0,
avg_activekb = 0,
avg_inactkb = 0,
avg_dirtykb = 0;
static unsigned long long
avg_frskb = 0,
avg_tlskb = 0,
avg_caskb = 0;
if (DISPLAY_MEMORY(a->opt_flags)) {
if (dis) {
printf("\n%-11s frmpg/s bufpg/s campg/s\n",
timestamp[!curr]);
}
printf("%-11s %9.2f %9.2f %9.2f\n", timestamp[curr],
S_VALUE((double) KB_TO_PG(smp->frmkb), (double) KB_TO_PG(smc->frmkb), itv),
S_VALUE((double) KB_TO_PG(smp->bufkb), (double) KB_TO_PG(smc->bufkb), itv),
S_VALUE((double) KB_TO_PG(smp->camkb), (double) KB_TO_PG(smc->camkb), itv));
}
if (DISPLAY_MEM_AMT(a->opt_flags)) {
if (dis) {
printf("\n%-11s kbmemfree kbmemused %%memused kbbuffers kbcached"
" kbcommit %%commit kbactive kbinact kbdirty\n", timestamp[!curr]);
}
if (!dispavg) {
/* Display instantaneous values */
printf("%-11s %9lu %9lu %6.2f %9lu %9lu %9lu %7.2f %9lu %9lu %9lu\n",
timestamp[curr],
smc->frmkb,
smc->tlmkb - smc->frmkb,
smc->tlmkb ?
SP_VALUE(smc->frmkb, smc->tlmkb, smc->tlmkb) : 0.0,
smc->bufkb,
smc->camkb,
smc->comkb,
(smc->tlmkb + smc->tlskb) ?
SP_VALUE(0, smc->comkb, smc->tlmkb + smc->tlskb) : 0.0,
smc->activekb,
smc->inactkb,
smc->dirtykb);
/*
* Will be used to compute the average.
* We assume that the total amount of memory installed can not vary
* during the interval given on the command line.
*/
avg_frmkb += smc->frmkb;
avg_bufkb += smc->bufkb;
avg_camkb += smc->camkb;
avg_comkb += smc->comkb;
avg_activekb += smc->activekb;
avg_inactkb += smc->inactkb;
avg_dirtykb += smc->dirtykb;
}
else {
/* Display average values */
printf("%-11s %9.0f %9.0f %6.2f %9.0f %9.0f %9.0f %7.2f %9.0f %9.0f %9.0f\n",
timestamp[curr],
(double) avg_frmkb / avg_count,
(double) smc->tlmkb - ((double) avg_frmkb / avg_count),
smc->tlmkb ?
SP_VALUE((double) (avg_frmkb / avg_count), smc->tlmkb,
smc->tlmkb) :
0.0,
(double) avg_bufkb / avg_count,
(double) avg_camkb / avg_count,
(double) avg_comkb / avg_count,
(smc->tlmkb + smc->tlskb) ?
SP_VALUE(0.0, (double) (avg_comkb / avg_count),
smc->tlmkb + smc->tlskb) : 0.0,
(double) avg_activekb / avg_count,
(double) avg_inactkb / avg_count,
(double) avg_dirtykb / avg_count);
/* Reset average counters */
avg_frmkb = avg_bufkb = avg_camkb = avg_comkb = 0;
avg_activekb = avg_inactkb = avg_dirtykb = 0;
}
}
if (DISPLAY_SWAP(a->opt_flags)) {
if (dis) {
printf("\n%-11s kbswpfree kbswpused %%swpused kbswpcad %%swpcad\n",
timestamp[!curr]);
}
if (!dispavg) {
/* Display instantaneous values */
printf("%-11s %9lu %9lu %6.2f %9lu %6.2f\n",
timestamp[curr],
smc->frskb,
smc->tlskb - smc->frskb,
smc->tlskb ?
SP_VALUE(smc->frskb, smc->tlskb, smc->tlskb) : 0.0,
smc->caskb,
(smc->tlskb - smc->frskb) ?
SP_VALUE(0, smc->caskb, smc->tlskb - smc->frskb) : 0.0);
/*
* Will be used to compute the average.
* We assume that the total amount of swap space may vary.
*/
avg_frskb += smc->frskb;
avg_tlskb += smc->tlskb;
avg_caskb += smc->caskb;
}
else {
/* Display average values */
printf("%-11s %9.0f %9.0f %6.2f %9.0f %6.2f\n",
timestamp[curr],
(double) avg_frskb / avg_count,
((double) avg_tlskb / avg_count) -
((double) avg_frskb / avg_count),
((double) (avg_tlskb / avg_count)) ?
SP_VALUE((double) (avg_frskb / avg_count),
(double) (avg_tlskb / avg_count),
(double) (avg_tlskb / avg_count)) :
0.0,
(double) (avg_caskb / avg_count),
(((double) avg_tlskb / avg_count) -
((double) avg_frskb / avg_count)) ?
SP_VALUE(0.0, (double) (avg_caskb / avg_count),
((double) avg_tlskb / avg_count) -
((double) avg_frskb / avg_count)) :
0.0);
/* Reset average counters */
avg_frskb = avg_tlskb = avg_caskb = 0;
}
}
}
/*
***************************************************************************
* Display memory and swap statistics.
*
* IN:
* @a Activity structure with statistics.
* @prev Index in array where stats used as reference are.
* @curr Index in array for current sample statistics.
* @itv Interval of time in jiffies.
***************************************************************************
*/
__print_funct_t print_memory_stats(struct activity *a, int prev, int curr,
unsigned long long itv)
{
stub_print_memory_stats(a, prev, curr, itv, FALSE);
}
/*
***************************************************************************
* Display average memory statistics.
*
* IN:
* @a Activity structure with statistics.
* @prev Index in array where stats used as reference are.
* @curr Index in array for current sample statistics.
* @itv Interval of time in jiffies.
***************************************************************************
*/
__print_funct_t print_avg_memory_stats(struct activity *a, int prev, int curr,
unsigned long long itv)
{
stub_print_memory_stats(a, prev, curr, itv, TRUE);
}
/*
***************************************************************************
* Display kernel tables statistics. This function is used to display
* instantaneous and average statistics.
*
* IN:
* @a Activity structure with statistics.
* @curr Index in array for current sample statistics.
* @dispavg True if displaying average statistics.
***************************************************************************
*/
void stub_print_ktables_stats(struct activity *a, int curr, int dispavg)
{
struct stats_ktables
*skc = (struct stats_ktables *) a->buf[curr];
static unsigned long long
avg_dentry_stat = 0,
avg_file_used = 0,
avg_inode_used = 0,
avg_pty_nr = 0;
if (dis) {
printf("\n%-11s dentunusd file-nr inode-nr pty-nr\n",
timestamp[!curr]);
}
if (!dispavg) {
/* Display instantaneous values */
printf("%-11s %9u %9u %9u %9u\n", timestamp[curr],
skc->dentry_stat,
skc->file_used,
skc->inode_used,
skc->pty_nr);
/*
* Will be used to compute the average.
* Note: Overflow unlikely to happen but not impossible...
*/
avg_dentry_stat += skc->dentry_stat;
avg_file_used += skc->file_used;
avg_inode_used += skc->inode_used;
avg_pty_nr += skc->pty_nr;
}
else {
/* Display average values */
printf("%-11s %9.0f %9.0f %9.0f %9.0f\n",
timestamp[curr],
(double) avg_dentry_stat / avg_count,
(double) avg_file_used / avg_count,
(double) avg_inode_used / avg_count,
(double) avg_pty_nr / avg_count);
/* Reset average counters */
avg_dentry_stat = avg_file_used = avg_inode_used = avg_pty_nr = 0;
}
}
/*
***************************************************************************
* Display kernel tables statistics.
*
* IN:
* @a Activity structure with statistics.
* @prev Index in array where stats used as reference are.
* @curr Index in array for current sample statistics.
* @itv Interval of time in jiffies.
***************************************************************************
*/
__print_funct_t print_ktables_stats(struct activity *a, int prev, int curr,
unsigned long long itv)
{
stub_print_ktables_stats(a, curr, FALSE);
}
/*
***************************************************************************
* Display average kernel tables statistics.
*
* IN:
* @a Activity structure with statistics.
* @prev Index in array where stats used as reference are.
* @curr Index in array for current sample statistics.
* @itv Interval of time in jiffies.
***************************************************************************
*/
__print_funct_t print_avg_ktables_stats(struct activity *a, int prev, int curr,
unsigned long long itv)
{
stub_print_ktables_stats(a, curr, TRUE);
}
/*
***************************************************************************
* Display queue and load statistics. This function is used to display
* instantaneous and average statistics.
*
* IN:
* @a Activity structure with statistics.
* @curr Index in array for current sample statistics.
* @dispavg TRUE if displaying average statistics.
***************************************************************************
*/
void stub_print_queue_stats(struct activity *a, int curr, int dispavg)
{
struct stats_queue
*sqc = (struct stats_queue *) a->buf[curr];
static unsigned long long
avg_nr_running = 0,
avg_nr_threads = 0,
avg_load_avg_1 = 0,
avg_load_avg_5 = 0,
avg_load_avg_15 = 0,
avg_procs_blocked = 0;
if (dis) {
printf("\n%-11s runq-sz plist-sz ldavg-1 ldavg-5 ldavg-15 blocked\n",
timestamp[!curr]);
}
if (!dispavg) {
/* Display instantaneous values */
printf("%-11s %9lu %9u %9.2f %9.2f %9.2f %9lu\n", timestamp[curr],
sqc->nr_running,
sqc->nr_threads,
(double) sqc->load_avg_1 / 100,
(double) sqc->load_avg_5 / 100,
(double) sqc->load_avg_15 / 100,
sqc->procs_blocked);
/* Will be used to compute the average */
avg_nr_running += sqc->nr_running;
avg_nr_threads += sqc->nr_threads;
avg_load_avg_1 += sqc->load_avg_1;
avg_load_avg_5 += sqc->load_avg_5;
avg_load_avg_15 += sqc->load_avg_15;
avg_procs_blocked += sqc->procs_blocked;
}
else {
/* Display average values */
printf("%-11s %9.0f %9.0f %9.2f %9.2f %9.2f %9.0f\n", timestamp[curr],
(double) avg_nr_running / avg_count,
(double) avg_nr_threads / avg_count,
(double) avg_load_avg_1 / (avg_count * 100),
(double) avg_load_avg_5 / (avg_count * 100),
(double) avg_load_avg_15 / (avg_count * 100),
(double) avg_procs_blocked / avg_count);
/* Reset average counters */
avg_nr_running = avg_nr_threads = 0;
avg_load_avg_1 = avg_load_avg_5 = avg_load_avg_15 = 0;
avg_procs_blocked = 0;
}
}
/*
***************************************************************************
* Display queue and load statistics.
*
* IN:
* @a Activity structure with statistics.
* @prev Index in array where stats used as reference are.
* @curr Index in array for current sample statistics.
* @itv Interval of time in jiffies.
***************************************************************************
*/
__print_funct_t print_queue_stats(struct activity *a, int prev, int curr,
unsigned long long itv)
{
stub_print_queue_stats(a, curr, FALSE);
}
/*
***************************************************************************
* Display average queue and load statistics.
*
* IN:
* @a Activity structure with statistics.
* @prev Index in array where stats used as reference are.
* @curr Index in array for current sample statistics.
* @itv Interval of time in jiffies.
***************************************************************************
*/
__print_funct_t print_avg_queue_stats(struct activity *a, int prev, int curr,
unsigned long long itv)
{
stub_print_queue_stats(a, curr, TRUE);
}
/*
***************************************************************************
* Display serial lines statistics.
*
* IN:
* @a Activity structure with statistics.
* @prev Index in array where stats used as reference are.
* @curr Index in array for current sample statistics.
* @itv Interval of time in jiffies.
***************************************************************************
*/
__print_funct_t print_serial_stats(struct activity *a, int prev, int curr,
unsigned long long itv)
{
int i;
struct stats_serial *ssc, *ssp;
if (dis) {
printf("\n%-11s TTY rcvin/s xmtin/s framerr/s prtyerr/s"
" brk/s ovrun/s\n", timestamp[!curr]);
}
for (i = 0; i < a->nr; i++) {
ssc = (struct stats_serial *) ((char *) a->buf[curr] + i * a->msize);
ssp = (struct stats_serial *) ((char *) a->buf[prev] + i * a->msize);
if (ssc->line == 0)
continue;
printf("%-11s %3d", timestamp[curr], ssc->line - 1);
if ((ssc->line == ssp->line) || WANT_SINCE_BOOT(flags)) {
printf(" %9.2f %9.2f %9.2f %9.2f %9.2f %9.2f\n",
S_VALUE(ssp->rx, ssc->rx, itv),
S_VALUE(ssp->tx, ssc->tx, itv),
S_VALUE(ssp->frame, ssc->frame, itv),
S_VALUE(ssp->parity, ssc->parity, itv),
S_VALUE(ssp->brk, ssc->brk, itv),
S_VALUE(ssp->overrun, ssc->overrun, itv));
}
else {
printf(" N/A N/A N/A N/A"
" N/A N/A\n");
}
}
}
/*
***************************************************************************
* Display disks statistics.
*
* IN:
* @a Activity structure with statistics.
* @prev Index in array where stats used as reference are.
* @curr Index in array for current sample statistics.
* @itv Interval of time in jiffies.
***************************************************************************
*/
__print_funct_t print_disk_stats(struct activity *a, int prev, int curr,
unsigned long long itv)
{
int i, j;
struct stats_disk *sdc, *sdp;
struct ext_disk_stats xds;
char *dev_name, *persist_dev_name;
if (dis) {
printf("\n%-11s DEV tps rd_sec/s wr_sec/s avgrq-sz"
" avgqu-sz await svctm %%util\n",
timestamp[!curr]);
}
for (i = 0; i < a->nr; i++) {
sdc = (struct stats_disk *) ((char *) a->buf[curr] + i * a->msize);
if (!(sdc->major + sdc->minor))
continue;
j = check_disk_reg(a, curr, prev, i);
sdp = (struct stats_disk *) ((char *) a->buf[prev] + j * a->msize);
/* Compute service time, etc. */
compute_ext_disk_stats(sdc, sdp, itv, &xds);
dev_name = NULL;
persist_dev_name = NULL;
if (DISPLAY_PERSIST_NAME_S(flags)) {
persist_dev_name = get_persistent_name_from_pretty(get_devname(sdc->major, sdc->minor, TRUE));
}
if (persist_dev_name) {
dev_name = persist_dev_name;
}
else {
if ((USE_PRETTY_OPTION(flags)) && (sdc->major == dm_major)) {
dev_name = transform_devmapname(sdc->major, sdc->minor);
}
if (!dev_name) {
dev_name = get_devname(sdc->major, sdc->minor,
USE_PRETTY_OPTION(flags));
}
}
printf("%-11s %9s %9.2f %9.2f %9.2f %9.2f %9.2f %9.2f %9.2f %9.2f\n",
timestamp[curr],
/* Confusion possible here between index and minor numbers */
dev_name,
S_VALUE(sdp->nr_ios, sdc->nr_ios, itv),
ll_s_value(sdp->rd_sect, sdc->rd_sect, itv),
ll_s_value(sdp->wr_sect, sdc->wr_sect, itv),
/* See iostat for explanations */
xds.arqsz,
S_VALUE(sdp->rq_ticks, sdc->rq_ticks, itv) / 1000.0,
xds.await,
xds.svctm,
xds.util / 10.0);
}
}
/*
***************************************************************************
* Display network interfaces statistics.
*
* IN:
* @a Activity structure with statistics.
* @prev Index in array where stats used as reference are.
* @curr Index in array for current sample statistics.
* @itv Interval of time in jiffies.
***************************************************************************
*/
__print_funct_t print_net_dev_stats(struct activity *a, int prev, int curr,
unsigned long long itv)
{
int i, j;
struct stats_net_dev *sndc, *sndp;
if (dis) {
printf("\n%-11s IFACE rxpck/s txpck/s rxkB/s txkB/s"
" rxcmp/s txcmp/s rxmcst/s\n", timestamp[!curr]);
}
for (i = 0; i < a->nr; i++) {
sndc = (struct stats_net_dev *) ((char *) a->buf[curr] + i * a->msize);
if (!strcmp(sndc->interface, ""))
continue;
j = check_net_dev_reg(a, curr, prev, i);
sndp = (struct stats_net_dev *) ((char *) a->buf[prev] + j * a->msize);
printf("%-11s %9s", timestamp[curr], sndc->interface);
printf(" %9.2f %9.2f %9.2f %9.2f %9.2f %9.2f %9.2f\n",
S_VALUE(sndp->rx_packets, sndc->rx_packets, itv),
S_VALUE(sndp->tx_packets, sndc->tx_packets, itv),
S_VALUE(sndp->rx_bytes, sndc->rx_bytes, itv) / 1024,
S_VALUE(sndp->tx_bytes, sndc->tx_bytes, itv) / 1024,
S_VALUE(sndp->rx_compressed, sndc->rx_compressed, itv),
S_VALUE(sndp->tx_compressed, sndc->tx_compressed, itv),
S_VALUE(sndp->multicast, sndc->multicast, itv));
}
}
/*
***************************************************************************
* Display network interface errors statistics.
*
* IN:
* @a Activity structure with statistics.
* @prev Index in array where stats used as reference are.
* @curr Index in array for current sample statistics.
* @itv Interval of time in jiffies.
***************************************************************************
*/
__print_funct_t print_net_edev_stats(struct activity *a, int prev, int curr,
unsigned long long itv)
{
int i, j;
struct stats_net_edev *snedc, *snedp;
if (dis) {
printf("\n%-11s IFACE rxerr/s txerr/s coll/s rxdrop/s"
" txdrop/s txcarr/s rxfram/s rxfifo/s txfifo/s\n",
timestamp[!curr]);
}
for (i = 0; i < a->nr; i++) {
snedc = (struct stats_net_edev *) ((char *) a->buf[curr] + i * a->msize);
if (!strcmp(snedc->interface, ""))
continue;
j = check_net_edev_reg(a, curr, prev, i);
snedp = (struct stats_net_edev *) ((char *) a->buf[prev] + j * a->msize);
printf("%-11s %9s", timestamp[curr], snedc->interface);
printf(" %9.2f %9.2f %9.2f %9.2f %9.2f %9.2f %9.2f %9.2f %9.2f\n",
S_VALUE(snedp->rx_errors, snedc->rx_errors, itv),
S_VALUE(snedp->tx_errors, snedc->tx_errors, itv),
S_VALUE(snedp->collisions, snedc->collisions, itv),
S_VALUE(snedp->rx_dropped, snedc->rx_dropped, itv),
S_VALUE(snedp->tx_dropped, snedc->tx_dropped, itv),
S_VALUE(snedp->tx_carrier_errors, snedc->tx_carrier_errors, itv),
S_VALUE(snedp->rx_frame_errors, snedc->rx_frame_errors, itv),
S_VALUE(snedp->rx_fifo_errors, snedc->rx_fifo_errors, itv),
S_VALUE(snedp->tx_fifo_errors, snedc->tx_fifo_errors, itv));
}
}
/*
***************************************************************************
* Display NFS client statistics.
*
* IN:
* @a Activity structure with statistics.
* @prev Index in array where stats used as reference are.
* @curr Index in array for current sample statistics.
* @itv Interval of time in jiffies.
***************************************************************************
*/
__print_funct_t print_net_nfs_stats(struct activity *a, int prev, int curr,
unsigned long long itv)
{
struct stats_net_nfs
*snnc = (struct stats_net_nfs *) a->buf[curr],