返回介绍

output配置 - email

发布于 2020-06-28 10:03:42 字数 3008 浏览 1134 评论 0 收藏 0

配置示例

  1. output {
  2. email {
  3. to => "admin@website.com,root@website.com"
  4. cc => "other@website.com"
  5. via => "smtp"
  6. subject => "Warning: %{title}"
  7. options => {
  8. smtpIporHost => "localhost",
  9. port => 25,
  10. domain => 'localhost.localdomain',
  11. userName => nil,
  12. password => nil,
  13. authenticationType => nil, # (plain, login and cram_md5)
  14. starttls => true
  15. }
  16. htmlbody => ""
  17. body => ""
  18. attachments => ["/path/to/filename"]
  19. }
  20. }

注意:以上示例适用于 Logstash 1.5options => 的参数配置在 Logstash 2.0 之后的版本已被移除,(126 邮箱发送到 qq 邮箱)示例如下:

  1. output {
  2. email {
  3. port => "25"
  4. address => "smtp.126.com"
  5. username => "test@126.com"
  6. password => ""
  7. authentication => "plain"
  8. use_tls => true
  9. from => "test@126.com"
  10. subject => "Warning: %{title}"
  11. to => "test@qq.com"
  12. via => "smtp"
  13. body => "%{message}"
  14. }
  15. }

解释

outputs/email 插件支持 SMTP 协议和 sendmail 两种方式,通过 via 参数设置。SMTP 方式有较多的 options 参数可配置。sendmail 只能利用本机上的 sendmail 服务来完成 —— 文档上描述了 Mail 库支持的 sendmail 配置参数,但实际代码中没有相关处理,不要被迷惑了。。。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文