mostolog

Results 38 comments of mostolog

To sum up: I like your proposal. Please, consider days/months in spanish -for example- aren't capitalized.

Ok about #188, but I would pray not to leave it as a _never done zombie issue_, but setting a roadmap for changes. One page reviewed/updated per week? Two per...

Quoting http://www.rsyslog.com/doc/master/configuration/modules/omhiredis.html > Note this mode has problems with strings with spaces in them - full message won’t work correctly. Example: https://github.com/rsyslog/rsyslog/issues/1201#issuecomment-255349193

Actually I just tried _LPUSH key this is a message_ on Redis and it doesn't work as I expected (it inserts multiple values while I was expecting just one message),...

I just mean It didn't work when I used template type="list", but considering _how well_ I tested, don't trust me until I got news...(working on it ATM)

Update: **This is something I expected to work, but it's failing** ``` template(name="redis" type="string" string="LPUSH %syslogtag% \"this is a message\"") 127.0.0.1:6379> LPOP mytag "message\" template(name="redis" type="string" string="LPUSH %syslogtag% 'this is...

Hi I'm not sure if you owe me a beer, but that's what I just tested: ``` template(name="redis2" type="string" string="LPUSH %syslogtag% this does not work") ruleset(name="json2redis"){ action(type="omfile" file="/test" template="redis2") action(...

Using redis-cli, I think this is self-explanatory: ``` 127.0.0.1:6379> LPUSH key this is a test (integer) 4 127.0.0.1:6379> LINDEX key 0 "test" 127.0.0.1:6379> LPUSH key "this is a test" (integer)...

LOL. I tried with \n and didn't work neither. I'll try to be more clear this time. If template is defined as: > template(name="redis2" type="string" string="LPUSH \"%syslogtag% %msg%\"") > (notice...

I'll copy @bobthemighty @taotetek to get their feedback. I still think it is almost an omhiredis issue.