码迷,mamicode.com
首页 > 其他好文 > 详细

logstash-shipper.conf

时间:2018-11-03 10:27:57      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:conf   highlight   art   tput   tar   star   path   web   rsyslog   

input {
  file {
    path => ‘/data/rsyslog/*/*/*.log‘
    start_position => ‘beginning‘
    sincedb_path => ‘/data/rsyslog/sincedb/.db‘
  }
}

filter {
  grok {
    match => {
      path => "%{GREEDYDATA}/%{GREEDYDATA:type}\.log"
    }
  }

  mutate {
    gsub => [
      "type", "-web[0-9]+", ""
    ]
  }
}

output {
  redis {
    host => ‘127.0.0.1‘
    db => ‘0‘
    key => ‘logs‘
    data_type => ‘list‘
  }
}

  

logstash-shipper.conf

标签:conf   highlight   art   tput   tar   star   path   web   rsyslog   

原文地址:https://www.cnblogs.com/winnerREN/p/9899848.html

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