Versions Compared

Key

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

...

The trace-event-publisher-amqp profile activates trace events being published to the configured RabbitMQ channel. If, besides that, you want trace events to be also stored in a database you need to activate the trace-sql-store profile and externaldatasources profile as well. Please consult the relevant documentation on how to configure the trace-sql-store component and the externaldatasources.

Configuration (from version 13.5)

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

...

To enable a secure (TLS) AMQP connection to the queue, set the property "blueriq.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.

Configuration (before version 13.5)

From version 13.5 the properties have been renamed. The following properties should be used for Blueriq versions older than 13.5.
application-trace-event-publisher-amqp.properties

# RabbitMQ configuration
spring.rabbitmq.host=localhost
spring.rabbitmq.port=5672
spring.rabbitmq.virtualHost=/
spring.rabbitmq.username=guest
spring.rabbitmq.password=guest
spring.rabbitmq.dynamic=false
spring.rabbitmq.ssl.enabled=true
 
# Trace events channel configuration
blueriq.trace.event.publisher.channel.amqp.exchangeName=tracingEvents