@onlineapps/mq-client-core 1.0.82 → 1.0.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/config/queueConfig.js +13 -0
package/package.json
CHANGED
|
@@ -280,6 +280,19 @@ module.exports = {
|
|
|
280
280
|
}
|
|
281
281
|
},
|
|
282
282
|
|
|
283
|
+
/**
|
|
284
|
+
* monitoring.audit - Audit log for Doorman-exposed services (JWT-authenticated requests outside workflow)
|
|
285
|
+
* Meta-reader (and future Doorman-exposed services) publish audit entries via MQ.
|
|
286
|
+
* Monitoring consumer stores them in PostgreSQL audit_log table.
|
|
287
|
+
*/
|
|
288
|
+
'audit': {
|
|
289
|
+
durable: true,
|
|
290
|
+
arguments: {
|
|
291
|
+
'x-message-ttl': 300000,
|
|
292
|
+
'x-max-length': 50000
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
|
|
283
296
|
/**
|
|
284
297
|
* monitoring.workflow.fanout - Fanout exchange for workflow events
|
|
285
298
|
* Publishers send to this exchange; monitoring.workflow + delivery.workflow.events both receive copies.
|