File tree Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,10 @@ Then let's patch widely used Python libraries::
8383 from ddtrace import patch_all
8484 patch_all()
8585
86- Start your web server and you should be off to the races.
86+ Start your web server and you should be off to the races. Here you can find
87+ which `framework is automatically instrumented `_ with the ``patch_all() `` method.
88+
89+ .. _framework is automatically instrumented : #instrumented-libraries
8790
8891Custom
8992~~~~~~
@@ -423,6 +426,26 @@ These are the fully tested versions but `ddtrace` can be compatible with lower v
423426If some versions are missing, you can contribute or ask for it by contacting our support.
424427For deprecated library versions, the support is best-effort.
425428
429+ Instrumented libraries
430+ ======================
431+
432+ The following is the list of libraries that are automatically instrumented when the
433+ ``patch_all() `` method is called. Always use ``patch() `` and ``patch_all() `` as
434+ soon as possible in your Python entrypoint.
435+
436+ * sqlite3
437+ * mysql
438+ * psycopg
439+ * redis
440+ * cassandra
441+ * pymongo
442+ * mongoengine
443+ * elasticsearch
444+ * pylibmc
445+ * celery
446+ * aiopg
447+ * aiohttp (only third-party modules such as ``aiohttp_jinja2 ``)
448+
426449Indices and tables
427450==================
428451
You can’t perform that action at this time.
0 commit comments