mail.go 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. package service
  2. import (
  3. "context"
  4. "fmt"
  5. "net/mail"
  6. "net/smtp"
  7. "strings"
  8. "time"
  9. "go-common/app/interface/openplatform/monitor-end/model"
  10. "go-common/app/interface/openplatform/monitor-end/model/monitor"
  11. "go-common/library/log"
  12. "github.com/scorredoira/email"
  13. )
  14. var text = `消息时间:%s
  15. 最近%d秒内,%s端%s服务%s的%s出现异常(%s),异常数量超过告警阀值 %d
  16. `
  17. func (s *Service) mail(c context.Context, p *monitor.Log, t *model.Target, curr int, code string) {
  18. if t == nil {
  19. return
  20. }
  21. var groups = t.Groups
  22. if groups == nil || len(t.Groups) == 0 {
  23. product := s.productKeys[productKey(t.Product)]
  24. if product == nil || len(product.Groups) == 0 {
  25. return
  26. }
  27. groups = product.Groups
  28. }
  29. for _, g := range groups {
  30. if g.Name == "" || g.Interval == 0 {
  31. continue
  32. }
  33. if ok, err := s.dao.GetMailLock(c, g.Name, g.Interval, t, code); err != nil || !ok {
  34. continue
  35. }
  36. go s.mailByGroup(c, g.Receivers, p, curr, t.Threshold, t.Duration, code)
  37. }
  38. return
  39. }
  40. func (s *Service) mailByGroup(c context.Context, receivers string, p *monitor.Log, curr int, threshold int, duration int, code string) {
  41. tos := strings.Split(receivers, ",")
  42. if len(tos) == 0 {
  43. return
  44. }
  45. for i, t := range tos {
  46. tos[i] = t + "@bilibili.com"
  47. }
  48. source := sourceFromLog(p)
  49. now := time.Now().Format("2006-01-02 15:03:04")
  50. title := fmt.Sprintf("【端监控告警】%s端%s出现异常", source, p.Product)
  51. body := fmt.Sprintf(text, now, duration, source, p.Product, p.Event, p.SubEvent, code, threshold)
  52. if err := send(tos, title, body, 0); err != nil {
  53. log.Error("s.mailByGroup.send error(%+v), mail to(%s), title(%s), body(%s)", err, receivers, title, body)
  54. } else {
  55. log.Info("s.mailByGroup.send successed, mail to(%s), title(%s), body(%s)", receivers, title, body)
  56. }
  57. }
  58. /*
  59. * const HOST = 'smtp.exmail.qq.com';
  60. * const USER = 'show@bilibili.com';
  61. * const PASS = 'Kfpt2017';
  62. * const NAME = 'bilibili演出票务';
  63. */
  64. func send(to []string, title string, body string, mode int) error {
  65. var (
  66. m *email.Message
  67. host = "smtp.exmail.qq.com:25"
  68. )
  69. if mode == 0 {
  70. m = email.NewMessage(title, body)
  71. } else {
  72. m = email.NewHTMLMessage(title, body)
  73. }
  74. m.From = mail.Address{
  75. Name: "kfc监控告警",
  76. Address: "show@bilibili.com",
  77. }
  78. m.To = to
  79. return email.Send(host, smtp.PlainAuth("", "show@bilibili.com", "Kfpt2017", "smtp.exmail.qq.com"), m)
  80. }