Logstash-how to read gzip logs stored in Azure Blob using

Hello Everyone,
I have requirement to read the logs stored in Azure which is in *.log.gz format.
I have installed logstash-input-azureblob, logstash-codec-gzip_lines plugins with logstash
In the conf file I have below input
input
{
azureblob
{
storage_account_name => "strsample"
storage_access_key => "samplekey"
container => "samplecontainer"
codec => "gzip_lines"
}
}

but I am still not able to read the logs from gzip.
Can anyone help here

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.