forked from Atoptool/atop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatopsar.1
1258 lines (1258 loc) · 32 KB
/
atopsar.1
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
.TH ATOPSAR 1 "December 2022" "Linux"
.SH NAME
.B atopsar
- Advanced System Activity Report (atop related)
.SH SYNOPSIS
.P
.B atopsar
[\-flags...]
[\-r
.I file|date|-
] [\-R
.I cnt
] [\-b
.I [YYYYMMDD]hhmm[ss]
] [\-e
.I [YYYYMMDD]hhmm[ss]
]
.br
.B atopsar
[\-flags...]
.I interval
[
.I samples
]
.P
.SH DESCRIPTION
The program
.I atopsar
can be used to report statistics on system level.
.PP
In the first synopsis line (no sampling interval specified),
.I atopsar
extracts data from a raw logfile that has been recorded previously by
the program
.I atop
(option
.B -w
of the
.I atop
program).
.br
You can specify the name of the logfile with the
.B -r
option of the
.I atopsar
program.
When a daily logfile of
.I atop
is used, named
.B /var/log/atop/atop_YYYYMMDD
(where YYYYMMDD reflects the date),
the required date of the form YYYYMMDD can be specified with the
.B -r
option instead of the filename, or
the symbolic name 'y' can be used for yesterday's daily logfile
(this can be repeated so 'yyyy' indicates the logfile of four days ago), or
the filename '-' can be used to read raw data from stdin.
If the
.B -r
option is not specified at all, today's daily logfile is used by default.
.br
The starting and ending times of the report can be defined using the
options
.B -b
and
.B -e
followed by a time argument of the form [YYYYMMDD]hhmm[ss].
.PP
In the second synopsis line,
.B atopsar
reads actual activity counters from the kernel with the specified
.I interval
(in seconds) and the specified number of
.I samples
(optionally).
When
.B atopsar
is activated in this way it immediately sends the output for every requested
report to standard output.
If only one type of report is requested, the header is printed
once and after every
.I interval
seconds the statistical counters are shown for that period.
If several reports are requested, a header is printed per sample
followed by the statistical counters for that period.
.PP
Some generic flags can be specified to influence the behaviour of the
.B atopsar
program:
.PP
.TP 5
.B -S
By default the timestamp at the beginning of a line is suppressed if more
lines are shown for one interval. With this flag a timestamp is
given for every output-line (easier for post-processing).
.PP
.TP 5
.B -a
By default certain resources as disks and network interfaces are only
shown when they were active during the interval.
With this flag all resources of a given type are shown, even if
they were inactive during the interval.
.PP
.TP 5
.B -x
By default
.B atopsar
only uses colors if output is directed to a terminal (window).
These colors might indicate that a critical occupation percentage has
been reached (red) or has been almost reached (cyan) for a particular
resource.
See the man-page of
.B atop
for a detailed description of this feature (section COLORS).
.br
With the flag
.B -x
the use of colors is suppressed unconditionally.
.PP
.TP 5
.B -C
By default
.B atopsar
only uses colors if output is directed to a terminal (window).
These colors might indicate that a critical occupation percentage has
been reached (red) or has been almost reached (cyan) for a particular
resource.
See the man-page of
.B atop
for a detailed description of this feature (section COLORS).
.br
With the flag
.B -C
colors will always be used, even if output is not directed to a terminal.
.PP
.TP 5
.B -M
Use markers at the end of a line to indicate that a critical occupation
percentage has been reached ('*') or has been almost reached ('+')
for particular resources. The marker '*' is similar to the color red
and the marker '+' to the color cyan. See the man-page of
.B atop
for a detailed description of these colors (section COLORS).
.PP
.TP 5
.B -H
Repeat the header line within a report for every
.I N
detail lines. The value of
.I N
is determined dynamically in case of output to a tty/window (depending
on the number of lines); for output to a file or pipe this value is 23.
.PP
.TP 5
.B -R
Summarize
.I cnt
samples into one sample. When the logfile contains e.g. samples of 10 minutes,
the use of the flag '\-R 6' shows a report with one sample for every hour.
.PP
Other flags are used to define which reports are required:
.PP
.TP 5
.B -A
Show all possible reports.
.PP
.TP 5
.B -c
Report about CPU utilization (in total and per cpu).
.PP
.TP 5
.B -g
Report about GPU utilization (per GPU).
.PP
.TP 5
.B -p
Report about processor-related matters, like load-averages and
hardware interrupts.
.PP
.TP 5
.B -P
Report about processes.
.PP
.TP 5
.B -m
Current memory- and swap-occupation.
.PP
.TP 5
.B -s
Report about paging- and swapping-activity, and overcommitment.
.PP
.TP 5
.B -B
Report about Pressure Stall Information (PSI).
.PP
.TP 5
.B -l
Report about utilization of logical volumes.
.PP
.TP 5
.B -f
Report about utilization of multiple devices.
.PP
.TP 5
.B -d
Report about utilization of disks.
.PP
.TP 5
.B -n
Report about NFS mounted filesystems on NFS client.
.PP
.TP 5
.B -j
Report about NFS client activity.
.PP
.TP 5
.B -J
Report about NFS server activity.
.PP
.TP 5
.B -i
Report about the network interfaces.
.PP
.TP 5
.B -I
Report about errors for network-interfaces.
.PP
.TP 5
.B -w
Report about IP version 4 network traffic.
.PP
.TP 5
.B -W
Report about errors for IP version 4 traffic.
.PP
.TP 5
.B -y
General report about ICMP version 4 layer activity.
.PP
.TP 5
.B -Y
Per-type report about ICMP version 4 layer activity.
.PP
.TP 5
.B -u
Report about UDP version 4 network traffic.
.PP
.TP 5
.B -z
Report about IP version 6 network traffic.
.PP
.TP 5
.B -Z
Report about errors for IP version 6 traffic.
.PP
.TP 5
.B -k
General report about ICMP version 6 layer activity.
.PP
.TP 5
.B -K
Per-type report about ICMP version 6 layer activity.
.PP
.TP 5
.B -U
Report about UDP version 6 network traffic.
.PP
.TP 5
.B -t
Report about TCP network traffic.
.PP
.TP 5
.B -T
Report about errors for TCP-traffic.
.PP
.TP 5
.B -h
Report about Infiniband utilization.
.PP
.TP 5
.B -O
Report about top-3 processes consuming most processor capacity.
This report is only available when using a log file (not when specifying
an interval).
.PP
.TP 5
.B -G
Report about top-3 processes consuming most resident memory.
This report is only available when using a log file (not when specifying
an interval).
.PP
.TP 5
.B -D
Report about top-3 processes issuing most disk transfers.
This report is only available when using a log file (not when specifying
an interval).
.PP
.TP 5
.B -N
Report about top-3 processes issuing most IPv4/IPv6 socket transfers.
This report is only available when using a log file (not when specifying
an interval).
.SH OUTPUT DESCRIPTION
Depending on the requested report, a number of columns with
output values are produced.
The values are mostly presented as a number of events per second.
.PP
The output for the flag
.B -c
contains the following columns per cpu:
.TP 12
.B usr%
Percentage of cpu-time consumed in user mode (program text) for all
active processes running with a nice value of zero (default) or a
negative nice value (which means a higher priority than usual).
The cpu consumption in user mode of processes with a nice value larger
than zero (lower priority) is indicated in the nice%-column.
.TP 12
.B nice%
Percentage of cpu time consumed in user mode (i.e. program text) for all
processes running witn a nice value larger than zero (which means with a
lower priority than average).
.TP 12
.B sys%
Percentage of cpu time consumed in system mode (kernel text) for all
active processes. A high percentage usually indicates a lot of system calls
being issued.
.TP 12
.B irq%
Percentage of cpu time consumed for handling of device interrupts.
.TP 12
.B softirq%
Percentage of cpu time consumed for soft interrupt handling.
.TP 12
.B steal%
Percentage of cpu time stolen by other virtual machines
running on the same hardware.
.TP 12
.B guest%
Percentage of cpu time used by other virtual machines
running on the same hardware (overlaps with usr%/nice%).
.TP 12
.B wait%
Percentage of unused cpu time while
at least one of the processes in wait-state awaits completion of disk I/O.
.TP 12
.B idle%
Percentage of unused cpu time because all processes are in a wait-state
but not waiting for disk-I/O.
.PP
The output for the flag
.B -g
contains the following columns per GPU:
.TP 12
.B busaddr
GPU number and bus-ID (separated by '/').
.TP 12
.B gpubusy
GPU busy percentage during interval.
.TP 12
.B membusy
GPU memory busy percentage during interval,
i.e. time to issue read and write accesses on memory.
.TP 12
.B memocc
Percentage of memory occupation at this moment.
.TP 12
.B memtot
Total memory available.
.TP 12
.B memuse
Used GPU memory at this moment.
.TP 12
.B gputype
Type of GPU.
.PP
The output for the flag
.B -p
contains the following values:
.TP 12
.B pswch/s
Number of process switches (also called context switches) per second on this
cpu. A process switch occurs at the moment that an active thread (i.e.
the thread using a cpu) enters a wait state or has used its time slice
completely; another thread will then be chosen to use the cpu.
.TP 12
.B devintr/s
Number of hardware interrupts handled per second on this cpu.
.TP 12
.B clones/s
The number of new threads started per second.
.TP 12
.B loadavg1
Load average reflecting the average number of threads in the runqueue
or in non-interruptible wait state (usually waiting for disk or tape I/O)
during the last minute.
.TP 12
.B loadavg5
Load average reflecting the average number of threads in the runqueue
or in non-interruptible wait state (usually waiting for disk or tape I/O)
during the last 5 minutes.
.TP 12
.B loadavg15
Load average reflecting the average number of threads in the runqueue
or in non-interruptible wait state (usually waiting for disk or tape I/O)
during the last 15 minutes.
.PP
The output for the flag
.B -P
contains information about the processes and threads:
.TP 12
.B clones/s
The number of new threads started per second.
.TP 12
.B pexit/s
.TP 12
.B curproc
Total number of processes present in the system.
.TP 12
.B curzomb
Number of zombie processes present in the system.
.TP 12
.B trun
Total number of threads present in the system in state 'running'.
.TP 12
.B tslpi
Total number of threads present in the system in
state 'interruptible sleeping'.
.TP 12
.B tslpu
Total number of threads present in the system in
state 'uninterruptible sleeping'.
.TP 12
.B tidle
Total number of threads present in the system in
state 'idle' (uninterruptible sleeping but not counted
in the load average).
.PP
The output for the flag
.B -m
contains information about the memory- and swap-utilization:
.TP 12
.B memtotal
Total usable main memory size.
.TP 12
.B memfree
Available main memory size at this moment (snapshot).
.TP 12
.B buffers
Main memory used at this moment to cache metadata-blocks (snapshot).
.TP 12
.B cached
Main memory used at this moment to cache data-blocks (snapshot).
.TP 12
.B dirty
Amount of memory in the page cache that still has to be flushed to disk
at this moment (snapshot).
.TP 12
.B slabmem
Main memory used at this moment for dynamically allocated memory
by the kernel (snapshot).
.TP 12
.B swptotal
Total swap space size at this moment (snapshot).
.TP 12
.B swpfree
Available swap space at this moment (snapshot).
.PP
The output for the flag
.B -s
contains information about the frequency of swapping:
.TP 12
.B pagescan/s
Number of scanned pages per second due to the fact
that free memory drops below a particular threshold.
.TP 12
.B swapin/s
The number of memory-pages the system read from the swap-device per second.
.TP 12
.B swapout/s
The number of memory-pages the system wrote to the swap-device per second.
.TP 12
.B oomkill
The number of processes being killed during the last interval due to lack
of memory/swap. The value -1 means that this counter is not supported by
the current kernel version.
.TP 12
.B commitspc
The committed virtual memory space i.e.
the reserved virtual space for all allocations of
private memory space for processes.
.TP 12
.B commitlim
The maximum limit for the committed space, which is by default swap size
plus 50% of memory size.
The kernel only verifies whether the committed space exceeds the limit
if strict overcommit handling is configured (vm.overcommit_memory is 2).
.PP
The output for the flag
.B -B
contains the Pressure Stall Information (PSI):
.TP 12
.B cpusome
Average pressure percentage during the interval for the
category 'CPU some'.
.TP 12
.B memsome
Average pressure percentage during the interval for the
category 'memory some'.
.TP 12
.B memfull
Average pressure percentage during the interval for the
category 'memory full'.
.TP 12
.B iosome
Average pressure percentage during the interval for the
category 'I/O some'.
.TP 12
.B iofull
Average pressure percentage during the interval for the
category 'I/O full'.
.PP
The output for the flags
.B -l
(LVM),
.B -f
(MD), and
.B -d
(hard disk) contains the following columns per active unit:
.TP 12
.B disk
Name.
.TP 12
.B busy
Busy-percentage of the unit (i.e. the portion of time that the
device was busy handling requests).
.TP 12
.B read/s
Number of read-requests issued per second on this unit.
.TP 12
.B KB/read
Average number of Kbytes transferred per read-request for this unit.
.TP 12
.B writ/s
Number of write-requests (including discard requests) issued per second on this unit.
.TP 12
.B KB/writ
Average number of Kbytes transferred per write-request for this unit.
.TP 12
.B avque
Average number of requests outstanding in the queue during the time
that the unit is busy.
.TP 12
.B avserv
Average number of milliseconds needed by a request on this unit
(seek, latency and data-transfer).
.PP
The output for the flag
.B -n
contains information about activity on NFS mounted filesystems (client):
.TP 12
.B mounted_device
Mounted device containing server name and server directory being mounted.
.TP 12
.B physread/s
Kilobytes data physically read from the NFS server by processes running
on the NFS client.
.TP 12
.B KBwrite/s
Kilobytes data physically written to the NFS server by processes running
on the NFS client.
.br
When the NFS filesystem was mounted during the interval, the state 'M' is
shown.
.PP
The output for the flag
.B -j
contains information about NFS client activity:
.TP 12
.B rpc/s
Number of RPC calls per second issued to NFS server(s).
.TP 12
.B rpcread/s
Number of read RPC calls per second issued to NFS server(s).
.TP 12
.B rpcwrite/s
Number of write RPC calls per second issued to NFS server(s).
.TP 12
.B retrans/s
Number of retransmitted RPC calls per second.
.TP 12
.B autrefresh/s
Number of authorization refreshes per second.
.PP
The output for the flag
.B -J
contains information about NFS server activity:
.TP 12
.B rpc/s
Number of RPC calls per second received from NFS client(s).
.TP 12
.B rpcread/s
Number of read RPC calls per second received from NFS client(s).
.TP 12
.B rpcwrite/s
Number of write RPC calls per second received from NFS client(s).
.TP 12
.B MBcr/s
Number of Megabytes per second returned to read requests by clients.
.TP 12
.B MBcw/s
Number of Megabytes per second passed in write requests by clients.
.TP 12
.B nettcp/s
Number of requests per second handled via TCP.
.TP 12
.B netudp/s
Number of requests per second handled via UDP.
.PP
The output for the flag
.B -i
provides information about utilization of network interfaces:
.TP 12
.B interf
Name of interface.
.TP 12
.B busy
Busy percentage for this interface.
If the linespeed of this interface could not be determined
(for virtual interfaces or in case that
.B atop
or
.B atopsar
had no root-privileges), a question mark is shown.
.TP 12
.B ipack/s
Number of packets received from this interface per second.
.TP 12
.B opack/s
Number of packets transmitted to this interface per second.
.TP 12
.B iKbyte/s
Number of Kbytes received from this interface per second.
.TP 12
.B oKbyte/s
Number of Kbytes transmitted via this interface per second.
.TP 12
.B imbps/s
Effective number of megabits received per second.
.TP 12
.B ombps/s
Effective number of megabits transmitted per second.
.TP 12
.B maxmbps/s
Linespeed as number of megabits per second.
If the linespeed could not be determined (for virtual interfaces
or in case that
.B atop
or
.B atopsar
had no root-privileges), value 0 is shown.
.br
The linespeed is followed by the indication 'f' (full duplex)
or 'h' (half duplex).
.PP
The output for the flag
.B -I
provides information about the failures that were detected for
network interfaces:
.TP 12
.B interf
Name of interface.
.TP 12
.B ierr/s
Number of bad packets received from this interface per second.
.TP 12
.B oerr/s
Number of times that packet transmission to this interface failed per second.
.TP 12
.B coll/s
Number of collisions encountered per second while transmitting packets.
.TP 12
.B idrop/s
Number of received packets dropped per second due to lack of buffer-space
in the local system.
.TP 12
.B odrop/s
Number of transmitted packets dropped per second due to lack of buffer-space
in the local system.
.TP 12
.B iframe/s
Number of frame alignment-errors encountered per second on received packets.
.TP 12
.B ocarrier/s
Number of carrier-errors encountered per second on transmitted packets.
.PP
The output for the flag
.B -w
provides information about the utilization of the IPv4-layer
(formal SNMP-names between brackets):
.TP 12
.B inrecv/s
Number of IP datagrams received from interfaces per second, including
those received in error (ipInReceives).
.TP 12
.B outreq/s
Number of IP datagrams that local higher-layer protocols
supplied to IP in requests for transmission per second (ipOutRequests).
.TP 12
.B indeliver/s
Number of received IP datagrams that have been successfully delivered to
higher protocol-layers per second (ipInDelivers).
.TP 12
.B forward/s
Number of received IP datagrams per second for which this entity was not
their final IP destination, as a result of which an attempt was made to
forward (ipForwDatagrams).
.TP 12
.B reasmok/s
Number of IP datagrams successfully reassembled per second (ipReasmOKs).
.TP 12
.B fragcreat/s
Number of IP datagram fragments generated per second at this entity
(ipFragCreates).
.PP
The output for the flag
.B -W
provides information about the failures that were detected in
the IPv4-layer (formal SNMP-names between brackets):
.TP 12
.B in: dsc/s
Number of input IP datagrams per second for which no problems were encountered
to prevent their continued processing but that were discarded, e.g. for lack
of buffer space (ipInDiscards).
.TP 12
.B in: hder/s
Number of input IP datagrams per second discarded due to errors
in the IP header (ipInHdrErrors).
.TP 12
.B in: ader/s
Number of input IP datagrams per second discarded because the IP address
in the destination field was not valid to be received by this entity
(ipInAddrErrors).
.TP 12
.B in: unkp/s
Number of inbound packets per second that were discarded because of an
unknown or unsupported protocol (ipInUnknownProtos).
.TP 12
.B in: ratim/s
Number of timeout-situations per second while other fragments were
expected for successful reassembly (ipReasmTimeout).
.TP 12
.B in: rfail/s
Number of failures detected per second by the IP reassembly algorithm
(ipReasmFails).
.TP 12
.B out: dsc/s
Number of output IP datagrams per second for which no problems were
encountered to prevent their continued processing but that were
discarded, e.g. for lack of buffer space (ipOutDiscards).
.TP 12
.B out: nrt/s
Number of IP datagrams per second discarded because no route could be found
(ipOutNoRoutes).
.PP
The output for the flag
.B -y
provides information about the general utilization of the ICMPv4-layer and
some information per type of ICMP-message
(formal SNMP-names between brackets):
.TP 12
.B intot/s
Number of ICMP messages (any type) received per second at this entity
(icmpInMsgs).
.TP 12
.B outtot/s
Number of ICMP messages (any type) transmitted per second from this entity
(icmpOutMsgs).
.TP 12
.B inecho/s
Number of ICMP Echo (request) messages received per second
(icmpInEchos).
.TP 12
.B inerep/s
Number of ICMP Echo-Reply messages received per second
(icmpInEchoReps).
.TP 12
.B otecho/s
Number of ICMP Echo (request) messages transmitted per second
(icmpOutEchos).
.TP 12
.B oterep/s
Number of ICMP Echo-Reply messages transmitted per second
(icmpOutEchoReps).
.PP
The output for the flag
.B -Y
provides information about other types of ICMPv4-messages
(formal SNMP-names between brackets):
.TP 12
.B ierr/s
Number of ICMP messages received per second but determined to have
ICMP-specific errors (icmpInErrors).
.TP 12
.B isq/s
Number of ICMP Source Quench messages received per second
(icmpInSrcQuenchs).
.TP 12
.B ird/s
Number of ICMP Redirect messages received per second
(icmpInRedirects).
.TP 12
.B idu/s
Number of ICMP Destination Unreachable messages received per second
(icmpInDestUnreachs).
.TP 12
.B ite/s
Number of ICMP Time Exceeded messages received per second
(icmpOutTimeExcds).
.TP 12
.B oerr/s
Number of ICMP messages transmitted per second but determined to have
ICMP-specific errors (icmpOutErrors).
.TP 12
.B osq/s
Number of ICMP Source Quench messages transmitted per second
(icmpOutSrcQuenchs).
.TP 12
.B ord/s
Number of ICMP Redirect messages transmitted per second
(icmpOutRedirects).
.TP 12
.B odu/s
Number of ICMP Destination Unreachable messages transmitted per second
(icmpOutDestUnreachs).
.TP 12
.B ote/s
Number of ICMP Time Exceeded messages transmitted per second
(icmpOutTimeExcds).
.PP
The output for the flag
.B -u
provides information about the utilization of the UDPv4-layer
(formal SNMP-names between brackets):
.TP 12
.B indgram/s
Number of UDP datagrams per second delivered to UDP users (udpInDatagrams).
.TP 12
.B outdgram/s
Number of UDP datagrams transmitted per second from this entity
(udpOutDatagrams).
.TP 12
.B inerr/s
Number of received UDP datagrams per second that could not be delivered
for reasons other than the lack of an application at the destination port
(udpInErrors).
.TP 12
.B noport/s
Number of received UDP datagrams per second for which there was
no application at the destination port (udpNoPorts).
.PP
The output for the flag
.B -z
provides information about the utilization of the IPv6-layer
(formal SNMP-names between brackets):
.TP 12
.B inrecv/s
Number of input IPv6-datagrams received from interfaces per second, including
those received in error (ipv6IfStatsInReceives).
.TP 12
.B outreq/s
Number of IPv6-datagrams per second that local higher-layer protocols
supplied to IP in requests for transmission (ipv6IfStatsOutRequests).
This counter does not include any forwarded datagrams.
.TP 12
.B inmc/s
Number of multicast packets per second that have been received by the
interface (ipv6IfStatsInMcastPkts).
.TP 12
.B outmc/s
Number of multicast packets per second that have been transmitted to the
interface (ipv6IfStatsOutMcastPkts).
.TP 12
.B indeliv/s
Number of IP datagrams successfully delivered per second to
IPv6 user-protocols, including ICMP (ipv6IfStatsInDelivers).
.TP 12
.B reasmok/s
Number of IPv6 datagrams successfully reassembled per second
(ipv6IfStatsReasmOKs).
.TP 12
.B fragcre/s
Number of IPv6 datagram fragments generated per second at this entity
(ipv6IfStatsOutFragCreates).
.PP
The output for the flag
.B -Z
provides information about the failures that were detected in the IPv6-layer
(formal SNMP-names between brackets):
.TP 12
.B in: dsc/s
Number of input IPv6 datagrams per second for which no problems
were encountered to prevent their continued processing but that
were discarded, e.g. for lack of buffer space (ipv6IfStatsInDiscards).
.TP 12
.B in: hder/s
Number of input datagrams per second discarded due to errors in the
IPv6 header (ipv6IfStatsInHdrErrors).
.TP 12
.B in: ader/s
Number of input datagrams per second discarded because the IPv6 address
in the destination field was not valid to be received by this entity
(ipv6IfStatsInAddrErrors).
.TP 12
.B in: unkp/s
Number of locally-addressed datagrams per second that were discarded because
of an unknown or unsupported protocol (ipv6IfStatsInUnknownProtos).
.TP 12
.B in: ratim/s
Number of timeout-situations per second while other IPv6 fragments were
expected for successful reassembly (ipv6ReasmTimeout).
.TP 12
.B in: rfail/s
Number of failures detected per second by the IPv6 reassembly-algorithm
(ipv6IfStatsReasmFails).
.TP 12
.B out: dsc/s
Number of output IPv6 datagrams per second for which no problems
were encountered to prevent their continued processing but that
were discarded, e.g. for lack of buffer space (ipv6IfStatsOutDiscards).
.TP 12
.B out: nrt/s
Number of IPv6 datagrams per second discarded because no route could be found
(ipv6IfStatsInNoRoutes).
.PP
The output for the flag
.B -k
provides information about the general utilization of the ICMPv6-layer and
some information per type of ICMP-message
(formal SNMP-names between brackets):
.TP 12
.B intot/s
Number of ICMPv6 messages (any type) received per second at the interface
(ipv6IfIcmpInMsgs).
.TP 12
.B outtot/s
Number of ICMPv6 messages (any type) transmitted per second from this entity
(ipv6IfIcmpOutMsgs).
.TP 12
.B inerr/s
Number of ICMPv6 messages received per second that had ICMP-specific
errors, such as bad ICMP checksums, bad length, etc (ipv6IfIcmpInErrors).
.TP 12
.B innsol/s
Number of ICMP Neighbor Solicit messages received per second
(ipv6IfIcmpInNeighborSolicits).
.TP 12
.B innadv/s
Number of ICMP Neighbor Advertisement messages received per second
(ipv6IfIcmpInNeighborAdvertisements).
.TP 12
.B otnsol/s
Number of ICMP Neighbor Solicit messages transmitted per second
(ipv6IfIcmpOutNeighborSolicits).
.TP 12
.B otnadv/s
Number of ICMP Neighbor Advertisement messages transmitted per second
(ipv6IfIcmpOutNeighborAdvertisements).
.PP
The output for the flag
.B -K
provides information about other types of ICMPv6-messages
(formal SNMP-names between brackets):
.TP 12
.B iecho/s
Number of ICMP Echo (request) messages received per second
(ipv6IfIcmpInEchos).
.TP 12
.B ierep/s
Number of ICMP Echo-Reply messages received per second
(ipv6IfIcmpInEchoReplies).
.TP 12
.B oerep/s
Number of ICMP Echo-Reply messages transmitted per second
(ipv6IfIcmpOutEchoReplies).
.TP 12
.B idu/s
Number of ICMP Destination Unreachable messages received per second
(ipv6IfIcmpInDestUnreachs).
.TP 12
.B odu/s
Number of ICMP Destination Unreachable messages transmitted per second
(ipv6IfIcmpOutDestUnreachs).
.TP 12
.B ird/s
Number of ICMP Redirect messages received per second
(ipv6IfIcmpInRedirects).
.TP 12
.B ord/s
Number of ICMP Redirect messages transmitted per second