├── .gitignore ├── README ├── Rakefile ├── lib └── logporter │ ├── event.rb │ ├── namespace.rb │ ├── protocol │ └── syslog3164.rb │ ├── server.rb │ └── server │ ├── connection.rb │ └── defaulthandler.rb ├── logporter.gemspec ├── parser └── syslog_protocol.rl ├── server.rb ├── test └── syslog.rb └── udptest.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | *.rbc 3 | core 4 | *.gem 5 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loggly/logporter/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/logporter/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loggly/logporter/HEAD/lib/logporter/event.rb -------------------------------------------------------------------------------- /lib/logporter/namespace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loggly/logporter/HEAD/lib/logporter/namespace.rb -------------------------------------------------------------------------------- /lib/logporter/protocol/syslog3164.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loggly/logporter/HEAD/lib/logporter/protocol/syslog3164.rb -------------------------------------------------------------------------------- /lib/logporter/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loggly/logporter/HEAD/lib/logporter/server.rb -------------------------------------------------------------------------------- /lib/logporter/server/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loggly/logporter/HEAD/lib/logporter/server/connection.rb -------------------------------------------------------------------------------- /lib/logporter/server/defaulthandler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loggly/logporter/HEAD/lib/logporter/server/defaulthandler.rb -------------------------------------------------------------------------------- /logporter.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loggly/logporter/HEAD/logporter.gemspec -------------------------------------------------------------------------------- /parser/syslog_protocol.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loggly/logporter/HEAD/parser/syslog_protocol.rl -------------------------------------------------------------------------------- /server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loggly/logporter/HEAD/server.rb -------------------------------------------------------------------------------- /test/syslog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loggly/logporter/HEAD/test/syslog.rb -------------------------------------------------------------------------------- /udptest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loggly/logporter/HEAD/udptest.rb --------------------------------------------------------------------------------