2010-02-18 Sancho Lerena <slerena@artica.es>
* unix/Linux/pandora_agent.conf, linux/pandora_agent.conf: Modified way to get loadaverage, taken from Enriquegm from the forums. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2372 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
e0e853741d
commit
f848cb4711
pandora_agents
|
@ -1,3 +1,9 @@
|
||||||
|
2010-02-18 Sancho Lerena <slerena@artica.es>
|
||||||
|
|
||||||
|
* unix/Linux/pandora_agent.conf,
|
||||||
|
linux/pandora_agent.conf: Modified way to get loadaverage, taken from
|
||||||
|
Enriquegm from the forums.
|
||||||
|
|
||||||
2010-02-16 Pablo de la Concepción <pablo.concepcion@artica.es>
|
2010-02-16 Pablo de la Concepción <pablo.concepcion@artica.es>
|
||||||
|
|
||||||
Updated tentacle from the tentacle repository and generated
|
Updated tentacle from the tentacle repository and generated
|
||||||
|
|
|
@ -103,7 +103,7 @@ module_end
|
||||||
module_begin
|
module_begin
|
||||||
module_name Load Average
|
module_name Load Average
|
||||||
module_type generic_data
|
module_type generic_data
|
||||||
module_exec uptime | awk '{ print $10 }' | cut -f 1 -d ","
|
module_exec cat /proc/loadavg |awk '{print $1}'
|
||||||
module_description Average process in CPU (Last minute)
|
module_description Average process in CPU (Last minute)
|
||||||
module_end
|
module_end
|
||||||
|
|
||||||
|
|
|
@ -116,7 +116,7 @@ module_end
|
||||||
module_begin
|
module_begin
|
||||||
module_name Load Average
|
module_name Load Average
|
||||||
module_type generic_data
|
module_type generic_data
|
||||||
module_exec uptime | awk '{ print $10 }' | cut -f 1 -d ","
|
module_exec cat /proc/loadavg |awk '{print $1}'
|
||||||
module_description Average process in CPU (Last minute)
|
module_description Average process in CPU (Last minute)
|
||||||
module_end
|
module_end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue