├── .gemtest ├── .gitignore ├── .travis.yml ├── CHANGELOG ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── VERSION ├── benchmarks └── notifier.rb ├── gelf.gemspec ├── lib ├── gelf.rb └── gelf │ ├── logger.rb │ ├── notifier.rb │ ├── severity.rb │ └── transport │ ├── tcp.rb │ ├── tcp_tls.rb │ └── udp.rb └── test ├── helper.rb ├── test_logger.rb ├── test_notifier.rb ├── test_ruby_sender.rb └── test_severity.rb /.gemtest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | pkg/ 2 | coverage/ 3 | rdoc/ 4 | tmp/ 5 | 6 | .DS_Store 7 | *.gem 8 | 9 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.1.0 -------------------------------------------------------------------------------- /benchmarks/notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/benchmarks/notifier.rb -------------------------------------------------------------------------------- /gelf.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/gelf.gemspec -------------------------------------------------------------------------------- /lib/gelf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/lib/gelf.rb -------------------------------------------------------------------------------- /lib/gelf/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/lib/gelf/logger.rb -------------------------------------------------------------------------------- /lib/gelf/notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/lib/gelf/notifier.rb -------------------------------------------------------------------------------- /lib/gelf/severity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/lib/gelf/severity.rb -------------------------------------------------------------------------------- /lib/gelf/transport/tcp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/lib/gelf/transport/tcp.rb -------------------------------------------------------------------------------- /lib/gelf/transport/tcp_tls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/lib/gelf/transport/tcp_tls.rb -------------------------------------------------------------------------------- /lib/gelf/transport/udp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/lib/gelf/transport/udp.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/test_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/test/test_logger.rb -------------------------------------------------------------------------------- /test/test_notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/test/test_notifier.rb -------------------------------------------------------------------------------- /test/test_ruby_sender.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/test/test_ruby_sender.rb -------------------------------------------------------------------------------- /test/test_severity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graylog-labs/gelf-rb/HEAD/test/test_severity.rb --------------------------------------------------------------------------------