Skip to content

Commit 9f4eca2

Browse files
committed
Headline capitalization
1 parent 186de2a commit 9f4eca2

File tree

1 file changed

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

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ If you have the `celery` package in your dependencies, the Celery integration wi
2121
Make sure that the call to `sentry_sdk.init()` is loaded on worker startup and not only in the module where your tasks are defined. Otherwise, the initialization may happen too late and events might not get reported.
2222
</Alert>
2323

24-
### Set Up Celery Without Django
24+
### Set up Celery Without Django
2525

2626
When using Celery without Django, you'll need to initialize the Sentry SDK in both your application and the Celery worker process.
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 Celery
30+
#### Set up Sentry in Celery
3131

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

6363
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.
6464

65-
#### Setup in Your Application
65+
#### Set up Sentry in Your Application
6666

6767
<OnboardingOptionButtons
6868
options={["error-monitoring", "performance", "profiling"]}
@@ -93,7 +93,7 @@ if __name__ == "__main__":
9393
main()
9494
```
9595

96-
### Set Up Celery With Django
96+
### Set up Celery With Django
9797

9898
If you're using Celery with Django in a typical setup, have initialized the SDK in your `settings.py` file (as described in the [Django integration documentation](/platforms/python/integrations/django/#configure)), and have your Celery configured to use the same settings as [`config_from_object`](https://docs.celeryq.dev/en/stable/django/first-steps-with-django.html), there's no need to initialize the Celery SDK separately.
9999

0 commit comments

Comments
 (0)