1bmon(8) bmon bmon(8)
2
3
4
6 bmon - bandwidth monitor and rate estimator
7
9 bmon [--show-all] [--use-si] [--input=MODULE] [--output=MODULE]
10 [OPTIONS...]
11
12
14 bmon is a monitoring and debugging tool to capture networking related
15 statistics and prepare them visually in a human friendly way. It fea‐
16 tures various output methods including an interactive curses user
17 interface and a programmable text output for scripting.
18
19
21 -h, --help
22 Prints a short help text and exits.
23
24 -V, --version
25 Prints the versioning identifier and exits.
26
27 -i, --input=MODULE[:OPTIONS][,MODULE...]
28 Set list of input modules to load and use. Multiple modules can be
29 used in parallel. bmon automatically loads a useful and working
30 input module by default. See INPUT MODULES for more details.
31
32 -o, --ouptutMODULE[:OPTIONS][,MODULE...]
33 Set list of output modules to load and use. Multiple modules can be
34 used in parallel. By default, bmon will use the curses output mode,
35 if that is not available due to an incompatible console it will
36 fall back to a simple text mode. See OUTPUT MODULES for more
37 details.
38
39 -U, --use-si
40 Use SI unit system (1KB = 1'000 bytes) instead of 1KB = 1'024
41 bytes.
42
43 -f, --configfile=FILE
44 Set alternative path to configuration file.
45
46 -p, --policy=POLICY
47 Set policy defining which network interfaces to display. See INTER‐
48 FACE SELECTION for more details.
49
50 -a, --show-all=
51 Display all interfaces, even interface that are administratively
52 down.
53
54 -r, --read-interval=FLOAT
55 Set interval in seconds in which input modules read statistics from
56 their source. The default is 1.0 seconds.
57
58 -R, --rate-interval=FLOAT
59 Set interval in seconds in which the rate per counter is calcu‐
60 lated. The default is 1.0 seconds.
61
62 -b, --use-bit
63 Show rates in bits per second instead of bytes per second.
64
65 -L, --lifetime=FLOAT
66 Set lifetime of an element in seconds before it is no longer dis‐
67 played without receiving any statistical updates. The default is 30
68 seconds.
69
70
72 Input modules provide statistical data about elements. Each element
73 consists of attributes which represents a counter, a rate, or a per‐
74 centage. Elements may carry additional child elements to represent a
75 hierarchy. Each element is assigned to a group defined by the input
76 module. Input modules are polled in the frequence of the configured
77 read interval.
78
79 The following input modules are available:
80
81 netlink
82 Uses the Netlink protocol to collect interface and traffic con‐
83 trol statistics from the kernel. This is the default input mod‐
84 ule.
85
86
87 proc Reads interface statistics from the /proc/net/dev file. This is
88 considered a legacy interface and provided for backwards compat‐
89 ibily reasons. This is a fallback module if the Netlink inter‐
90 face is not available.
91
92
93 dummy Programmable input module for debugging and testing purposes.
94
95
96 null No data collected.
97
98
99 To receive additional information about a module, run the module with
100 the "help" option set like this:
101
102
103 bmon -i netlink:help
104
105 See MODULE CONFIGURATION for more details.
106
107
109 Output modules display or export the statistical data collected by
110 input modules. Multiple output modules can be run at the same time.
111 bmon will not prevent possible conflicts such as multiple output mod‐
112 ules writing to the console.
113
114 The following output modules exist:
115
116
117 curses Interactive curses based text user interface providing real time
118 rate estimations and a graphical representatio nof each
119 attribute. Press '?' to display the quick reference guide. This
120 is the default output mode.
121
122
123 ascii Simple programmable text output intended for human consumption.
124 Capable of printing list of interfaces, detailed counters and
125 graphs to the console. This is the default fallback output mode
126 if curses is not available.
127
128
129 format Fully scriptable output mode inteded for consumption by other
130 programs. See the module help text for additional information.
131
132
133 null Disable output.
134
135
136 To receive additional information about a module, run the module with
137 the "help" option set like this:
138
139
140 bmon -o curses:help
141
142 See MODULE CONFIGURATION for more details.
143
144
146 The syntax to configure modules is as follows:
147
148 ARGUMENT ::= mod1[:OPTS][,mod2[:OPTS]...]
149 OPTS ::= OPTION[;OPTION...]
150 OPTION ::= option[=value]
151
152
153 Run the module with option "help" to receive the list of options for
154 each module:
155
156
157 bmon -i module:help
158
159
161 The following syntax is used to define the interface selection policy:
162
163 SELECTION ::= NAME[,NAME[,...]]
164 NAME ::= [!]interface
165
166
167 The interface name may contain the character '*' which will act as a
168 wildcard and represents any number of any character type, e.g. eth*,
169 h*0, ...
170
171
172 Examples:
173
174
175 lo,eth0,eth1
176 eth*,!eth0
177
178
180 To run bmon in curses mode monitoring the interfaces eth0 and eth1:
181
182 bmon -p eth0,eth1 -o curses
183
184
186 /etc/bmon.conf
187 $HOME/.bmonrc
188
189
191 ip(8), netstat(8), ifconfig(8), netlink(7),
192
193
195 Thomas Graf <tgraf@suug.ch> among others
196
197
198
199Bandwidth Monitor bmon(8)