I'm creating a logging facility for an application that will use RabbitMQ to collect log messages. I'm trying to decide on how I should structure the topic field of the message.
One way I could do it is something like:
<instance uuid>.<major component>.<minor component>.<log level>
or another alternative is something like:
<log level>.<major component>.<minor component>.<instance uuid>
Are there any performance or other considerations I should take in to account when deciding on the order of fields in the topic? or is it mostly arbitrary? As far as I can tell they are equally easy to match against using wildcards if I plan to use a topic exchange.