UPSSTATS.HTML(5) | NUT Manual | UPSSTATS.HTML(5) |
upsstats.html - HTML template for Network UPS Tools upsstats
This file is used by upsstats.cgi(8) to generate status pages. Certain commands are recognized, and will be replaced with various status elements on the fly.
Commands can be placed anywhere on a line, but must start and end with @. Any extra characters before or after the commands will be passed through unchanged. It is allowed to use more than one command on a single line, as long as each command has its own start and end character. If you need to use the @ sign, use @ to prevent it from being treated as a start character.
Some commands begin blocks - sections of the template that will be included, excluded, or repeated depending on certain parameters.
@FOREACHUPS@
@ENDFOR@
@IFSUPP var@*
@IFEQ var value@
@IFBETWEEN varlow varhigh varvalue@
@ELSE@
@ENDIF@
Even though the parser is pretty limited, it’s still possible to create rather advanced expressions. The key to this is the fact that multiple block control commands are AND:ed. This is illustrated with an example (more examples are available in upsstats.html).
@IFSUPP ambient.humidity@ @IFSUPP ambient.temperature@ This UPS knows both ambient temperature and humidity. @ELSE@ @IFSUPP ambient.humidity@ This UPS only knows ambient humidity. @ELSE@ @IFSUPP ambient.temperature@ This UPS only knows ambient temperature. @ELSE@ This UPS knows nothing, how annoying. @ENDIF@
@AMBTEMP@
@DATE format@
@DEGREES@
@HOST@
@HOSTDESC@
@HOSTLINK@
@IMG varname @
battery.charge
battery.voltage
input.frequency
input.voltage
input.L1-L2.voltage
input.L2-L3.voltage
input.L3-L1.voltage
output.frequency
output.voltage
output.L1-L2.voltage
output.L2-L3.voltage
output.L3-L1.voltage
output.L1.power.percent
output.L2.power.percent
output.L3.power.percent
ups.load
ups.temperature
extra is where you can put additional definitions. Right now the valid definitions are colors for various parts of the bars drawn by upsimage.cgi. Possible color names are:
back_col
scale_num_col
summary_col
ok_zone_maj_col
ok_zone_min_col
neutral_zone_maj_col
neutral_zone_min_col
warn_zone_maj_col
warn_zone_min_col
bar_col
All colors are hex triplets - 0xff0000 is red, 0x00ff00 is green, and 0x0000ff is blue.
Examples:
@IMG battery.charge@ @IMG battery.charge back_col=0xff00ff bar_col=0xaabbcc@ @IMG input.voltage ok_zone_maj_col=0x123456@
@REFRESH@
@STATUS@
@STATUSCOLOR@
@VAR varname@
@RUNTIME@
@TEMPC@
@TEMPF@
@UPSTEMP@
@BATTTEMP@
@UTILITYCOLOR@
@VERSION@
upsstats.cgi(8) will also open a file called upsstats-single.html if you call it with "host=" set in the URL. That file uses the same rules and techniques documented here.
upsstats.cgi(8), upsimage.cgi(8)
The NUT (Network UPS Tools) home page: http://www.networkupstools.org/
01/25/2023 | Network UPS Tools 2.8.0 |