table of contents
| PSENSOR-SERVER(1) | User Commands | PSENSOR-SERVER(1) |
NAME¶
psensor-server - Temperature and system monitoring Web serverSYNOPSIS¶
psensor-server [ OPTION]...DESCRIPTION¶
psensor-server is an HTTP server for monitoring hardware sensors remotely.* the temperature of the motherboard and CPU sensors (using lm-sensors).
* the temperature of the Hard Disk Drives (using hddtemp).
* the rotation speed of the fans (using lm-sensors).
"name": "temp1",
"type": 257,
"min": 47.800000,
"max": 60.800000,
"measures": [ { "value": 47.800000, "time": 1311374873 },
{ "value": 49.800000, "time": 1311374878 },
{ "value": 49.800000, "time": 1311374883 } ],
"last_measure": { "value": 49.800000, "time": 1311374883 } }
* id: the uniq identifier of the sensor.
* name: a humean readable name of the sensor (might not be uniq).
* type: the type of sensor. Look at src/lib/psensor.h for the
different types.
* min: the minimal value of the sensor.
* max: the maximal value of the sensor.
* measures: all measures of the sensor.
* last_measure: the last value of the sensor.
* time: the time of a measure as the number of seconds since
1970/01/01.
OPTIONS¶
- -h, --help
- display this help and exit
- -v, --version
- display version information and exit
- -d,--debug
- run in debug mode
- -p,--port=PORT
- webserver port
- -w,--wdir=DIR
- directory containing webserver pages
WARNING¶
psensor-server does not provide any way to restrict the connection to the HTTP server, worst, no effort has been made against malicious HTTP attacks. You should make the psensor-server port available only to a network or computer you trust by using the usual network security tools of the system (for example, iptables(8) ).REPORTING BUGS¶
Report bugs to: jeanfi@gmail.com psensor home page: <http://wpitchoune.net/psensor>COPYRIGHT¶
Copyright © 2010-2012 jeanfi@gmail.com License GPLv2: GNU GPL version 2 or later <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>SEE ALSO¶
psensor(1), sensors(1), sensors-detect(8)| March 2012 | psensor-server 0.6.2.17 |