You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notifications are sent out by workers connected to the Release Engine and follow a standard and very simple message format. This format is then consumed by the output worker who turns the standard format into messages in a file.
7
+
8
+
The Output Message Format has 1 key: message. The only other bit of information needed by an output worker is the correlation id which happens to be stored in the AMQP properties.
9
+
10
+
**Required Keys**:
11
+
12
+
* message: The message which should be written to a file.
13
+
14
+
15
+
**Example**:
16
+
17
+
.. code-block:: json
18
+
19
+
{
20
+
"message": "Something happened and you should know about it"
0 commit comments