README.md in fluent-plugin-azure-queue-0.0.5.pre vs README.md in fluent-plugin-azure-queue-0.0.6.pre

- old
+ new

@@ -18,11 +18,11 @@ tag queue_input storage_account_name my_storage_account storage_access_key my_storage_access_key queue_name my_storage_queue - fetch_interval 5 + fetch_interval 5 lease_duration 30 </source> **tag (required)** @@ -67,19 +67,19 @@ int bytes = message.Length * sizeof(Char); if (bytes < 64000) { outputQueue.Add(message); } - else + else { log.Warning($"Message is larger than 64k with {bytes} bytes. Dropping message"); } } } ``` ## azure_event_hub_capture Input Plugin -This plugin is designed to work with blobs stored to a container via [Azure Event Hubs Capture](https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-capture-overview) +This plugin is designed to work with blobs stored to a container via [Azure Event Hubs Capture](https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-capture-overview) **Warning:** This plugin will delete the blobs after emitting the contents in fluentd. ### Input: Configuration @@ -87,12 +87,12 @@ @type azure_event_hub_capture tag event_hub_input storage_account_name my_storage_account storage_access_key my_storage_access_key - container_name my_capture_container - fetch_interval 30 + container_names my_capture_container + fetch_interval 30 lease_duration 30 </source> **tag (required)** @@ -104,12 +104,12 @@ **storage_access_key (required)** The storage account access key -**container_name (required)** +**container_names (required)** -The capture container name +The capture container names, comma separated. **message_key** The the record key to put the message data into. Default 'message'