glossy icon indicating copy to clipboard operation
glossy copied to clipboard

syslog parser and producer

Results 16 glossy issues
Sort by recently updated
recently updated
newest added

In [Producing](https://github.com/squeeks/glossy#producing) part of the front page, here is the example you dropped: ``` var syslogProducer = require('glossy').Produce; // or wherever glossy lives var msg = syslogProducer.produce({ facility: 'local4', //...

Hi! Currently milliseconds are padded only with two zeroes, e.g. ``` 1 2021-09-27T15:52:35.35-07:00 localhost test-graylog-syslog 103065 - - error: Test message ``` Unfortunately Graylog parses `15:52:35.35` as `15:52:35.350` instead of...

Standard JS Date is displaying: > new Date() 2019-10-11T**08**:56:49.584**Z** > new Date().toString() 'Fri Oct 11 2019 **11**:01:59 **GMT+0200 (Central European Summer Time)**' You can notice, than when the time zone...

- /^(.+>)$/ can fix logs that have a space after the pri. Eg " Jan 1 ..." ----> "Jan 1 ..." - /^(\d\d\d\d)$/ can fix logs that have a year...

In parse.js, function 'GlossyParser.prototype.decodePri' when a message starts with , then the returnVal.prival will be 0. Then in the if statement 'if(returnVal.prival && returnVal.prival >= 0 && returnVal.prival

Kernel facility is getting discarded as value for kernel facility is 0. This condition turns out to be false - (options && options.facility && FacilityIndex[options.facility]) which leads the facility to...

Hi, I have a node.js code where we are using glossy npm to parse raw syslog message.I want to get rid of this code and use similar syslogparser in GoLang....

I use this awesome package in my node application with npm and the problem is that your latest release dates back to December 2014! Please update the module on npm....

Hey, `GlossyParser.prototype.parseBsdTime` uses the `new Date` constructor passing it the current year in UTC, but `new Date` causes it then to be interpreted as the local time zone's year.

Hi, we have a device which uses the following date format, which glossy does not recognize ``` 2017 Sep 28 14:12:18 hostname Security: startup-config was changed by user1 from ssh...