ELK 学习笔记之 Logstash之inputs配置

Posted AK47Sonic

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ELK 学习笔记之 Logstash之inputs配置相关的知识,希望对你有一定的参考价值。

Logstash之inputs配置:

 

input plugin doc:

https://www.elastic.co/guide/en/logstash/current/index.html

插件很多,选两个常用的使用下。

1. stdin input plugin

参数:

建立stdin-sample.conf:

input {

 stdin {}

}

output {

 stdout {}

}

执行:

./logstash -f stdin-sample.conf

输入即所得

2. file input plugin

参数:

建立 file-sample.conf:

input{

file{

path => ["/usr/local/mongodb/logs/mongodb.log"]

type => "mongodblog"

start_position => "beginning"

}

}

output{

stdout{}

}

执行:

./logstash -f file-sample.conf

MongoDB的日志都读进来来。

 

以上是关于ELK 学习笔记之 Logstash之inputs配置的主要内容,如果未能解决你的问题,请参考以下文章

ELK 学习笔记之 Logstash之filter配置

ELK 学习笔记之 Logstash基本语法

ELK 学习笔记之 Logstash安装

elk之logstash学习

ELK 学习笔记之 elasticsearch环境搭建

ELK学习笔记a