Guest User

Untitled

a guest
Aug 25th, 2018
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. global:
  2.  
  3. templates:
  4. - '/etc/alertmanager/*.tmpl'
  5. # The root route on which each incoming alert enters.
  6. route:
  7. # default route if none match
  8. receiver: alert-emailer
  9.  
  10. # The labels by which incoming alerts are grouped together. For example,
  11. # multiple alerts coming in for cluster=A and alertname=LatencyHigh would
  12. # be batched into a single group.
  13. # TODO:
  14. group_by: ['alertname', 'priority']
  15.  
  16. # All the above attributes are inherited by all child routes and can
  17. # overwritten on each.
  18.  
  19. receivers:
  20. - name: alert-emailer
  21. email_configs:
  22. - to: 'abc@oxyz.com'
  23. send_resolved: false
  24. from: 'abc@xyz.com'
  25. smarthost: 'smtp.gmail.com:587'
  26. auth_username: 'abc@xyz.com'
  27. auth_password: ''
  28. auth_secret: 'abc@xyz.com'
  29. auth_identity: 'abc@xyz.com'
Add Comment
Please, Sign In to add comment