2011-04-13 Dario Rodriguez <dario.rodriguez@artica.es>

* HP-UX/pandora_agent.conf: Fixed a wrong path for command swapinfo.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4486 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
darode 2011-06-27 09:36:50 +00:00
parent 5579a457c1
commit a304149340
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2011-04-13 Dario Rodriguez <dario.rodriguez@artica.es>
* HP-UX/pandora_agent.conf: Fixed a wrong path for command swapinfo.
2011-04-28 Junichi Satoh <junichi@rworks.jp>
* SunOS/make_solaris_package/prototype,

View File

@ -147,14 +147,14 @@ module_end
module_begin
module_name Swap_Free
module_type generic_data
module_exec swapinfo -t | grep memory | tr -d "%" | awk '{ print 100-$5 }'
module_exec /usr/sbin/swapinfo -t | grep memory | tr -d "%" | awk '{ print 100-$5 }'
module_description Unused swap memory
module_end
module_begin
module_name RAM_Free
module_type generic_data
module_exec swapinfo -t | grep memory | awk '{print $4}'
module_exec /usr/sbin/swapinfo -t | grep memory | awk '{print $4}'
module_description Unused RAM memory
module_end