tuffk / Logstash-output-to-Azure-Blob

Plugin to send Logstash output to Azure blob
Other
8 stars 15 forks source link

how can i use this #37

Open nikuljain opened 4 years ago

nikuljain commented 4 years ago

is there an sample output config

guregini commented 4 years ago

Hi @nikuljain. This is an example for a basic configuration: output { azure { storage_account_name => "my-azure-account" # required storage_access_key => "my-super-secret-key" # required container_name => "my-container" # required size_file => 102410245 # optional time_file => 10 # optional restore => true # optional temporary_directory => "path/to/directory" # optional prefix => "a_prefix" # optional upload_queue_size => 2 # optional upload_workers_count => 1 # optional rotation_strategy_val => "size_and_time" # optional tags => [] # optional encoding => "none" # optional } }