博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Logstash配置语法及相关命令
阅读量:6251 次
发布时间:2019-06-22

本文共 1199 字,大约阅读时间需要 3 分钟。

配置结构以及插件位置

输入插件:

input{ … }
过滤插件:
filter{ … }
输出插件:
output{ … }

数据类型

- Array

users => [{id => 1,name => N1},{id => 2,name => N2}]

 

 

- lists

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

- Boolean

ssl_enable => true

- Bytes

my_bytes => "1113" # 1113 bytes
my_bytes => "10MiB" # 10485760 bytes

- Codec

codec => "json"

- Hash

match => {"field"=>"value1" "field"=>"value2"…}

- Number

port => 33

- Password

my_password => "password"

- URI

my_uri => ""

- Path

my_path=> "/tmp/logstash"

- String

name => "Hello World"

- Comments

this is a comment

条件判断

equality,etc: ==,!=,<,>,<=,>=

regexp: =~,!~
inclusion: in,not in
boolean: and ,or ,nand ,xor
unary: !()

命令行参数

执行: -e 执行-e后面的参数 

bin/logstash -e 'input{stdin{}} output{stdout{}}'

文件: --config 或 -f 执行-f后面的conf文件

bin/logstash -f mypipeline.conf

-t, --config.test_and_exit

bin/logstash -f first-pipeline.conf --config.test_and_exit

-r, --config.reload.automatic

bin/logstash -f first-pipeline.conf --config.reload.automatic

 

日志:  -l

工作线程: --filterwokers 或 -w 只针对过滤器插件

插件: --pluginpath 或 -p 后面跟上插件存放的路径

输出调试日志:--verbose 或 -v 输入调试的日志

输出DBUG: -vv

输出版本:-V, --version

 

转载于:https://www.cnblogs.com/blogjun/articles/c33a55f69801cb5db38cbbade9a81db0.html

你可能感兴趣的文章
poi做一个简单的EXCAL
查看>>
几种查询emacs帮助的办法
查看>>
Python_基础_(模块,time,random,os,sys,json,shelve,xml,序列化反序列化)
查看>>
异常:Project configuration is not up-to-date with pom.xml解决方案
查看>>
HDU2647 拓扑排序
查看>>
ThinkPHP/---微信支付PC流程
查看>>
JavaScript 05
查看>>
python 多线程编程之threading模块(Thread类)创建线程的三种方法
查看>>
实验三
查看>>
水仙花数
查看>>
P3308 [SDOI2014]LIS(最小割+退流)
查看>>
C语言作业--数据类型
查看>>
压位高精
查看>>
jsp 中对jar 包的引用
查看>>
python操作mysql数据库
查看>>
Yii: gii 403 Error you are not allowed to access this page
查看>>
计算汉字长度
查看>>
Codeforces 911E - Stack Sorting
查看>>
BZOJ 1853: [Scoi2010]幸运数字
查看>>
基于敏捷的测试交付物通用设计
查看>>