summaryrefslogtreecommitdiff
path: root/Doc/howto/instrumentation.rst
Commit message (Collapse)AuthorAgeFilesLines
* Fix "Python" casing in a few places (GH-9001)Andrés Delfino2018-09-141-2/+2
|
* Improve highlighting of some code blocks. (GH-6401)Serhiy Storchaka2018-04-081-2/+6
|
* Add version{changed,added} markers and make minor style changes (GH-4273)Berker Peksag2017-11-041-0/+4
|
* bpo-31574: importlib dtrace (#3749)Christian Heimes2017-09-291-0/+11
| | | | | Importlib was instrumented with two dtrace probes to profile import timing. Signed-off-by: Christian Heimes <christian@python.org>
* Issue #21590: Silence Sphinx warnings in instrumentation.rstBerker Peksag2016-11-061-26/+23
| | | | | | WARNING: Could not lex literal_block as "c". Highlighting skipped. Patch by SilentGhost.
* always use double quotes for SystemTap string literals (closes #28472)Benjamin Peterson2016-10-181-5/+5
| | | | Patch by Roman Podoliaka.
* reST is not markdownBenjamin Peterson2016-09-101-17/+17
|
* DTrace support: function calls, GC activity, line executionŁukasz Langa2016-09-091-0/+411
Tested on macOS 10.11 dtrace, Ubuntu 16.04 SystemTap, and libbcc. Largely based by an initial patch by Jesús Cea Avión, with some influence from Dave Malcolm's SystemTap patch and Nikhil Benesch's unification patch. Things deliberately left out for simplicity: - ustack helpers, I have no way of testing them at this point since they are Solaris-specific - PyFrameObject * in function__entry/function__return, this is SystemTap-specific - SPARC support - dynamic tracing - sys module dtrace facility introspection All of those might be added later.