cloudflare / goflow

The high-scalability sFlow/NetFlow/IPFIX collector used internally at Cloudflare.
BSD 3-Clause "New" or "Revised" License
852 stars 171 forks source link

How to lookup the received netflow packets #100

Closed StefanoKoo closed 3 years ago

StefanoKoo commented 3 years ago

Thanks for your great projects. I made netflow packets through netflow packet generator to check if my kafka consumer received successfully received data. However, I can't deserialize the contents that my consumer console shows me. Can your console show the specific data of the netflow packets?

lspgn commented 3 years ago

Hi @StefanoKoo, You cannot deserialize in the console without a protobuf decoder. I invite you to have a look at Google's guides (eg: for Java) Goflow2 fork has an option to send JSON into Kafka.

StefanoKoo commented 3 years ago

@lspgn Thanks for another great code.