logger_logstash_backend icon indicating copy to clipboard operation
logger_logstash_backend copied to clipboard

Logstash backend for the Elixir Logger

Results 12 logger_logstash_backend issues
Sort by recently updated
recently updated
newest added

I'm troubleshooting some oddball issues where I am appear to have the same config and versions of this lib included in 2 projects but only one works. Wondering if you'd...

I have the following logstash config ``` # Sample Logstash configuration for receiving # UDP syslog messages over port 7777 input { udp { port => 7777 queue_size => 10000...

I'm having trouble with a high number of records not being indexed and I'm not sure what's causing the error. Can you help determine if it's a config on my...

thanks for the library! I use the elixir version 1.6, and from time to time I get the following error: `2018-12-11 11:56:53.657 [error] Bad value on output port 'udp_inet'` Do...

any way to remove the dependency on tzdata/timex or to make it optional?

I installed this yesterday and noticed that the milliseconds were missing from all my timestamps. This PR fixes that issue. I've also modernized the date / time handling code and...

Allow the user to configure the backend with options to pass to [ExJSX.encode](https://github.com/talentdeficit/exjsx#options). This PR closes #25 by allowing the the user to pass `uescape` so that unicode characters escape...

When I do `logger.info("something interesting", meta: "meta_value")`, I see on logstash `meta` property is placed inside `fields` i.e. `fields.meta`: ![logstash-fields meta](https://user-images.githubusercontent.com/6623366/30760866-08d89178-9faa-11e7-94b4-6bd7227015c2.png) Is it possible to have that property `meta` as...

This is a small change to reflect the changes to types in Logstash 6.0.0 [https://www.elastic.co/guide/en/elasticsearch/reference/current/_basic_concepts.html#_type](https://www.elastic.co/guide/en/elasticsearch/reference/current/_basic_concepts.html#_type)

In Logstash 6.0.0 and beyond, types are depreciated. As per: [https://www.elastic.co/guide/en/elasticsearch/reference/current/_basic_concepts.html#_type](https://www.elastic.co/guide/en/elasticsearch/reference/current/_basic_concepts.html#_type) Running this plugin with Logstash 6.0.0 results in: `[2017-12-13T09:37:48,242][WARN ][logstash.outputs.elasticsearch] Could not index event to Elasticsearch. {:status=>400, :action=>["index", {:_id=>nil,...