From aa79f8baf9478be1340e6ef27cbb716969f303ff Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Mon, 30 Dec 2019 23:27:02 +0300 Subject: [PATCH] fix(post-process): Add missing post-process-forwarder (#309) We were not running the post-process forwarder, causing post-process to not run which covers all plugin and rule/alert work. Fixes #287. --- docker-compose.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 9cbb331..c8ada85 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -142,6 +142,10 @@ services: worker: << : *sentry_defaults command: run worker + post-process-forwarder: + << : *sentry_defaults + # Increase `--commit-batch-size 1` below to deal with high-load environments. + command: run post-process-forwarder --commit-batch-size 1 sentry-cleanup: << : *sentry_defaults image: sentry-cleanup-onpremise-local