Skip to content
This repository was archived by the owner on Aug 13, 2025. It is now read-only.

Commit 6a31d89

Browse files
docs: Fix django example typos (#178)
## Which problem is this PR solving? Fixes a couple of typos in the Django example added in the following PR: - #176 ## Short description of the changes - Fix typos - Update run command to match previous example ## How to verify that this has the expected result Django example doesn't contain typos and commands execute as expected.
1 parent adeabde commit 6a31d89

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/hello-world-django/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Then navigate to http://127.0.0.1:8000 as shown in the command output and you sh
2525
## Distro Instrumentation Example
2626

2727
This app uses configuration configures the OpenTelemetry SDK programmatically in [manage.py](./manage.py).
28-
Alternitively, you can use environment variables as parameters like below:
28+
Alternatively, you can use environment variables as parameters like below:
2929

3030
```python
3131
configure_opentelemetry(
@@ -37,12 +37,12 @@ configure_opentelemetry(
3737
)
3838
```
3939

40-
This app will send traces to local console with the configured `debug=True`.
40+
Note: With `debug` set to `True`, spans will also be printed to stdout.
4141

4242
To send to Honeycomb, set your API Key:
4343

4444
```bash
45-
HONEYCOMB_API_KEY="your-api-key" poetry run python3 app.py
45+
HONEYCOMB_API_KEY="your-api-key" poetry run python manage.py runserver
4646
```
4747

4848
You can configure exporter protocol with this flag:

0 commit comments

Comments
 (0)