python-application: missing import in Python example
[lttng-docs.git] / contents / using-lttng / instrumenting / python-application.md
CommitLineData
024571e4
PP
1---
2id: python-application
3since: 2.7
4---
5
6Python 2 and Python 3 applications using the standard
7<a href="https://docs.python.org/3/howto/logging.html" class="ext"><code>logging</code> module</a>
8can be traced by LTTng using the LTTng-UST Python agent.
9
10Import the `lttngust` package in your Python application. For example:
11
12~~~ python
13import lttngust
14import logging
d7976b2f 15import time
024571e4
PP
16
17
18def example():
19 logger = logging.getLogger('my-logger')
20
21 while True:
22 logger.debug('debug message')
23 logger.info('info message')
24 logger.warn('warn message')
25 logger.error('error message')
26 logger.critical('critical message')
27 time.sleep(1)
28
29
30if __name__ == '__main__':
31 example()
32~~~
33
34Importing `lttngust` adds a logging handler which emits LTTng-UST
35events. You do not need to get a special logger for tracing to work.
36
37Use the `--python` option of the `lttng enable-event`,
38`lttng disable-event`, and `lttng list` commands to target
39Python applications. For example, here's how to enable the events
40produced by the Python logger above:
41
42<pre class="term">
43lttng enable-event --python my-logger
44</pre>
45
46Standard Python log levels are supported using the `PYTHON_` prefix.
47For example, here's how to enable the warning (and more important)
48events produced by the Python logger above:
49
50<pre class="term">
51lttng enable-event --python my-logger --loglevel PYTHON_WARNING
52</pre>
53
54See [Enabling and disabling events](#doc-enabling-disabling-events) for
55more options.
56
57When loading, the LTTng-UST Python agent tries to register to the
58[session daemon](#doc-lttng-sessiond). Note that the session daemon
59needs to be started _before_ the Python application is started. If a
60session daemon is found, the agent tries to register to it during
615&nbsp;seconds, after which the application continues without LTTng
62tracing support. This timeout value is overriden by the
63`LTTNG_UST_PYTHON_REGISTER_TIMEOUT` environment variable (milliseconds).
64
65If the session daemon stops while a registered Python application is
66registered, the application retries to connect and register to a session
67daemon every 3&nbsp;seconds. This timeout value is overridden by the
68`LTTNG_UST_PYTHON_REGISTER_RETRY_DELAY` environment variable.
This page took 0.024876 seconds and 4 git commands to generate.