I am a beginner to flume. I am testing the flume installation in my windows 64 bit operating system and so i just wrote a simple configuration file with the name s.properties
a1.sources = r1
a1.channels = c1
a1.sources.r1.type = seq
a1.sources.r1.channels = c1
a1.channels = c1
a1.sinks = k1
a1.sinks.k1.type = logger
a1.sinks.k1.channel = c1
But now when i run the below command in windows, i do not get any output
flume-ng agent -n a1 --conf ./conf/ -f .\s.properties
Below is the output i get
As you can see, i am not getting any output. Can someone please assist here