码迷,mamicode.com
首页 > Web开发 > 详细

json型数据,logstash邮件报警配置案例

时间:2016-04-25 19:51:03      阅读:468      评论:0      收藏:0      [点我收藏+]

标签:period

[root@mysql ~]# cat /usr/local/logstash-2.2.0/etc/test1.conf 
input {
#   stdin {
#         type => "yeshuai"
#         codec => "json"
#        }
file {
    type => "yeshuai"
    path => ["/opt/log/test.log"]
    start_position => "beginning"
    codec=>"json"
       }


}
filter {
if [type] == "yeshuai" {
 throttle {
                period => 40
                before_count => 4
                after_count => 4              
                key => "%{type}"
                add_tag => "throttled"
           }
                       }

}
output {

if "throttled" not in [tags] {
email    {
        port           =>    "25"
        address        =>    "smtp.qq.com"
        username       =>    "1820034099@qq.com"
        password       =>    "*****"
        authentication =>    "plain"
        use_tls        =>    false
        from           =>    "1820034099@qq.com"
        subject        =>    "服务器error警报"
        to             =>    "907370586@qq.com"
        via            =>    "smtp"
        body           =>    "you hava an error of plat_inter_error in host 192.168.1.224!
                              "
         }
                             }
 elasticsearch {
        hosts => ["192.168.1.224:9200"]
        index => "logstash-%{type}-%{+YYYY.MM.dd}"
        document_type => "%{type}"
        workers => 1
        flush_size => 20000
        idle_flush_time => 10
        template_overwrite => true
               }
}


本文出自 “清晰明了” 博客,请务必保留此出处http://duanyexuanmu.blog.51cto.com/1010786/1767557

json型数据,logstash邮件报警配置案例

标签:period

原文地址:http://duanyexuanmu.blog.51cto.com/1010786/1767557

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!