Replies: 2 comments
-
The default HTTP headers equivalant keys/values are supposed to be present as default metadata |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Related to #293
Upon receipt of an event on a queue destinations (at time of writing that's RabbitMQ and AWS SQS) there is no way to determine the event topic based on the payload or metadata.
For RabbitMQ, the topic is used as the routing key, so it's possible to configure a RabbitMQ exchange to route events based on the topic/routing key.
However, SQS has no concept of topics, and we do not presently include the topic value anywhere.
For webhooks, we include the topic in a header:
{"x-outpost" | CUSTOM_HEADER}-topic
. Should we include the topic within the metadata within a similar naming structure for queue destinations by default?Beta Was this translation helpful? Give feedback.
All reactions