multimon.conf 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # Sample multimon configuration file
  2. #
  3. # This file is not required. Without it, multimon will use the default
  4. # field layout.
  5. #
  6. # Temperature selection
  7. #
  8. # Pick "TEMPC" for Celsius or "TEMPF" for Fahrenheit. This will override
  9. # the --enable-celsius setting from the compile. UPSTEMP (below) will
  10. # use this setting by default.
  11. TEMPC
  12. # Format:
  13. # FIELD <variable> "<field name>" "<field suffix>"
  14. #
  15. # <variable> is either a word from the UPS protocol like battchg (see the
  16. # table in src/cgi/upsfetch.c) or a special word in uppercase.
  17. #
  18. # Special words are:
  19. # MODEL - Show the model name for this system in cyan
  20. #
  21. # STATUS - Parse the status for this system using the appropriate color
  22. #
  23. # UPSTEMP and AMBTEMP use the default scale. This is set to C if you use
  24. # --enable-celsius at compile time *or* if you use "TEMPC" above.
  25. #
  26. # UPSTEMP - Show the UPS temperature in the default scale (suffix ignored)
  27. # AMBTEMP - Show the ambient temperature in the default scale (suffix ignored)
  28. #
  29. # UPSTEMPC - Show the UPS temperature in degrees C (suffix ignored)
  30. # UPSTEMPF - Show the UPS temperature in degrees F (suffix ignored)
  31. # AMBTEMPC - Show the ambient temperature in degrees C (suffix ignored)
  32. # AMBTEMPF - Show the ambient temperature in degrees F (suffix ignored)
  33. #
  34. # They're called "special" since they actually understand the content
  35. # being printed and do other things based on what's in there.
  36. #
  37. # <field name> is what you'd like this column to be called on the page.
  38. # Remember that this is HTML, so you can actually embed markup in here.
  39. # This means you can even include images here. You can include quotes
  40. # (and backslashes!) in the string by escaping them with a backslash (\).
  41. #
  42. # <field suffix> is typically something like % or VAC. It's useful if
  43. # you want to convey the units that apply to a value.
  44. #
  45. # Example config
  46. FIELD SYSTEM "System" ""
  47. FIELD MODEL "Model" ""
  48. FIELD STATUS "Status" ""
  49. FIELD battpct "Battery Chg" "%"
  50. FIELD utility "Utility" "VAC"
  51. FIELD loadpct "UPS Load" "%"
  52. FIELD UPSTEMP "UPS Temp" ""
  53. FIELD runtime "Batt. Run Time" "min."
  54. FIELD DATA "Data" "All data"
  55. # These are only useful if you have a Smart-UPS model with the Measure-UPS II
  56. # measurement card. No other models presently support these features.
  57. #
  58. # FIELD AMBTEMP "Ambient Temp" ""
  59. # FIELD HUMIDITY "Ambient Humidity" "%"