Re: Elasticsearch logging

2015-01-05 Thread Magnus Bäck
On Friday, January 02, 2015 at 19:20 CET, Jesse Redl wrote: > When reviewing the logs generated by elasticsearch (1.4.x), a single > log message is being split across multiple lines? Yes, that's normal for Java logs. > Is this configurable within logging.yml? My undstanding is that > elas

Re: Elasticsearch logging

2015-01-05 Thread Jesse Redl
For reference here is the configuration we are currently using: file: > type: rollingFile > file: ${path.logs}/${cluster.name}.log > maxBackupIndex: 1 > maxFileSize: "100MB" > layout: > type: pattern > conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n" On Frid

Re: Elasticsearch logging

2015-01-02 Thread Nikolas Everett
Logging.yml is a funky wrapper around log4j.properties style log4j configuration so that is why you don't see as much documentation on it. Do you see log lines smashed together and cut apart randomly? That'd be a bug. Its customary for logs to be single lines except for stack traces which contai

Elasticsearch logging

2015-01-02 Thread Jesse Redl
Hey All, When reviewing the logs generated by elasticsearch (1.4.x), a single log message is being split across multiple lines? Is this configurable within logging.yml? My undstanding is that elasticsearch is powered by log4j however, I'm not familiar with this product, nor can I find any de