Unfortunately, adding/specifying http in the Logstash Indexer.conf still 
does not work communicating to ES 1.0 RC1.
 
Output follows, first the stdout error reported by Logstash followed by 
indexer.conf contents
 
tony@Marvel-openSUSE:~/Working> java -jar logstash-1.3.3-flatjar.jar agent 
-f indexer.conf
Error: Expected one of #, { at line 17, column 17 (byte 355) after output {
  stdout { debug => true debug_format => "json"}
  elasticsearch 
tony@Marvel-openSUSE:~/Working> cat indexer.conf
input {
  redis {
    host => "127.0.0.1"
    # these settings should match the output of the agent
    data_type => "list"
    key => "logstash"
    # We use the 'json' codec here because we expect to read
    # json events from redis.
    codec => json
  }
}
output {
  stdout { debug => true debug_format => "json"}
  elasticsearch http{
    host => "127.0.0.1"
  }
}
 
 
 
 
 
 
 
 

On Thursday, January 30, 2014 2:41:13 PM UTC-8, Binh Ly wrote:

> Tony,
>
> You should be able to get this to work as-is directly to ES 0.90.10. If 
> you want to use another version of ES like 1.0 RC1, for now you need to 
> change the elasticsearch output to elasticsearch_http:
>
>   #elasticsearch {
>   #  host => "localhost"
>   #  port => 9300
>   #}
>   elasticsearch_http { 
>     host => "localhost"
>   }
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/20eddcbe-8d8f-4fac-bdd6-033ea2ea7451%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to