Questions tagged [rsyslog]

Rsyslog is enhanced syslogd with lot of enhanced features

Rsyslog is enhanced syslogd and supports among other things MYSQL, PostgreSQL, failover log destination etc. Features like encryption, failover destination, precise timestamps etc make it a ideal candidate for enterprise log management. It is available in both flavors: with support and community edition.

References:

729 questions
-1
votes
1 answer

How to rotate a log file in ubuntu on size basis hourly?

The configuration of my rsyslog file in logrotate : /opt/mapvariable/log/myapp { rotate 24 hourly maxsize 10k compress ifempty postrotate reload rsyslog >/dev/null 2>&1 || true …
ams
  • 315
  • 4
  • 17
-1
votes
1 answer

rsyslog server on windows

Is rsyslog server available on Windows?
user333655
  • 7
  • 1
  • 2
-1
votes
1 answer

rsyslog - how to forward specific log files to different destinations

I have a rsyslog server and several hundred Linux, Windows, ESX and F5 hosts that will be sending syslog messages to it. Is there any way to capture a specific character in the hostname from each message and based on what that character is forward…
-1
votes
2 answers

redirection log using rsyslog

I add this line on rsyslog.conf: if $msg contains 'arpwatch' then /var/log/test.log The problem is if I a have simultaneous lines of logs containing the expression (arpwatch), then tonly the first line is logged and the others…
Med Pen
  • 32
  • 3
-2
votes
1 answer

Ignore pattern inside message with regex from rsyslog

I'm trying to solve a regex problem with rsyslog but I've been got hard to get the desired output. I've been developing on https://www.rsyslog.com/regex/ The logs have this…
-2
votes
1 answer

rsyslog to send data to the same server showing error on modules

My app is producing logs under /var/log/myapp/app.log I need to send all the logs under app.log to my syslog file /var/log/syslog. I created a file with following content /etc/rsyslog.d $WorkDirectory /var/spool/rsyslog $template…
srinath
  • 2,748
  • 6
  • 35
  • 56
-2
votes
1 answer

c program to create a conf file in /etc/rsyslog.d/

i am supposed to create a conf file in /etc/rsyslog.d ,restart rsyslog and when pgm exits it should remove the conf file.But in c i cannot create file in /etc/rsyslog.d/ it is not prompting for password like using popen() which is used execute a…
Nitish P
  • 43
  • 9
1 2 3
48
49