Proxysql alerrting rules

Hi ,

just wanted to know if there is some plan to have integrated rules template for proxysql in pmm2.

And also if there are already some prometheus rules for proxysql that can be used

1 Like

Hi Dipesh,

Sad to say but now there is no plan for adding rules templates for proxysql in the next PMM release.

But here is an example of a template that you may use an example for creating custom templates.
It’s an alert rule that is triggered if a proxysql instance is down.

templates:
- name: ProxySQL status
  version: 1
  summary: ProxySQL status
  expr: |-
    proxysql_up < 1
  params:
  for: 15s
  severity: warning
  annotations:
    description: |-
        LABELS: {{ $labels }}
    summary: ProxySQL service is down on  (instance {{ $labels.node_name }})

1 Like