Home Directory Addons SNMP check_snmp_aix_disk.sh

Search Exchange

Search All Sites

Nagios Live Webinars

Let our experts show you how Nagios can help your organization.

Contact Us

Phone: 1-888-NAGIOS-1
Email: sales@nagios.com

Login

Remember Me

Directory Tree

check_snmp_aix_disk.sh

Rating
2 votes
Favoured:
0
Current Version
1.0
Last Release Date
2014-06-25
Compatible With
  • Nagios 1.x
  • Nagios 2.x
  • Nagios 3.x
  • Nagios 4.x
Owner
License
GPL
Hits
20115
Files:
FileDescription
check_snmp_aix_disk.shcheck_snmp_aix_disk.sh
Nagios CSP

Meet The New Nagios Core Services Platform

Built on over 25 years of monitoring experience, the Nagios Core Services Platform provides insightful monitoring dashboards, time-saving monitoring wizards, and unmatched ease of use. Use it for free indefinitely.

Monitoring Made Magically Better

  • Nagios Core on Overdrive
  • Powerful Monitoring Dashboards
  • Time-Saving Configuration Wizards
  • Open Source Powered Monitoring On Steroids
  • And So Much More!
this shell runs on nagios server,it can check aix os disk usage by snmp protocol,it supports checking aix5.3 and aix6.1 etc
Reviews (1)
1. customized to display output as MB and GB depends on the size of partition.
2. customized to display usage in percentage only when normal while displaying total, used, free when warn or cri


249c249
#convert size to MB and GB
250a251
> (( total_G=${total_M}/1024 ))
251a253
> (( used_G=${used_M}/1024))
253a256
> (( avail_G=${avail_M}/1024 ))
255a259,276
>
> if [[ $total_M -gt 1024 ]];then
> total_out="total=${total_G}GB"
> else
> total_out="total=${total_M}MB"
> fi
>
> if [[ $used_M -gt 1024 ]];then
> used_out="used=${used_G}GB"
> else
> used_out="used=${used_M}MB"
> fi
>
> if [[ $avail_M -gt 1024 ]];then
> avail_out="free=${avail_G}GB"
> else
> avail_out="free=${avail_M}MB"
> fi
259a281
> PERF="$PERF ${disk_array[$k]} Usage:${use_percent}%;"
262a285
> PERF="$PERF ${disk_array[$k]} Usage:${use_percent}% ${total_out} ${used_out} ${avail_out};"
265a289
> PERF="$PERF ${disk_array[$k]} Usage:${use_percent}% ${total_out} ${used_out} ${avail_out};"
267d290