[ insecure_skip_verify:<boolean> |default=false] receiver Receiver 是一个或多个通知集成的命名配置。 注意:作为取消过去对新接收器的暂停的一部分,同意除了现有要求之外,新的通知集成将需要有一个具有推送访问权限的承诺维护者。 # Receiver 的唯一名称。 name:<string># 多个通知集成的配置。 email_configs: ...
# 着重说明一下,如果开启了tls,提示报错 starttls failed: x509: certificate signed by unknown authority # 需要在 email_configs 下配置 insecure_skip_verify: true 来跳过 tls 验证。 smtp_require_tls: false # 2.模板,email、企业微信的模板配置存放位置,钉钉的模板会单独配置。 templates: '/usr/apps/al...
如果提示报错 email.loginAuth failed: 530 Must issue a STARTTLS command first,那么就需要设置为 true。 着重说明一下,如果开启了 tls,提示报错starttls failed: x509: certificate signed by unknown authority,需要在 email_configs 下配置insecure_skip_verify: true来跳过 tls 验证。 修改AlertManager 启动命令,...
# 如果提示报错 email.loginAuth failed: 530 Must issue a STARTTLS command first,那么就需要设置为 true。# 着重说明一下,如果开启了 tls,提示报错 starttls failed: x509: certificate signed by unknown authority# 需要在 email_configs 下配置 insecure_skip_verify: true 来跳过 tls 验证。smtp_require_tls...
insecure_skip_verify: false # 根据实际情况配置是否跳过TLS验证 headers: Subject: '[ALERT] {{ .Status | toUpper }}: {{ .GroupLabels.alertname }}' Importance: 'high' html: | {{ .Status }}: {{ .GroupLabels.alertname }} Summary: {{ .CommonAnnotations...
insecure_skip_verify: true bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token relabel_configs: - action: labelmap regex: __meta_kubernetes_node_label_(.+) 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 上面的配置和我们之前配置 node-exporter 的时候几乎是一样的,区别是我...
[ insecure_skip_verify: <boolean> | default = false] # 发件人 [ from: <tmpl_string> | default = global.smtp_from ] # 收件人 to: <tmpl_string> # 邮件标题 [ headers: { <string>: <tmpl_string>, ... } ] # 邮件html正文信息 ...
access_token=YOUR_ACCESS_TOKEN' send_resolved: true http_config: # 如果钉钉Webhook需要认证,可以配置TLS或Basic Auth # tls_config: # ca_file: /path/to/ca.pem # cert_file: /path/to/cert.pem # key_file: /path/to/key.pem # insecure_skip_verify: false # bearer_token: YOUR_BEARER_...
InsecureSkipVerify: in.InsecureSkipVerify, @@ -1360,10 +1361,10 @@ func (cb *configBuilder) convertTLSConfig(ctx context.Context, in *monitoringv1. out.KeyFile = path.Join(tlsAssetsDir, assets.TLSAssetKeyFromSecretSelector(crKey.Namespace, in.KeySecret).String()) } return out return &...
cat blackbox.yml modules: http_2xx: prober: http http_post_2xx: prober: http http: method: POST tcp_connect: prober: tcp pop3s_banner: prober: tcp tcp: query_response: - expect: "^+OK" tls: true tls_config: insecure_skip_verify: false ssh_banner: prober: tcp tcp: query_response...