Index of /Server/Bandwidth/bwbar

[ICO]NameLast modifiedSizeDescription

[PARENTDIR]Parent Directory  -  
[   ]bwbar2006-05-23 06:20 14K 
[   ]bwbar.c2006-05-23 06:20 11K 
[   ]bwbar_config2007-10-05 15:10 2.5K 
[   ]Makefile2002-07-08 13:42 761  
[   ]total_restart2002-11-10 10:04 604  
[   ]normal_restart2002-10-27 12:56 501  

bwbar 1.0 was written by H. Peter Anvin, and is available at: http://www.kernel.org/pub/software/web/bwbar/.

This modified version of the program was created by Brian Towne. The modified version is available at: http://www.mythica.org/bwbar/.


INSTALLATION




ADDITIONAL INFORMATION




PROBLEMS




VALUES USED FOR BWBAR'S CALCULATIONS




COMMENTS





***************************************************************
The original README file is preserved below:
NOTE: little of it is still valid.


	bwbar 1.0 by H. Peter Anvin 

http://www.kernel.org/pub/software/web/bwbar/
ftp://ftp.kernel.org/pub/software/web/bwbar/

bwbar is a small program that generates a text and a graphical readout
of the current bandwidth use.  It is currently for Linux only.

It is used, among others, at http://www.kernel.org/.

To set it up, create a script that contains the following commands:

#!/bin/sh -
cd /home/httpd/html/ubar
bwbar eth0 1.5 &

... assuming you are connected to the Internet via the interface
"eth0", you are on a 1.5 Mbit/s link, and you want the output files in
the directory /home/httpd/html/ubar.

This will create two files named "ubar.txt", a text fragment, and a
PNG graphic named "ubar.png".  These can be included in an SHTML web
page using the following commands (or something like it):


Bandwidth utilization bar
In a PHP web page, you would instead do:

Bandwidth utilization bar
Some aspects of the bwbar command can be customized with options. The bwbar command has the following full usage description: Usage: bwbar [options] interface max_mbps Options: (defaults in parenthesis) --input -i Measure input bandwidth --output -o Measure output bandwidth (default) --text-file -f The name of the text output file (ubar.txt) --png-file -g The name of the graphical bar file (ubar.png) --interval -t The poll interval in seconds (15) --width -x Width of the graphical bar (600) --height -y Height of the graphical bar (4) --border -b Border width of the graphical bar (1)