Azure / azure-diagnostics-tools

Plugins and tools for collecting, processing, managing, and visualizing diagnostics data and configuration
98 stars 94 forks source link

Is it possible to use 2 blobs in the input of the logstash? #198

Closed Marusyk closed 5 years ago

Marusyk commented 5 years ago

Is it possible to use 2 blobs in the input of the logstash like:

input {
    azureblob
    {
        storage_account_name => 'mystorageaccount1'
        storage_access_key => 'VGhpcyBpcyBhIGZha2Uga2V5Lg'
        container => 'container1'
        codec => line
    },
   azureblob
    {
        storage_account_name => 'mystorageaccount2'
        storage_access_key => 'VGhpcyBpcyBhIGZha2Uga2V5Lg'
        container => 'container2'
        codec => line
    }
}