Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To be able to publish event messages, the event channel needs to be configured in application-trace-event-publisher-amqp.properties This file can be found, or otherwise should be placed in <Blueriq installation folder>\Runtime\conf.
application-trace-event-publisher-amqp.properties

# RabbitMQ configuration
springblueriq.trace.event.publisher.channel.amqp.rabbitmq.host=localhost
springblueriq.trace.event.publisher.channel.amqp.rabbitmq.port=5672
springblueriq.trace.event.publisher.channel.amqp.rabbitmq.virtualHost=/
springblueriq.trace.event.publisher.channel.amqp.rabbitmq.username=guest
springblueriq.trace.event.publisher.channel.amqp.rabbitmq.password=guest
springblueriq.trace.event.publisher.channel.amqp.rabbitmq.dynamic=false
springblueriq.trace.event.publisher.channel.amqp.rabbitmq.ssl.enabled=true

 
# Trace events channel configuration
blueriq.trace.event.publisher.channel.amqp.rabbitmq.exchangeName=tracingEvents

...

To enable a secure (TLS) AMQP connection to the queue, set the property "springblueriq.trace.event.publisher.channel.amqp.rabbitmq.ssl.enabled" to "true".
The default for AQMP port with TLS on RabbitMQ is '5671', it needs to be explicitly enabled though, see https://www.rabbitmq.com/ssl.html for more information.

...