成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

nagios磁盤利用率監(jiān)控

#!/usr/bin/env perl
###################################
#Version 1.1
#Auth Badboy
#FileName Check_disk_utilization.pl
#LastModify 20120722
###################################
use strict;
use Net::SNMP;
use Nagios::Plugin;

(my $snmpVersion = Net::SNMP->VERSION) =~ s/\D//g;
my $TIMEOUT=15;

my $np=Nagios::Plugin->new(
       shortname=>'CheckDiskUtilization',
       usage=>'Usage: %s -H <host> -C <community> -c <threshold> -w <threshold>',
       version =>'Version 1.1'
);

sub isnotnum { # Return true if arg is not a number
  my $num = shift;
  if ( $num =~ /^-?(\d+\.?\d*)|(^\.\d+)$/ ) { return 0; }
  return 1;
}

$SIG{'ALRM'} = sub {
   $np->nagios_exit(UNKNOWN, "ERROR: Alarm signal (Nagios time-out)");
};

sub verbose {
   my $t = shift;
   print $t, "\n" if $np->opts->verbose > 0;
}

sub check_options{
   $np->add_arg(spec => 'hostname|H=s',   help => 'Hostname or IP address to poll', required => 1, label => [ 'HOSTNAME' ]);
   $np->add_arg(spec => 'community|C=s',  help => 'SNMP community to use when connecting', required => 1, default => 'public', label
 => [ 'COMMUNITY' ]);
  $np->add_arg(spec => 'critical|c=i',   help => 'Return critical status if larger than critical threshold', label => [ 'threshold n
um' ]);
   $np->add_arg(spec => 'warning|w=i',    help => 'Return warning status if larger than warning threshold', label => [ 'threshold nu
m' ]);
   $np->add_arg(spec => 'port|p=i',       help => 'Changes the SNMP port, defaults to 161', default => 161, label => [ 'PORT' ]);
   $np->add_arg(spec => 'snmpv1|1',       help => 'Use SNMP v1 instead of the default version 2c');
   $np->add_arg(spec => 'perfdata',       help => 'Write out performance data (number of disk used size)');

   $np->getopts();

   if (defined($np->opts->timeout) && (isnotnum($np->opts->timeout) || ($np->opts->timeout < 2) || ($np->opts->timeout > 60))) {
      $np->nagios_exit(UNKNOWN, 'Timeout must be between 1 and 60');
   }
   if (!defined($np->opts->critical) || !defined($np->opts->warning) || isnotnum($np->opts->critical) || isnotnum($np->opts->warning
)) {
         $np->nagios_exit(UNKNOWN, 'The values for critical and warning threshold must be integers');
      }
}

check_options();

my $disk_warning=$np->opts->warning;
my $disk_critical=$np->opts->critical;

if (defined($TIMEOUT)) {
   verbose("Alarm at $TIMEOUT");
   alarm($TIMEOUT);
} else {
   verbose("No timeout defined : " . $np->opts->timeout . " + 10");
   alarm ($np->opts->timeout + 10);
}

#snmp data
my $disk_index_table = ".1.3.6.1.2.1.25.2.3.1.1";
my $disk_index_result=get_snmp_data($disk_index_table);
my $disk_desrc_table = ".1.3.6.1.2.1.25.2.3.1.3";
my $disk_desrc_result=get_snmp_data($disk_desrc_table);
my $disk_units_table = ".1.3.6.1.2.1.25.2.3.1.4";
my $disk_units_result=get_snmp_data($disk_units_table);
my $disk_size_table = ".1.3.6.1.2.1.25.2.3.1.5";
my $disk_size_result=get_snmp_data($disk_size_table);
my $disk_used_table = ".1.3.6.1.2.1.25.2.3.1.6";
my $disk_used_result=get_snmp_data($disk_used_table);

my $status=undef;
my $critical_count=0;

foreach my $oid (keys(%$disk_index_result)) {
    my $disk_desrc=${$disk_desrc_result}{$disk_desrc_table.".".${$disk_index_result}{$oid}};
    my $disk_total_size=${$disk_size_result}{$disk_size_table.".".${$disk_index_result}{$oid}};
    my $disk_used_size=${$disk_used_result}{$disk_used_table.".".${$disk_index_result}{$oid}};
    if($disk_desrc!~/Virtual Memory|R:/  and $disk_desrc !~/Physical Memory|R:/ and $disk_total_size !=0 ){
        my $disk_used_utilization=$disk_used_size/$disk_total_size*100;
        if($disk_used_utilization > $disk_critical){
              printf "%.2s Critical %2.2f%%; ",$disk_desrc,$disk_used_utilization;
              $status=2;
              ++$critical_count;
              next;
        }
        elsif($disk_used_utilization >$disk_warning){
             printf "%.2s Warning %2.2f%%; ",$disk_desrc,$disk_used_utilization;
              $status=1;
              next;
        }
        elsif( $status!=1 and $status!=2  ){
                        printf "%.2s OK;",$disk_desrc;
                        $status=0;
                }
    }           
}
if($critical_count != 0){
    $status=2;
    verbose("\nPlugin Exit Code=$status");
}
verbose("Plugin Exit Code=$status");
exit $status;

sub get_snmp_data(){
my $oid=shift;
my ($session, $error) = (undef, undef);
if (defined($np->opts->snmpv1)) {
   # SNMPv1 login
   ($session, $error) = Net::SNMP->session(
      -hostname  => $np->opts->hostname,
      -community => $np->opts->community,
      -port      => $np->opts->port,
      -timeout   => $np->opts->timeout
   );
} else {
   # SNMPv2 login
   ($session, $error) = Net::SNMP->session(
      -hostname  => $np->opts->hostname,
      -version   => 2,
      -community => $np->opts->community,
      -port      => $np->opts->port,
      -timeout   => $np->opts->timeout
   );
}

if (!defined($session)) {
   $np->nagios_exit(UNKNOWN, 'SNMP Error: ' . $error);
}

#get snmp data
   my $result = undef;
   $result = ($snmpVersion < 4) ? $session->get_table($oid) : $session->get_table(Baseoid => $oid);

if (!defined($result)) {
   $session->close;
   $np->nagios_exit(UNKNOWN, "ERROR: get snmp data table: " . $session->error);
}
        return $result;
        $session->close();
}

昌都網(wǎng)站建設公司成都創(chuàng)新互聯(lián)公司,昌都網(wǎng)站設計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為昌都超過千家提供企業(yè)網(wǎng)站建設服務。企業(yè)網(wǎng)站搭建\成都外貿網(wǎng)站建設要多少錢,請找那個售后服務好的昌都做網(wǎng)站的公司定做!

 

今天將使用的腳本做了大大調整,供大家參考!

如果想了解更多,請關注我們的公眾號
公眾號ID:opdevos
掃碼關注

nagios磁盤利用率監(jiān)控

本文標題:nagios磁盤利用率監(jiān)控
URL網(wǎng)址:http://jinyejixie.com/article24/gdpjje.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供企業(yè)建站、網(wǎng)站內鏈、網(wǎng)站設計公司網(wǎng)站導航、品牌網(wǎng)站制作、用戶體驗

廣告

聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

成都做網(wǎng)站
山东| 德兴市| 五原县| 德兴市| 巨野县| 望都县| 应城市| 河北省| 盐源县| 汾阳市| 松江区| 宜都市| 西畴县| 阜平县| 定安县| 阿荣旗| 龙海市| 宁津县| 邵东县| 宁津县| 长葛市| 双流县| 邵东县| 肥西县| 永济市| 昌平区| 甘谷县| 莱阳市| 福州市| 渭南市| 平顶山市| 邵阳市| 海丰县| 大港区| 乃东县| 宁安市| 张掖市| 库伦旗| 伊川县| 富蕴县| 商城县|