https://github.com/jchristn/syslogserver
C# Syslog Server
https://github.com/jchristn/syslogserver
debug info log mono nuget syslog syslog-server warn watson-syslog-server
Last synced: 4 months ago
JSON representation
C# Syslog Server
- Host: GitHub
- URL: https://github.com/jchristn/syslogserver
- Owner: jchristn
- License: mit
- Created: 2017-09-21T00:04:27.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-09T01:31:09.000Z (7 months ago)
- Last Synced: 2024-12-17T16:17:58.229Z (4 months ago)
- Topics: debug, info, log, mono, nuget, syslog, syslog-server, warn, watson-syslog-server
- Language: C#
- Size: 117 KB
- Stars: 28
- Watchers: 7
- Forks: 25
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.TXT
Awesome Lists containing this project
README
# Syslog Server
## Simple Syslog Server in C#
Syslog Server will automatically start using a default configuration listening on UDP/514 and storing log files in the `./logs/` directory. If you wish to change this, create a file called `syslog.json` with the following structure:
```
{
"UdpPort": 514,
"DisplayTimestamps": true,
"LogFileDirectory": "./logs/",
"LogFilename": "log.txt",
"LogWriterIntervalSec": 10
}
```## Starting the Server
Build/compile and run the binary.
## Running in Docker
Refer to the `docker` directory. A build called `jchristn/syslogserver` has been stored on [Docker Hub](https://hub.docker.com/r/jchristn/syslogserver). Refer to the `docker` directory for sample deployment.