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

Logstach配置文件详解

时间:2016-07-15 17:24:57      阅读:954      评论:0      收藏:0      [点我收藏+]

标签:elk   logstash   elk stack   

配置文件的基本格式,输入部分,过滤器部分和输出部分。

# This is a comment. You should use comments to describe
# parts of your configuration.
input {
  ...
}
filter {
  ...
}
output {
  ...
}


每个部分都可以配置一个或多个插件。下面展示的是输入部分,有两个file插件。

input {
  file {
    path => "/var/log/messages"
    type => "syslog"
  }
  file {
    path => "/var/log/apache/access.log"
    type => "apache"
  }
}


插件的值类型

数组

path => [ "/var/log/messages", "/var/log/*.log" ]
path => "/data/mysql/mysql.log"


  布尔

ssl_enable => true


字符串

 name => "Hello world"
 name => ‘It\‘s a beautiful day‘


 哈希

match => {
  "field1" => "value1"
  "field2" => "value2"
  ...
}


  字节

  my_bytes => "1113"   # 1113 bytes
  my_bytes => "10MiB"  # 10485760 bytes
  my_bytes => "100kib" # 102400 bytes
  my_bytes => "180 mb" # 180000000 bytes


 代码

 codec => "json"


 数值:浮点或整型

port => 33


密码型:不会记录到日志或打印出来

 my_password => "password"


  路径型:字符串

my_path => "/tmp/logstash"


注释:使用#

本文出自 “这个人的IT世界” 博客,请务必保留此出处http://favccxx.blog.51cto.com/2890523/1826747

Logstach配置文件详解

标签:elk   logstash   elk stack   

原文地址:http://favccxx.blog.51cto.com/2890523/1826747

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