I am very new to logstash, and am kind of stuck how to do this part.
I copied logs from azure blob container, and was able to parse via logstash and put the records in elastic search on my local machine. Now I want to change the input so that instead of file, it gets the logs directly from the azure blob storage. I looked for plugins, but did not find anything for azure.
I am hoping I can do something like this in the input. Any ideas how to get this?
input {
azureblob {
storage_name => "abcd"
storage_key => "key"
container => "logLocation"
}
}