Dalee / udp-web-logger

Dead simple udp logger with web ui

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

UDP Web Logger

Build Status codecov

Requirements

  • Go 1.10

Why

The very common use case is when your applications use syslog as a transport for the logs. In staging / production you can set up ELK stack with logstash parsing pattern like:

<%{POSINT:syslog_pri}>%{SYSLOGTIMESTAMP:syslog_timestamp} %{SYSLOGHOST:syslog_hostname} %{DATA:syslog_program}(?:\[%{POSINT:syslog_pid}\])?: %{GREEDYDATA:syslog_message}

But during developing the whole ELK stack is not needed mostly. That's where this logger comes in. Cool thing is that you can embed this daemon into a Vagrant box.

Usage

$ UDP_LISTEN="127.0.0.1:10110" WEB_LISTEN="127.0.0.1:10100" ./udp-web-logger --help

Usage: udp-web-logger [options]

Options:
--udp-read-buffer-size   size of buffer to read incoming UDP packet into. Default: 4096.
--max-messages           maximum amount of messages to keep. Default: 50.
--help                   prints this message.

Env:
UDP_LISTEN - address to listen UDP on. Default: 127.0.0.1:9010.
WEB_LISTEN - address to listen HTTP on. Default: 127.0.0.1:9000.

Links

https://github.com/Dalee/elk-playground

https://github.com/Dalee/node-logger

https://github.com/Dalee/monolog-syslog3164

About

Dead simple udp logger with web ui

License:MIT License


Languages

Language:Go 61.2%Language:JavaScript 19.0%Language:CSS 7.4%Language:HTML 7.4%Language:Makefile 4.4%Language:Dockerfile 0.5%