【Grafana】告警配置併傳送郵件

ringoo_ming發表於2019-03-13


 修改grafana的配置檔案

grafana的配置檔案預設是在  /etc/grafana/grafana.ini  


修改配置檔案如下:

#################################### SMTP / Emailing ##########################
[smtp]
enabled = true  #是否允許開啟
host = smtp.exmail.qq.com:465    #傳送伺服器地址,可以再郵箱的配置教程中找到:
user = 你的郵箱
# If the password contains # or ; you have to wrap it with trippel quotes. Ex """#password;"""
# 這個密碼是你開啟smtp服務生成的密碼
password = 你的密碼
;cert_file =
;key_file =
;skip_verify = false
from_address = 你的郵箱
from_name = Grafana
# EHLO identity in SMTP dialog (defaults to instance_name)
ehlo_identity = dashboard.example.com
[emails]
;welcome_email_on_sign_up = true
#################################### Logging ##########################

重新啟動grafana服務,讓配置檔案生效

service grafana-server restart


注意!

配置完畢後傳送郵件時可能會出現如下錯誤:

error=“SMTP not configured, check your grafana.ini config file’s [smtp] section.”


這是因為 在ini檔案中一行開頭的分號表示它已被註釋掉。所以 去掉分號 ,它就可以工作了


去掉分號重啟完畢後就可以到頁面去進行測試。


測試

點選傳送,就可以去郵件檢視是否測試成功了。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31442725/viewspace-2638284/,如需轉載,請註明出處,否則將追究法律責任。

相關文章