7. MonitoringΒΆ

The bundle ships with built-in health checks to be used by the LiipMonitorBundle , see the sonata.notification.backend.heath_check service.

The rabbitmq backend uses the default URL for the Management plugin API (http://localhost:55672/api)

If you need to change the default URL, you can configure it by setting the console_url configuration value:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
sonata_notification:
    backend: sonata.notification.backend.rabbitmq

    backends:
      rabbitmq:
          exchange:     router
          connection:
              host:         "%rabbitmq_host%"
              user:         "%rabbitmq_user%"
              pass:         "%rabbitmq_pass%"
              port:         "%rabbitmq_port%"
              vhost:        "%rabbitmq_vhost%"
              console_url : http://some.other.host:55999/api