We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d410cdf commit 4542317Copy full SHA for 4542317
docs/sources/configure-client/language-sdks/python.md
@@ -66,6 +66,7 @@ pyroscope.configure(
66
Optionally, you can configure several additional parameters:
67
68
```python
69
+import os
70
import pyroscope
71
72
pyroscope.configure(
@@ -77,7 +78,7 @@ pyroscope.configure(
77
78
gil_only = True, # only include traces for threads that are holding on to the Global Interpreter Lock; default is True
79
enable_logging = True, # does enable logging facility; default is False
80
tags = {
- "region": '{os.getenv("REGION")}',
81
+ "region": f'{os.getenv("REGION")}',
82
}
83
)
84
```
0 commit comments