0

对于通知,我在 Grafana 中添加了通知通道,类型为电子邮件,然后单击“发送测试”按钮,但它给出了 -

SMTP not configured, check your grafana.ini config file's [smtp] section

我已将 Grafana 安装为 docker 容器,因此我进入容器并grafana.ini使用 SMTP 详细信息更新文件并反映更改,重新启动 Grafana 并使用 -

docker restart grafana

现在转到通知频道并单击“发送测试”,但仍然看到相同的错误。

请帮助了解这里可能出了什么问题以及哪个日志文件(带有 location )来检查这里到底出了什么问题。

4

2 回答 2

2
All options in the configuration file can be overridden using environment variables using the syntax:

GF_<SectionName>_<KeyName>

Where the section name is the text within the brackets. Everything should be uppercase, . and - should be replaced by _. For example, if you have these configuration settings:

# default section
instance_name = ${HOSTNAME}

[security]
admin_user = admin

[auth.google]
client_secret = 0ldS3cretKey

[plugin.grafana-image-renderer]
rendering_ignore_https_errors = true
You can override them on Linux machines with:

export GF_DEFAULT_INSTANCE_NAME=my-instance
export GF_SECURITY_ADMIN_USER=owner
export GF_AUTH_GOOGLE_CLIENT_SECRET=newS3cretKey
export GF_PLUGIN_GRAFANA_IMAGE_RENDERER_RENDERING_IGNORE_HTTPS_ERRORS=true

参考:https ://grafana.com/docs/grafana/latest/administration/configuration/#configure-with-environment-variables

于 2020-08-07T06:46:24.170 回答
-2

我进入容器并使用 SMTP 详细信息更新了 grafana.ini 文件并反映更改

这不是容器的正确配置。使用环境变量。

于 2020-08-06T07:56:39.720 回答