thankyou gerhard
i confirm the hostname strings are the correct case etc, those should match
i watched your whole video (very good) and i understand the concept of asynchronous vs synchronous but i am just having trouble with syntax
what would an example of synchronous processing be with more than one discard filter? what would the config look like for those lines?
i tried:
- Code: Select all
changing:
if $hostname startswith 'xlin' then ~
if $hostname startswith 'xlog' then ~
if $hostname startswith 'xprp' then ~
*.* :ommysql:localhost,Syslog,rsyslog,appliance
*.* /u01/logs/master.log
to:
if $hostname startswith 'xlin' then ~
*.* :ommysql:localhost,Syslog,rsyslog,appliance
*.* /u01/logs/master.log
if $hostname startswith 'xlog' then ~
*.* :ommysql:localhost,Syslog,rsyslog,appliance
*.* /u01/logs/master.log
if $hostname startswith 'xprp' then ~
*.* :ommysql:localhost,Syslog,rsyslog,appliance
*.* /u01/logs/master.log
but then i get duplicate messages.. i must be missing something obvious here.. i have read all documentation i can find on the monitorware kb, the wiki, the documentation with the tarball and i have not been able to find an example config of multiple discard filters to one db target.