我正在使用logging
+lttng
作为日志记录和跟踪框架,但我无法使用它查看日志,lttng view
它只是给了我日志的路径
我正在使用以下示例
Python 示例
import lttngust
import logging
import time
def example():
logging.basicConfig()
logger = logging.getLogger('my-logger')
while True:
logger.debug('debug message')
logger.info('info message')
logger.warn('warn message')
logger.error('error message')
logger.critical('critical message')
time.sleep(1)
if __name__ == '__main__':
example()
执行以下命令以启用lttng
脚步
lttng create
lttng enable-event --python my-logger
lttng start
运行 Python 脚本:
python test.py
停止跟踪并检查记录的事件:
lttng stop
lttng view //Not working as expected
在运行 lttng 视图
vinay@root:~/lttng-traces/auto-20180917-121542/ust/uid/1003/64-bit/index$ lttng view
Trace directory: /home/vinay/lttng-traces/auto-20180917-121542