Azure Logstash plugin

I am using Umbraco Azure Appender to store log4net entries in an azure table. I would like to Use Azure Logstash plugin to push these entries into elasticsearch. Currently, logs entries appear in azure table, but logstash is not forawrding to elasticsearch. Has anyone encountered this issue before?

What does your configuration look like? Is there anything interesting in the Logstash logs? Do you get anything if you just use a stdout output (i.e. temporarily take ES out of the equation)?

Hi Magnus,
Here's my logstash.conf

input {
azurewadtable {
account_name => xxxxxxxxxxx
access_key => xxxxxxxxxxx
table_name => xxxxxxxxxxx
}

}

output {
elasticsearch {
hosts => "http://xxxxxxxxxx"
user => elastic
password => changeme
index => "index_umbraco"

}
stdout { codec => rubydebug }
}

The data log entries are present in the azure table.
But the console and elasticsearch show nothing.

Below is the contents of my azure table

I hope this is helpful

Thanks
Michael

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