• smokeping 报警配置


    摘自:

    http://blog.csdn.net/achejq/article/details/51556494

    smokeping 默认用sendmail 发邮件告警,也可以直接调用外部程序进行报警。smokeping的alert设置有点复杂,但是却很好用,设置很灵活,考虑得很周全。

    一、配置邮件支持

    默认情况下sendmail 是不通过163、qq之类的邮件服务器发送的,不过我们略微修改下配置即可以支持。首先需要安装 Authen::SASL 模块(auth 需要用的),然后修改 smokeping/lib/Smokeping.pm 。

    如下:

    1. #头上加
    2. use Authen::SASL;
    3. #定位到sendmail函数,默认新版本sendmail函数的定义的已经是下面这样了,如果不是改成下面这样
    4. sub sendmail ($$$){
    5. my $from = shift;
    6. my $to = shift;
    7. $to = $1 if $to =~ /<(.*?)>/;
    8. my $body = shift;
    9. if ($cfg->{General}{mailhost} and
    10. my $smtp = Net::SMTP->new([split /s*,s*/, $cfg->{General}{mailhost}],Timeout=>5) ){
    11. $smtp->auth(split(/s*,s*/, $cfg->{General}{mailusr}),split(/s*,s*/, $cfg->{General}{mailpwd}));
    12. $smtp->mail($from);
    13. $smtp->to(split(/s*,s*/, $to));
    14. $smtp->data();
    15. $smtp->datasend($body);
    16. $smtp->dataend();
    17. $smtp->quit;
    18. } elsif ($cfg->{General}{sendmail} or -x "/usr/lib/sendmail"){
    19. open (M, "|-") || exec (($cfg->{General}{sendmail} || "/usr/lib/sendmail"),"-f",$from,$to);
    20. print M $body;
    21. close M;
    22. } else {
    23. warn "ERROR: not sending mail to $to, as all methodes failed ";
    24. }
    25. }
    26. #找到 '_vars =>' ,把 mailusr mailpwd 加进去。不然不能启动哦!General configuration values valid for the whole SmokePing setup.
    27. DOC
    28. _vars =>
    29. [ qw(owner imgcache imgurl datadir dyndir pagedir piddir sendmail offset
    30. smokemail cgiurl mailhost mailusr mailpwd snpphost contact display_name
    31. syslogfacility syslogpriority concurrentprobes changeprocessnames tmail
    32. changecgiprogramname linkstyle precreateperms ) ],

    配置完成后修改配置文件/opt/smokeping/etc/config ,增加邮件服务器的配置:

    1. mailhost = smtp.361way.com
    2. mailusr = monitor@361way.com
    3. mailpwd = xxxxxxxxx

    二、Alerts部分配置

    1、自定义alerts告警策略

    如下定义了几种告警策略,bigloss 、someloss等

    1. *** Alerts ***
    2. to = admin@361way.com
    3. from = monitor@361way.com
    4. +bigloss
    5. type = loss
    6. # in percent
    7. pattern = ==0%,==0%,==0%,==0%,>0%,>0%,>0%
    8. comment = suddenly there is packet loss
    9. +someloss
    10. type = loss
    11. # in percent
    12. pattern = >0%,*12*,>0%,*12*,>0%
    13. comment = loss 3 times in a row
    14. +startloss
    15. type = loss
    16. # in percent
    17. pattern = ==S,>0%,>0%,>0%
    18. comment = loss at startup
    19. +rttdetect
    20. type = rtt
    21. # in milli seconds
    22. pattern = <10,<10,<10,<10,<10,<100,>100,>100,>100
    23. comment = routing messed up again ?
    24. +hostdown
    25. type = loss
    26. # in percent
    27. pattern = ==0%,==0%,==0%, ==U
    28. comment = no reply
    29. +lossdetect
    30. type = loss
    31. # in percent
    32. pattern = ==0%,==0%,==0%,==0%,>20%,>20%,>20%
    33. comment = suddenly there is packet loss

    以上几种告警,这里选取三种说明如下:

    • someloss: 如果在12次检查中出现了3次丢包的情况(不论丢多少个包),就进行alert; 
    • rttbad:
      如果连续出现两次50毫秒以上的延时,就进行alert; 
    • rrtdetect:
      之前5次检查延时都少于10毫秒,前6次检查延时都少于100毫秒,第7次开始连续3次检查延时都大于100毫秒的话,就进行alert。

    2、策略应用

    在target里面加上相应的策略配置即可,如下:

    1. ++ 361way
    2. menu = 361way_host
    3. title =361way.com
    4. host = www.361way.com
    5. alerts = someloss,hostdown

    主机一旦出现告警,就会通过邮件发送到我们事先配置的邮箱中,类似下图:

    smokeping-alert

    上图中的邮件告警内容也可以进行自定义格式输出和修改,这个还是修改Smokeping.pm文件,修改其中如下部分即可:

    1. my $default_mail = <<DOC;
    2. Subject: [SmokeAlert] <##ALERT##> <##WHAT##> on <##LINE##>
    3. <##STAMP##>
    4. Alert "<##ALERT##>" <##WHAT##> for <##URL##>
    5. Pattern
    6. -------
    7. <##PAT##>
    8. Data (old --> now)
    9. ------------------
    10. <##LOSS##>
    11. <##RTT##>
    12. Comment
    13. -------
    14. <##COMMENT##>
    15. DOC

    3、pattern匹配

    pattern匹配是编写alert规则中很最要的一部分,官方对这部分有说明,不过我查到了一个香港同胞总结的要好一些,这里摘录下,不做翻译了。

    smokeping-pattern

    三、特殊调用

    1、外部程序调用

    调用外部告警程序,如IM、短信等的示例如下:

    1. *** Alerts ***
    2. to = |/usr/local/smokeping/bin/alert.sh
    3. from = joe@somehost

    "to" 选项,默认是要填入一个email地址的,但是只要在"="后面加上"|",后面再跟你自定义的脚本的路径,就可以调用自己的脚本进行alert了。脚本会读入5或者6个参数:name-of-alert, target, loss-pattern, rtt-pattern, hostname,[raise]。自己选择使用哪些参数alert即可。

    这里从老外站点上找到有一个示例如下:

    config 配置

    1. to = |/etc/smokeping/config.d/trace_alert.sh 2> /tmp/trace.log

    脚本内容:

    1. ########################################################
    2. # Script to email a mtr report on alert from Smokeping #
    3. ########################################################
    4. alertname=$1
    5. target=$2
    6. losspattern=$3
    7. rtt=$4
    8. hostname=$5
    9. email="monitoring@email.com"
    10. smokename="BR-NYC-"
    11. if [ $losspattern" = “loss: 0%" ];
    12. then
    13. subject="Clear-${smokename}-Alert: $target host: ${hostname}"
    14. else
    15. subject="${smokename}Alert: ${target} – ${hostname}"
    16. fi
    17. echo MTR Report for hostname: ${hostname}" > /tmp/mtr.txt
    18. echo “" >> /tmp/mtr.txt
    19. echo sudo mtr -n report ${hostname} "
    20. sudo /usr/sbin/mtr -n –report ${hostname} >> /tmp/mtr.txt
    21. echo “" >> /tmp/mtr.txt
    22. echo Name of Alert: " $alertname >> /tmp/mtr.txt
    23. echo “Target: " $target >> /tmp/mtr.txt
    24. echo Loss Pattern: " $losspattern >> /tmp/mtr.txt
    25. echo “RTT Pattern: " $rtt >> /tmp/mtr.txt
    26. echo Hostname: " $hostname >> /tmp/mtr.txt
    27. echo “" >> /tmp/mtr.txt
    28. echo Full mtr command is: sudo /usr/sbin/mtr -n report ${hostname}" >> /tmp/mtr.txt
    29. echo “subject: " $subject
    30. if [ -s /tmp/mtr.txt ] then
    31. mailx -s ${subject}" $email
    32. fi

    2、特定主机发送到特定用户

    to 表示接受所有报警的邮箱,如果需要在特定的节点报警发送到特定的邮箱
    则在该节点上增加alertee = testmonitor@139.com即可。具体可以参看/opt/smokeping/lib/Smokeping.pm源码,如下部分:

        1. foreach my $addr (map {$_ ? (split /s*,s*/,$_) : ()} $cfg->{Alerts}{to},$tree->{alertee},$alert->{to}){
    在尝试学习新的语言之前先理解这门语言的设计原理能够让你在探索这门新语言时保持一个清醒而且开发的状态。
  • 相关阅读:
    CGI(通用网关接口)
    PHP简介
    SEO搜索引擎优化/URL
    使用表单标签,与用户交互
    认识<img>标签,为网页插入图片
    使用mailto在网页中链接Email地址
    使用<a>标签,链接到另一个页面
    1037. Magic Coupon (25)
    1038. Recover the Smallest Number (30)
    1034. Head of a Gang (30) -string离散化 -map应用 -并查集
  • 原文地址:https://www.cnblogs.com/jackchen001/p/6868382.html
Copyright © 2020-2023  润新知