Below you will find pages that utilize the taxonomy term “DEV”
Posts
Filebeat - Configuring Filebeat
Filebeat 的設定檔為 filebeat.yml,可以設定資料的輸入與輸出,以及其它細項設定。
像是設定資料的輸入,可以指定要輸入的 Log 檔位置。
filebeat.prospectors: - input_type: log paths: - E:\AgileSlot\Log\*\*Full*log* 可以設定 Log 資料要怎樣切割傳送,像是若使用 Log4Net 去記錄 Log,不特別調整格式的話 Log 前面一定會有 Log 的時間,就可以以 Log 時間當作切割傳送的依據。
filebeat.prospectors: - input_type: log # The regexp Pattern that has to be matched. The example pattern matches all lines starting with [ multiline.pattern: '^[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}' # Defines if the pattern set under pattern should be negated or not. Default is false. multiline.negate: true # Match can be set to "after" or "before".
read more