├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── error.go ├── gelf_reader.go ├── gelf_writer.go ├── go.mod ├── go.sum ├── graylog_hook.go └── graylog_hook_test.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemnasium/logrus-graylog-hook/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemnasium/logrus-graylog-hook/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemnasium/logrus-graylog-hook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemnasium/logrus-graylog-hook/HEAD/README.md -------------------------------------------------------------------------------- /error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemnasium/logrus-graylog-hook/HEAD/error.go -------------------------------------------------------------------------------- /gelf_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemnasium/logrus-graylog-hook/HEAD/gelf_reader.go -------------------------------------------------------------------------------- /gelf_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemnasium/logrus-graylog-hook/HEAD/gelf_writer.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemnasium/logrus-graylog-hook/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemnasium/logrus-graylog-hook/HEAD/go.sum -------------------------------------------------------------------------------- /graylog_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemnasium/logrus-graylog-hook/HEAD/graylog_hook.go -------------------------------------------------------------------------------- /graylog_hook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gemnasium/logrus-graylog-hook/HEAD/graylog_hook_test.go --------------------------------------------------------------------------------