Skip to content

Commit 3a4b8fa

Browse files
committed
reduce confusion.
1 parent 388b9c7 commit 3a4b8fa

File tree

1 file changed

+3
-3
lines changed
  • docs/platforms/python/integrations/celery

1 file changed

+3
-3
lines changed

docs/platforms/python/integrations/celery/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ Make sure that the call to `sentry_sdk.init()` is loaded on worker startup and n
2323

2424
### Set up Celery Without Django
2525

26-
When using Celery without Django, you'll need to initialize the Sentry SDK in both your application and the Celery worker processes.
26+
When using Celery without Django, you'll need to initialize the Sentry SDK in both your application and the Celery worker processes spawned by the Celery daemon.
2727

2828
In addition to capturing errors, you can use Sentry for [distributed tracing](/concepts/key-terms/tracing/) and [profiling](/product/explore/profiling/). Select what you'd like to install to get the corresponding installation and configuration instructions below.
2929

30-
#### Set up Sentry in Celery
30+
#### Set up Sentry in Celery Daemon or Worker Processes
3131

3232
<OnboardingOptionButtons
3333
options={["error-monitoring", "performance", "profiling"]}
@@ -60,7 +60,7 @@ def add(x, y):
6060
return x + y
6161
```
6262

63-
The [`celeryd_init`](https://docs.celeryq.dev/en/stable/userguide/signals.html?#celeryd-init) signal is triggered when the Celery deamon starts, before the worker processes are spawned. If you need to initialize Sentry for each individual worker process, us the [`worker_init`](https://docs.celeryq.dev/en/stable/userguide/signals.html?#worker-init) signal instead.
63+
The [`celeryd_init`](https://docs.celeryq.dev/en/stable/userguide/signals.html?#celeryd-init) signal is triggered when the Celery daemon starts, before the worker processes are spawned. If you need to initialize Sentry for each individual worker process, us the [`worker_init`](https://docs.celeryq.dev/en/stable/userguide/signals.html?#worker-init) signal instead.
6464

6565
#### Set up Sentry in Your Application
6666

0 commit comments

Comments
 (0)