logsearch / logsearch-boshrelease

A BOSH-scalable Elasticsearch+Logstash+Kibana release
http://www.logsearch.io
Apache License 2.0
57 stars 46 forks source link

Setting logstash_ingestor.debug throws Unknown setting 'debug' for stdout" #53

Closed mrdavidlaing closed 10 years ago

mrdavidlaing commented 10 years ago

Since logstash 1.4, stdout no longer support the debug field.

(jobs/ingestor_syslog/templates/config/syslog_to_redis.conf.erb)[https://github.com/logsearch/logsearch-boshrelease/blob/master/jobs/ingestor_syslog/templates/config/syslog_to_redis.conf.erb#L15-L17] which reads:

<% if p("logstash_ingestor.debug") %>
    stdout { debug => true codec => "json"}
    <% end %>

Should read

<% if p("logstash_ingestor.debug") %>
    stdout { codec => "json"}
    <% end %>
dpb587 commented 10 years ago

I fixed the outputs when I upgraded logstash (see develop branch), but somehow missed the relp input one (committed fix above).