-
## Improved logging support
### Topics:
- Logging drivers
- Initial logging drivers
- Default driver improvements
#### Logging drivers
The driver interface should be able to support the smallest subs…
-
Is this intentional (should I use a multi decoder, and a custom lua decoder and add this in), or should this be added to rsyslog.lua? Ideally this would be PID and process name. Right now I get a bunc…
-
From RFC3164 timeformat send using syslog need to be in HH:MM:SS where HH=24 hours format.
But on 0.13.1 the time format if `log_file: file:///dev/log` contains miliseconds:
```
2013-03-07 08:28:40,…
-
I'd recommend using the standard 7-levels of logging as defined in RFC-5424 (from https://en.wikipedia.org/wiki/Syslog#Severity_levels):
Debug, Informational, Notice, Warning, Error, Critical, Alert,…
-
Source has "Mar" as name in. This is the fact since 1.3. 00:00:00
Is there a Date parse bug?
All sources stopped working at 28.02. 23:59:59 and from then wie only have "Mar" as source
![image](https…
ghost updated
10 years ago
-
Ubuntu by default uses rsyslog with this option enabled:
```
$ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat
```
Commenting that out gives you high precision timestamps instead, which is wh…
-
I have some working code that implements a logger which logs in syslog format (see RFC 5424). It logs via streams.
If this is useful I can create a pull request. Otherwise just close this issue.
-
Hey guys! In the spirit of being able to integrate this with my project already using Monolog and handing out PSR-3 LoggerInterface's, don't you think it would be cool to add a fluentd handler for tho…
aktau updated
11 years ago
-
The SyslogFacility enumeration class is missing values 12, 13, 14, and 15. According to the standard Syslog format RFC 5424, these values correspond to:
12 NTP subsystem
13 log audit
…
-
On the line that reads "*(logger->msg_start + msg_len) = '\0';", you are corrupting memory that you didn't allocate when trying to send a message that's the same length as the buffer. (msg_len - 1 is…