├── .github_release.sh ├── .gitignore ├── .travis.yml ├── Makefile ├── logsend ├── config.go ├── converter.go ├── converter_test.go ├── export_test.go ├── files.go ├── files_test.go ├── globals.go ├── interfaces.go ├── rule.go ├── rule_test.go ├── senders │ ├── influxdb_sender.go │ ├── influxdb_sender_test.go │ ├── mysql_sender.go │ ├── newrelic_sender.go │ └── statsd_sender.go └── stdin.go ├── main.go ├── readme.md └── utils ├── bench.py ├── fill_file.sh ├── install.sh ├── many_trancates.sh └── tornado_srv.py /.github_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/.github_release.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/Makefile -------------------------------------------------------------------------------- /logsend/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/logsend/config.go -------------------------------------------------------------------------------- /logsend/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/logsend/converter.go -------------------------------------------------------------------------------- /logsend/converter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/logsend/converter_test.go -------------------------------------------------------------------------------- /logsend/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/logsend/export_test.go -------------------------------------------------------------------------------- /logsend/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/logsend/files.go -------------------------------------------------------------------------------- /logsend/files_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/logsend/files_test.go -------------------------------------------------------------------------------- /logsend/globals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/logsend/globals.go -------------------------------------------------------------------------------- /logsend/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/logsend/interfaces.go -------------------------------------------------------------------------------- /logsend/rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/logsend/rule.go -------------------------------------------------------------------------------- /logsend/rule_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/logsend/rule_test.go -------------------------------------------------------------------------------- /logsend/senders/influxdb_sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/logsend/senders/influxdb_sender.go -------------------------------------------------------------------------------- /logsend/senders/influxdb_sender_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/logsend/senders/influxdb_sender_test.go -------------------------------------------------------------------------------- /logsend/senders/mysql_sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/logsend/senders/mysql_sender.go -------------------------------------------------------------------------------- /logsend/senders/newrelic_sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/logsend/senders/newrelic_sender.go -------------------------------------------------------------------------------- /logsend/senders/statsd_sender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/logsend/senders/statsd_sender.go -------------------------------------------------------------------------------- /logsend/stdin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/logsend/stdin.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/main.go -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/readme.md -------------------------------------------------------------------------------- /utils/bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/utils/bench.py -------------------------------------------------------------------------------- /utils/fill_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/utils/fill_file.sh -------------------------------------------------------------------------------- /utils/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/utils/install.sh -------------------------------------------------------------------------------- /utils/many_trancates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/utils/many_trancates.sh -------------------------------------------------------------------------------- /utils/tornado_srv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezotrank/logsend/HEAD/utils/tornado_srv.py --------------------------------------------------------------------------------