ispCP - Board - Support
CPU lm-sensors monit oder email alert? - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega International Area (/forum-22.html)
+--- Forum: German Corner (/forum-26.html)
+---- Forum: Plauderecke (/forum-49.html)
+---- Thread: CPU lm-sensors monit oder email alert? (/thread-10924.html)



CPU lm-sensors monit oder email alert? - fulltilt - 06-09-2010 08:23 PM

kennt jemand eine Möglichkeit email alerts zu senden wenn die CPU Temp. erhöht ist z.b. bei einem defekten Lüfter?


RE: CPU lm-sensors monit oder email alert? - dcreation - 06-09-2010 08:28 PM

Hast du denn eine Möglichkeit die Temperaturen auszulesen? Welche ist egal. Dann könnt man nen kleines Script erstellen.


RE: CPU lm-sensors monit oder email alert? - fulltilt - 06-09-2010 08:34 PM

über sensors kann ich die Temperatur manuell auslesen, am liebsten wäre mir eine Anbindung an Monit ...

(06-09-2010 08:28 PM)dcreation Wrote:  Hast du denn eine Möglichkeit die Temperaturen auszulesen? Welche ist egal. Dann könnt man nen kleines Script erstellen.



RE: CPU lm-sensors monit oder email alert? - dcreation - 06-09-2010 08:38 PM

Spontan:
Cron erstellen:
* * * * * /usr/local/bin/sensors > /var/tmp/lm_sensors

Monit:
check file lm_sensors with path /var/tmp/lm_sensors
if match "ALARM" then alert


RE: CPU lm-sensors monit oder email alert? - fulltilt - 06-09-2010 08:44 PM

Danke - probiere ich gleich mal Big Grin

(06-09-2010 08:38 PM)dcreation Wrote:  Spontan:
Cron erstellen:
* * * * * /usr/local/bin/sensors > /var/tmp/lm_sensors

Monit:
check file lm_sensors with path /var/tmp/lm_sensors
if match "ALARM" then alert