Home

Awesome

GitHub Workflow Status (branch) Docker Image Size (tag)

vnStat in a container

vnStat is a network traffic monitor that uses the network interface statistics provided by the kernel as information source. This means that vnStat won't actually be sniffing any traffic and also ensures light use of system resources regardless of network traffic rate.

By default, traffic statistics are stored on a five minute level for the last 48 hours, on a hourly level for the last 4 days, on a daily level for the last 2 full months and on a yearly level forever. The data retention durations are fully user configurable. Total seen traffic and a top days listing is also provided.

See the official webpage or the GitHub repository for additional details and output examples. An example of the included image output is also available.

Container content

Supported tags

Version specific tags are available starting from 2.7 with the latest release being the same as latest tag. latest and dev are automatically built at least once every month to include possible build time dependency updates.

Building the container

docker build -t vergoh/vnstat .

Running the container

docker run -d \
    --restart=unless-stopped \
    --network=host \
    -e HTTP_PORT=8685 \
    -v /etc/localtime:/etc/localtime:ro \
    -v /etc/timezone:/etc/timezone:ro \
    --name vnstat \
    vergoh/vnstat

Command line interface can be accessed with:

docker exec vnstat vnstat --help

docker-compose.yml

Two example docker compose files are provided:

docker-compose.yml is the more simple example with both the vnStat daemon and the httpd running in the same container. While this example works without changes for most users, it results in the httpd also using host networking which may not be a wanted feature for some users.

docker-compose_isolated_httpd.yml consist of two containers running from the same image. The vnStat daemon is running in the first container (vnstat) with host networking in order to access all network interfaces but doesn't provide any services or bind to ports. The second container (vnstati) doesn't use host networking but provides the httpd which accesses the statistics using a shared volume in read-only mode.

Environment variables

NameDescriptionDefault value
HTTP_PORTPort of the http server, use 0 to disable http server8685
HTTP_BINDIP address for the http server to bind, use 127.0.0.1 to bind only to localhost and prevent remote access*, all addresses
HTTP_LOGHttp server log output file, use /dev/stdout for output to console and /dev/null to disable logging/dev/stdout
SERVER_NAMEName of the server in the web page titleOutput of hostname command
LARGE_FONTSUse large fonts in images (0: no, 1: yes)0
CACHE_TIMECache created images for given number of minutes (0: disabled)1
DARK_MODEBlack background and inverted image colors, 0: disabled, 1: enabled without rx/tx color inversion, 2: enabled for all colors (available starting from version 2.12)0
PAGE_REFRESHPage auto refresh interval in seconds (0: disabled)0
RUN_VNSTATDStart vnStat daemon (0: no, 1: yes)1
INDEX_IMAGES_PER_ROWNumber of images to show per row on the index page when the database contains more than one interface (1000: auto fit) (available starting from version 2.13)1
INDEX_IMAGE_OUTPUTImage output to use on index page when the database contains more than one interface (available starting from version 2.13)hs
INDEX_SHOWN_INTERFACESRegular expression pattern for selecting which interfaces are shown on the index page when the database contains more than one interface. Leave empty or unset to disable filter. All not shown interfaces will still be monitored. (available starting from version 2.13)unset
INDEX_HIDDEN_INTERFACESRegular expression pattern for selecting which interfaces are hidden from the index page when the database contains more than one interface. Leave empty or unset to disable filter. All hidden interfaces will still be monitored. (available starting from version 2.13)unset
EXCLUDE_PATTERNExtended regular expression pattern for excluding interfaces from getting monitored. For example, ^docker|^veth|^br-|^lxc would exclude interface names starting with docker, veth, br- and lxc.unset
TZSet time zone (list of supported values), overrides configuration from possible /etc/localtime and /etc/timezone volumesunset
VNSTAT_ prefixAll vnstat.conf configurations can be modified using a VNSTAT_ prefixed variable followed with the configuration keyword. For example, changing CRx (color for received data) to 79C999 (pale teal) can be done by defining VNSTAT_CRx=79C999. Variable name is case sensitive.unset

Deprecated environment variables

NameDescriptionDefault value
RATE_UNITUsed traffic rate unit, 0: bytes, 1: bits. Deprecated. Use VNSTAT_RateUnit instead.1
INTERFACEDefault interface for queries, leave empty or unset for automatic selection. Deprecated. Use VNSTAT_Interface instead.unset
INTERFACE_ORDERInterface order when multiple interfaces are shown, 0: alphabetical by name, 1: alphabetical by alias. Deprecated. Use VNSTAT_InterfaceOrder instead.0
QUERY_MODEDefault command line query when none is specified, see QueryMode in documentation for supported values. Deprecated. Use VNSTAT_QueryMode instead.0

Usage tips

Add descriptive interface name

docker exec vnstat vnstat -i eno3 --setalias "Basement switch"

Stop monitoring unnecessary interface

docker exec vnstat vnstat -i br-20f8582bfc70 --remove --force

Add interface for monitoring

  1. Check that the interface is visible on the list of available interfaces:

    docker exec vnstat vnstat --iflist
    
  2. Add the interface

    docker exec vnstat vnstat -i br-20f8582bfc70 --add
    
  3. The daemon will notice the change within 5 minutes and start monitoring the interface

Troubleshooting