I have a use case where I have to process files when they arrive in blob container.
The files are in a wiresharkproprietary format and need to be processed with specific program (tshark).
My goal is to execute the shell command that converts files to csv:
tshark -r <input_filename> <some other params> > <output_filename>.csv
and then save output csv files to another blob container.
I know that I can set a blob trigger in azure functions to trigger the process, but I'm not sure how to save the output file to blob and make sure that tshark is available in the runtime.
Another question is: maybe there is a better way to do this rather than azure functions?
I managed to achieve my goal by doing the following: