bmon(8) | bmon | bmon(8) |
NAME¶
bmon - bandwidth monitor and rate estimator
SYNOPSIS¶
bmon [--show-all] [--use-si] [--input=MODULE] [--output=MODULE] [OPTIONS...]
DESCRIPTION¶
bmon is a monitoring and debugging tool to capture networking related statistics and prepare them visually in a human friendly way. It features various output methods including an interactive curses user interface and a programmable text output for scripting.
OPTIONS¶
-h, --help
-V, --version
-i, --input=MODULE[:OPTIONS][,MODULE...]
-o, --outputMODULE[:OPTIONS][,MODULE...]
-U, --use-si
-f, --configfile=FILE
-p, --policy=POLICY
-a, --show-all=
-r, --read-interval=FLOAT
-R, --rate-interval=FLOAT
-b, --use-bit
-L, --lifetime=FLOAT
INPUT MODULES¶
Input modules provide statistical data about elements. Each element consists of attributes which represents a counter, a rate, or a percentage. Elements may carry additional child elements to represent a hierarchy. Each element is assigned to a group defined by the input module. Input modules are polled in the frequence of the configured read interval.
The following input modules are available:
- netlink
- Uses the Netlink protocol to collect interface and traffic control statistics from the kernel. This is the default input module.
- proc
- Reads interface statistics from the /proc/net/dev file. This is considered a legacy interface and provided for backwards compatibily reasons. This is a fallback module if the Netlink interface is not available.
- dummy
- Programmable input module for debugging and testing purposes.
- null
- No data collected.
To receive additional information about a module, run the module with the "help" option set like this:
See MODULE CONFIGURATION for more details.
OUTPUT MODULES¶
Output modules display or export the statistical data collected by input modules. Multiple output modules can be run at the same time. bmon will not prevent possible conflicts such as multiple output modules writing to the console.
The following output modules exist:
- curses
- Interactive curses based text user interface providing real time rate estimations and a graphical representatio nof each attribute. Press '?' to display the quick reference guide. This is the default output mode.
- ascii
- Simple programmable text output intended for human consumption. Capable of printing list of interfaces, detailed counters and graphs to the console. This is the default fallback output mode if curses is not available.
- format
- Fully scriptable output mode inteded for consumption by other programs. See the module help text for additional information.
- null
- Disable output.
To receive additional information about a module, run the module with the "help" option set like this:
See MODULE CONFIGURATION for more details.
MODULE CONFIGURATION¶
The syntax to configure modules is as follows:
OPTS ::= OPTION[;OPTION...]
OPTION ::= option[=value]
Run the module with option "help" to receive the list of options for each module:
INTERFACE SELECTION¶
The following syntax is used to define the interface selection policy:
NAME ::= [!]interface
The interface name may contain the character '*' which will act as a wildcard and represents any number of any character type, e.g. eth*, h*0, ...
Examples:
eth*,!eth0
EXAMPLES¶
To run bmon in curses mode monitoring the interfaces eth0 and eth1:
To run bmon in format mode, monitoring any eth* interfaces, with a specified format string:
FILES¶
/etc/bmon.conf
$HOME/.bmonrc
SEE ALSO¶
AUTHOR¶
Thomas Graf <tgraf@suug.ch> among others
Bandwidth Monitor |