Saltstack Official Galera Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
922B

  1. {% raw %}
  2. server:
  3. alert:
  4. GaleraServiceDown:
  5. if: >-
  6. mysql_up != 1
  7. labels:
  8. severity: warning
  9. service: mysql
  10. annotations:
  11. summary: 'Galera service down'
  12. description: 'Galera service is down on node {{ $labels.host }}'
  13. GaleraNodeNotReady:
  14. if: 'mysql_wsrep_ready != 1'
  15. for: 1m
  16. labels:
  17. severity: warning
  18. service: mysql
  19. annotations:
  20. summary: 'Galera on {{ $labels.host }} not ready'
  21. description: 'The Galera service on {{ $labels.host }} is not ready to serve queries.'
  22. GaleraNodeNotConnected:
  23. if: 'mysql_wsrep_connected != 1'
  24. for: 1m
  25. labels:
  26. severity: warning
  27. service: mysql
  28. annotations:
  29. summary: 'Galera on {{ $labels.host }} not connected'
  30. description: 'The Galera service on {{ $labels.host }} is not connected to the cluster.'
  31. {% endraw %}