You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -32,27 +32,27 @@ Some web framework integrations support distributed tracing out of the box.
32
32
Supported web frameworks:
33
33
34
34
35
-
+-------------------+-----------------+
36
-
| Framework/Library |Enabled|
37
-
+===================+=================+
38
-
|:ref:`aiohttp` | True |
39
-
+-------------------+-----------------+
40
-
|:ref:`bottle` | True |
41
-
+-------------------+-----------------+
42
-
|:ref:`django` | True |
43
-
+-------------------+-----------------+
44
-
|:ref:`falcon` | True |
45
-
+-------------------+-----------------+
46
-
|:ref:`flask` | True |
47
-
+-------------------+-----------------+
48
-
|:ref:`pylons` | True |
49
-
+-------------------+-----------------+
50
-
|:ref:`pyramid` | True |
51
-
+-------------------+-----------------+
52
-
|:ref:`requests` | True |
53
-
+-------------------+-----------------+
54
-
|:ref:`tornado` | True |
55
-
+-------------------+-----------------+
35
+
+-------------------+---------+
36
+
| Framework/Library | Enabled |
37
+
+===================+=========+
38
+
|:ref:`aiohttp` | True |
39
+
+-------------------+---------+
40
+
|:ref:`bottle` | True |
41
+
+-------------------+---------+
42
+
|:ref:`django` | True |
43
+
+-------------------+---------+
44
+
|:ref:`falcon` | True |
45
+
+-------------------+---------+
46
+
|:ref:`flask` | True |
47
+
+-------------------+---------+
48
+
|:ref:`pylons` | True |
49
+
+-------------------+---------+
50
+
|:ref:`pyramid` | True |
51
+
+-------------------+---------+
52
+
|:ref:`requests` | True |
53
+
+-------------------+---------+
54
+
|:ref:`tornado` | True |
55
+
+-------------------+---------+
56
56
57
57
58
58
HTTP Client
@@ -177,6 +177,101 @@ The ``RateSampler`` randomly samples a percentage of traces::
177
177
tracer.sampler = RateSampler(sample_rate)
178
178
179
179
180
+
Trace Search & Analytics
181
+
------------------------
182
+
183
+
Use `Trace Search & Analytics <https://docs.datadoghq.com/tracing/visualization/search/>`_ to filter application performance metrics and APM Events by user-defined tags. An APM event is generated every time a trace is generated.
184
+
185
+
Enabling APM events for all web frameworks can be accomplished by setting the environment variable ``DD_ANALYTICS_ENABLED=true``:
186
+
187
+
* :ref:`aiohttp`
188
+
* :ref:`bottle`
189
+
* :ref:`django`
190
+
* :ref:`falcon`
191
+
* :ref:`flask`
192
+
* :ref:`molten`
193
+
* :ref:`pylons`
194
+
* :ref:`pyramid`
195
+
* :ref:`requests`
196
+
* :ref:`tornado`
197
+
198
+
199
+
For most libraries, APM events can be enabled with the environment variable ``DD_{INTEGRATION}_ANALYTICS_ENABLED=true``:
Where environment variables are not used for configuring the tracer, the instructions for configuring trace analytics is provided in the library documentation:
268
+
269
+
* :ref:`aiohttp`
270
+
* :ref:`django`
271
+
* :ref:`pyramid`
272
+
* :ref:`requests`
273
+
* :ref:`tornado`
274
+
180
275
Resolving deprecation warnings
181
276
------------------------------
182
277
Before upgrading, it’s a good idea to resolve any deprecation warnings raised by your project.
@@ -312,25 +407,25 @@ The Datadog opentracer can be configured via the ``config`` dictionary
312
407
parameter to the tracer which accepts the following described fields. See below
0 commit comments