Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clofresh/esyslog
An Erlang implementation of the syslog server protocol
https://github.com/clofresh/esyslog
Last synced: 3 months ago
JSON representation
An Erlang implementation of the syslog server protocol
- Host: GitHub
- URL: https://github.com/clofresh/esyslog
- Owner: clofresh
- License: bsd-3-clause
- Archived: true
- Created: 2009-11-19T17:36:32.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2011-03-06T21:15:49.000Z (over 13 years ago)
- Last Synced: 2024-07-19T22:44:58.334Z (4 months ago)
- Language: Erlang
- Homepage:
- Size: 175 KB
- Stars: 41
- Watchers: 4
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
esyslog - an Erlang syslog server
=================================esyslog aims to be an extensible and robust drop-in replacement for the standard syslogd daemon.
Syslog is a network protocol for sending log messages. The current standard is [RFC 3164](http://tools.ietf.org/html/rfc3164). There are many implementations of the syslog protocol like syslogd, rsyslog and syslog-ng, but none of them are very friendly to extend unless you want to write C code. esyslog hopes to match previous implementations in features while taking advantage of Erlang's robustness and hot-code loading. esyslog will (eventually) be extensible via Erlang or a different high level dynamic language.
Dependencies
------------
* [Merlke](http://github.com/clofresh/merlke)
* [Erlang R13B03](http://www.erlang.org/download.html)Running
-------
Assuming you have all the dependencies, you can run:merlke start
Which will start a local esyslog server listening at port 7777, using the configuration at ./etc/syslog.confRoadmap
-------
* Improve syslog config parser to support all syslog.conf syntax
* Implement remote logging
* Create plugin framework