fluentd http发送日志测试
测试环境,1台linux服务器(192.168.19.201),已经安装好fluentd
默认http方式接收日志是打开的,如下配置
# http://localhost:8888/<tag>?json=<json>
<source>
type http
port 8888
</source>
参数说明
<tag>表示为日志标签,为了在Match部分进行匹配
json为固定字符,表示后面要输入json格式的数据
<json>为具体输入的json格式的数据
转储配置如下。
<match **>
type file
path /var/log/fluent/else
compress gz
</match>
在台式机浏览器中输入测试数据http://192.168.19.201:8888/mongo.apache?json={"1":"2"}
到/var/log/fluent/目录下查看转储输出日志tail -f else.20120928.b4cab973e8d931ee9
得到如下输出 2012-09-28T11:32:00+08:00 mongo.apache {"1":"2"}
相关推荐
molong0 2020-06-13
东杰书屋 2020-01-28
85991738 2020-01-11
yelllowcong 2019-11-12
yelllowcong 2019-07-01
大木行走 2019-07-01
swarm笨笨 2019-07-01
willluckysmile 2019-06-30
BlackWing 2019-06-30
wanchaopeng 2019-06-21
东杰书屋 2019-06-21
StupidBird00 2019-05-29
东杰书屋 2019-04-25
StupidBird00 2018-12-24
cullinans 2018-06-13
cullinans 2019-04-24
BlackWing 2019-04-20