Syslog-Ng

syslog-ng “not message(something)”和“not match(something)”之間的區別?

  • December 17, 2012

這兩者有什麼區別?:

filter f_avc { not message(something); };

和:

filter f_avc { not match(something); };

很難用Google搜尋這些類型的問題:D

文件(我的粗體字):

將正則表達式與標頭和消息本身(即MSGHDRMSG宏返回的值)匹配。

將正則表達式匹配到日誌消息的文本,不包括標題(即MSG宏返回的值)。

引用自:https://unix.stackexchange.com/questions/58678