本篇內(nèi)容介紹了“如何使用Fluentd發(fā)送告警郵件”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!
創(chuàng)新互聯(lián)建站主要從事網(wǎng)站建設(shè)、做網(wǎng)站、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務。立足成都服務東光,十余年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務專業(yè),歡迎來電咨詢建站服務:18982081108
安裝td-agent
安裝插件:fluent-plugin-grepcounter
td-agent-gem install fluent-plugin-grepcounter
安裝插件:fluent-plugin-mail
td-agent-gem install fluent-plugin-mail
@type tail
path /var/log/apache2/access.log # Set the location of your log file
@type apache2
tag apache.access
@type grepcounter
count_interval 3 # The time window for counting errors (in secs)
input_key code # The field to apply the regular expression
regexp ^5\d\d$ # The regular expression to be applied
threshold 1 # The minimum number of erros to trigger an alert
add_tag_prefix error_5xx # Generate tags like "error_5xx.apache.access"
@type copy
@type stdout # Print to stdout for debugging
@type mail
host smtp.gmail.com # Change this to your SMTP server host
port 587 # Normally 25/587/465 are used for submission
user USERNAME # Use your username to log in
password PASSWORD # Use your login password
enable_starttls_auto true # Use this option to enable STARTTLS
from example@gmail.com # Set the sender address
to alert@example.com # Set the recipient address
subject 'HTTP SERVER ERROR'
message Total 5xx error count: %s\n\nPlease check your Apache webserver ASAP
message_out_keys count # Use the "count" field to replace "%s" above
使用in_tail追蹤Apache的access日志,并使用apache2來解析日志。
使用grepcounter對日志中的5xx狀態(tài)碼進行過濾和計數(shù)。
如果在count_interval指定的時間內(nèi)5xx錯誤數(shù)達到了threshold指定的閾值,F(xiàn)luentd就會產(chǎn)生一條tag為error_5xx.apache.access的事件,該事件會重新進入Fluentd的事件路由中,被下一個
每收到一個error_5xx.apache.access事件,這個
如此配置,F(xiàn)luentd就成了一個郵件告警服務,可用來監(jiān)測Apache的異常訪問。
# for init.d users
$ sudo /etc/init.d/td-agent restart
# for systemd users
$ sudo systemctl restart td-agent
“如何使用Fluentd發(fā)送告警郵件”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!