首页 > 其他 > 详细

实时收集日志文件

时间:2020-04-02 13:02:30      阅读:72      评论:0      收藏:0      [点我收藏+]

1.在home下创建一个test文件

2.vim  example.conf  (在flume下的conf文件内)
a1.sources = r1
a1.sinks = k1
a1.channels = c1

# Describe/configure the source
a1.sources.r1.type = exec
a1.sources.r1.command =tail -F /home/test

# Describe the sink
a1.sinks.k1.type = logger

# Use a channel which buffers events in memory
a1.channels.c1.type = memory
a1.channels.c1.capacity = 1000
a1.channels.c1.transactionCapacity = 100

# Bind the source and sink to the channel
a1.sources.r1.channels = c1
a1.sinks.k1.channel = c1

3.启动flume

bin/flume-ng agent -c conf  --conf-file conf/example.conf --name a1 -Dflume.root.logger=INFO,console

技术分享图片

 

4.另外启动一个终端输入以下命令 

[root@h1s1 flume]# echo hello huangze hui >> /home/test

5.然后去之前的终端检查输出

技术分享图片

 

实时收集日志文件

原文:https://www.cnblogs.com/zbf-1998/p/12618638.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!