grafana告警
程序员文章站
2022-07-06 10:20:51
...
首先对grafana 的配置文件进行修改
根据不同的安装方式 配置文件可能存在不一样的个位置
1 yum安装方式 存在/etc/
2 安装包 方式 grafana/config/
host 后面是465 是端口 国内禁用25端口 会出现如下错误
t=2020-04-11T20:28:03+0800 lvl=info msg="Sending alert notification to" logger=alerting.notifier.email addresses=[aaa@qq.com]
t=2020-04-11T20:28:13+0800 lvl=eror msg="Failed to send alert notification email" logger=alerting.notifier.email error="dial tcp 220.181.12.11:25: i/o timeout"
t=2020-04-11T20:28:13+0800 lvl=eror msg="failed to send notification" logger=alerting.notifier uid= error="dial tcp 220.181.12.11:25: i/o timeout"
如果出现如上错误 改端口改端口465
[smtp]
enabled = true
host = smtp.163.com:465
user = aaa@qq.com
# If the password contains # or ; you have to wrap it with triple quotes. Ex """#password;""" # password是授权码 不是账号的密码
password = xxxxxxxxxxxx
#看好有 ;的
;cert_file =
;key_file =
;skip_verify = true
from_address = aaa@qq.com
from_name = Grafana
ehlo_identity =
[emails]
;welcome_email_on_sign_up = false
templates_pattern = emails/*.html
grafana 里面配置好告警 直接可以用
本人是根据OWEN大佬的OCP教程来 写的笔记 及供参考 如果有喜欢的可以去OCP上购买文档
上一篇: 检查程序运行错误日志并发送钉钉机器人播报