gelf-rb icon indicating copy to clipboard operation
gelf-rb copied to clipboard

Ruby GELF library (Graylog Extended Log Format)

Results 37 gelf-rb issues
Sort by recently updated
recently updated
newest added

As there are 2 PRs being stalled and the issue is unsolved since a long time. This is a third try to patch it. References are - https://github.com/graylog-labs/gelf-rb/pull/64 (original PR)...

GELF no longer requires a facility field (and indeed having such a field at all is deprecated), don't set a facility by default, only include a facility field if the...

With using gelf-rb 3.1.0 a multiline json style config in fluentd fails with parser error. I was able to drill the behavior down to gelf package being the only difference...

Assigning `ctx.ciphers` does not work anymore like it used to. We'll need to set `min_version` and `max_version` instead.

bug

Fixes #79 Really, I view this as work towards updating `gelf-rb` to the GELF 1.1 specification.

`Gelf::Notifier#extract_hash` merges the default options hash into the message data hash, so your messages end up including all of the default options as if they were fields. May of them...

"facility" is deprecated. Gelf output library is no longer sending it. But gelf-rb is setting it to "gelf-rb" in case it's not set. It's making users to be unable to...

Hacktoberfest

Hi. I have a Graylog server configuration in place that was able to receive data submitted via this curl: `curl -XPOST http://graylog.domain.com:12201/gelf -p0 -d '{"short_message":"Hello there", "facility":"test", "tenant":"joseph", "report":"turnovers","speed":"1288"}'` Other...

The fix in #53 breaks the fluentd config parser so that array and object literals can't be parsed. Fluentd loads both yajl and json gem and uses the json gem...

Hi I am trying to initilize the gelf Logger with ` logger = ::GELF::Logger.new("localhost", 12201, "WAN", { :facility => 'UDP', :app=> 'someapp', :level => 0 }) logger.info ("some information") #...