The status monitor simply shows the number of open connections and
how much data there is to send.
NOTE: This module will only work with Netscape, because
it uses dynamic document loading.
Variables
- Mountpoint
- The file to access to get the status information.
- Maximum bar length
- The maximum length of the bar graph bars (in pixels).
- Minimum scale factor
- The minimum scaling factor to use. The actual max value of the
graph will be atleast (minfact * maxlength).
- Scale step
- The scaling factor will increment with 'Scale step' each time the max
value has gone off the scale. The actual algorithm for the scaling
factor is:
float factor, tmp_factor;
factor = minfact;
while((value/maxlen) > factor)
factor *= scalestep;
barlength = value / factor;
- Delay between updates
- The delay between each update of the information (in seconds).