rsyslog input 不支援變數

2021-07-22 12:09:14 字數 797 閱讀 3676

input(type="imfile"

file="/usr/local/apache-tomcat-7.0.55_8082/logs/localhost_access_log.*.txt"

tag="zjzc-api-access01"

severity="info"

facility="local5")

不支援這種寫法:

input(type="imfile"

file="/usr/local/apache-tomcat-7.0.55_8082/logs/localhost_access_log.%$year%-%$month%-%$day%.txt"

tag="zjzc-api-access01"

severity="info"

facility="local5")

比如:$inputfilename /web/webfront/logs/catalina-20160422.out

但是,因為tomcat生成的日誌名是每天按日期變化的。

catalina-20160422.out

catalina-20160423.out

catalina-20160424.out

所以配置檔案寫成下面這個,但是rsyslog不能正常識別,

$inputfilename /web/webfront/logs/catalina-%$year%%$month%%$day%.out

但是rsyslog在自己生成檔案時%$year%%$month%%$day%這個變數是有效的。

mysql不支援 MySQL不支援的特性

mysql 1 不支援物化檢視。2 不支援位圖索引。3 不支援並行查詢。4 不支援雜湊關聯,mysql的所有關聯都是巢狀迴圈關聯。不過,可以通過建立乙個雜湊索引來曲線實現。5 不允許對同一表同時進行查詢和更新。報錯 update tb1 as outer tb1 set cnt select cou...

linux vi 不支援中文

問題說明 網頁html與chi語言的結合,使用c語言輸出html語句,因為其中用到中文,出現亂碼 問題解決 1.在cgi中用到的 使用utf 8編碼,utf 8是國際統一的中文編碼 具體語句為 fprintf cgiout,metacharset utf 8 參考文章 2.上述步驟完成後,重新編譯,...

Hive的on不支援非等值連線解決,不支援or

oracle select a.b.id asb id,b.class as b class from lpx test a a left outer join lpx test b b on a.id b.id and a.class b.class 連線條件的第二個是非等值的,不能照搬上面 hi...