I am trying to use the tray for something very simple, where I would like to pull the contents from my S3 log files. I managed to create a flume agent that will read the contents from the apache access log file and use the logger receiver. Now I am trying to find a solution where I can replace the sink for registration with the βS3 receiverβ. (I know this does not exist by default)
I was looking for some pointers to guide me on the right path. Below is the file of my test properties that I am currently using.
a1.sources=src1 a1.sinks=sink1 a1.channels=ch1 #source configuration a1.sources.src1.type=exec a1.sources.src1.command=tail -f /var/log/apache2/access.log #sink configuration a1.sinks.sink1.type=logger #channel configuration a1.channels.ch1.type=memory a1.channels.ch1.capacity=1000 a1.channels.ch1.transactionCapacity=100 #links a1.sources.src1.channels=ch1 a1.sinks.sink1.channel=ch1
source share