logstash 安装与启动

2018-08-16 09:47:44 浏览数 (1)

官网下载

https://www.elastic.co/cn/products/logstash

在logstash/config目录创建配置文件logstash.config内容如下

代码语言:javascript复制
#配置收集规则
input {
  stdin {}
}


#配置过滤规则
filter {
    grok {
        match => {
            "message" => "%{WORD} %{IP:client} %{WORD}"
        }
    }
}
#配置输出规则
output {
     elasticsearch {
                hosts => ["10.116.69.4:9200" ]
                action => "index"
                codec => rubydebug
                index => "%{type}-%{ YYYY.MM.dd}"
                template_name => "%{type}"
        }
}

启动

nohup ./bin/logstash -f logstash.config &>nohup.log&

0 人点赞