简体   繁体   English

普罗米修斯警报管理器“收件人”字段中的多个电子邮件接收器

[英]Multiple email receivers in prometheus alertmanager "to" field

如何在“收件人”字段中创建具有多个电子邮件地址的接收器配置?

您可以在to字段中输入逗号分隔的电子邮件地址。

to: 'user1@example.com, user2@example.com'

For prometheus 1.8 I am using two "to" configurations in the same receiver.对于 prometheus 1.8,我在同一个接收器中使用了两个“to”配置。

receivers:

  - name: 'bla1-and-bla2-mails'
    email_configs:
    - to: 'bla1@example.com' 
      from: 'prometheus@example.com'
      require_tls: false
      send_resolved: true
    - to: 'bla2@example.com'
      from: 'prometheus@example.com'
      require_tls: false
      send_resolved: true

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何在opencart中向多个收件人发送电子邮件? - How to send an email to multiple receivers in opencart? 发送给多个接收者的Python 3.4电子邮件引发错误 - Python 3.4 email to multiple receivers throws an ERROR 如何通过 marco 将带有 Excel 工作表的电子邮件发送给多个经过小修改的接收者 - How to send a email with Excel sheet through marco to multiple receivers with small modifications 收件人很多时无法发送电子邮件 - Can not send email when there are a lot of receivers 如何知道电子邮件是否无法到达接收者 - How to know if Email failed to reach its receivers 邮件列表地址在收件人To:字段中可见 - Mail list address visible in receivers To: field PHP - IMAP - 是否可以从发送的电子邮件中获取收件人的电子邮件地址? - PHP - IMAP - Is it possible to get receivers email address from a sent email? Indy使用UTF-8字符的接收者发送电子邮件 - Indy send email with receivers having UTF-8 characters Laravel 5并在单个字段中验证多个电子邮件地址 - Laravel 5 & validating multiple email addresses in a single field Javascript 验证 Adobe 表单字段 - Email Cc(多个 email 输入) - Javascript validation for an Adobe Form Field - Email Cc (Multiple email inputs)
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM