Mirror of the lttng-dev mailing list
 help / color / mirror / Atom feed
From: Erica Bugden via lttng-dev <lttng-dev@lists.lttng.org>
To: LI Ruoxiang <ruoxiang.li@my.cityu.edu.hk>,
	"lttng-dev@lists.lttng.org" <lttng-dev@lists.lttng.org>
Subject: Re: [lttng-dev] [Ext] Re: How to use lttng-live plugin with babeltrace2 python api for live LTTng trace reading?
Date: Mon, 14 Aug 2023 15:55:45 -0400	[thread overview]
Message-ID: <a4f942d7-5a8c-1882-c1eb-8d51aa99169e@efficios.com> (raw)
In-Reply-To: <OS3P286MB0549DAA5D36C58F76BEA818DFF10A@OS3P286MB0549.JPNP286.PROD.OUTLOOK.COM>

You're welcome Ruoxiang!

On 2023-08-10 22:50, LI Ruoxiang wrote:
> HiErica,
> 
> Thank you for your kind help.
> 
> It works for my case.
> 
> Best,
> 
> Ruoxiang
> 
> *From: *Erica Bugden <ebugden@efficios.com>
> *Date: *Wednesday, August 9, 2023 at 05:29
> *To: *LI Ruoxiang <ruoxiang.li@my.cityu.edu.hk>, 
> lttng-dev@lists.lttng.org <lttng-dev@lists.lttng.org>
> *Subject: *[Ext] Re: How to use lttng-live plugin with babeltrace2 
> python api for live LTTng trace reading?
> 
> *CAUTION: External email. Do not reply, click on links or open 
> attachments unless you recognize the sender and know the content is safe. *
> 
> Hello Ruoxiang!
> 
> Thank you for your question. It's true that there are no Python bindings 
> examples specific to lttng live (we've provided a brief example below). 
> Unfortunately, the python bindings documentation is currently 
> incomplete, but information about using lttng live can be pieced 
> together using the various documentation links below (see Useful Links 
> section).
> 
> Some adjustments typically needed when using lttng live and the Python 
> bindings are:
> 
> - When referring to a trace source, use a URL (e.g. 
> net://localhost/host/luna/my-session) rather than a file path (e.g. 
> /path/to/trace)
> 
> - When querying, use the source.ctf.lttng-live component class (rather 
> than the file system class: source.ctf.fs) - source.ctf.lttng-live docs 
> https://babeltrace.org/docs/v2.0/man7/babeltrace2-source.ctf.lttng-live.7/ <https://babeltrace.org/docs/v2.0/man7/babeltrace2-source.ctf.lttng-live.7/>
> 
> Hope this helps!
> 
> Best,
> 
> Erica
> 
> ----
> 
> Useful links
> 
> - Python bindings docs (Installation, Examples) - 
> https://babeltrace.org/docs/v2.0/python/bt2/index.html 
> <https://babeltrace.org/docs/v2.0/python/bt2/index.html>
> 
> - LTTng live, General information - 
> https://lttng.org/docs/v2.13/#doc-lttng-live 
> <https://lttng.org/docs/v2.13/#doc-lttng-live> (e.g. How to express a 
> live trace source: net://localhost/host/HOSTNAME/my-session)
> 
> - source.ctf.lttng-live component - 
> https://babeltrace.org/docs/v2.0/man7/babeltrace2-source.ctf.lttng-live.7/ <https://babeltrace.org/docs/v2.0/man7/babeltrace2-source.ctf.lttng-live.7/> (C API doc not Python, but can be used to adapt the source.ctf.fs examples by comparing)
> 
> ----
> 
> Quick Example: Trace reading with python bindings and lttng live
> 
>       Note: This is a local example where the tracing and reading with 
> babeltrace are happening on the same machine (luna).
> 
> 1. REQUIREMENTS
> 
> Make sure babeltrace is installed with the python plugins and python 
> bindings: https://babeltrace.org/docs/v2.0/python/bt2/installation.html 
> <https://babeltrace.org/docs/v2.0/python/bt2/installation.html>
> 
> 2. PROCEDURE
> 
>   - Start root session daemon: $sudo lttng-sessiond --daemonize
> 
>   - Create live session: $lttng create my-session --live
> 
>   - Enable events: $lttng enable-event --kernel 
> sched_switch,sched_process_fork
> 
>   - Start tracing: $lttng start
> 
>   - Run python script: (see below) $python3 lttng-live.py
> 
> 3. PYTHON SCRIPT
> 
> File name: lttng-live.py
> 
> File contents:
> 
>       import bt2
> 
>       import time
> 
>       msg_iter = 
> bt2.TraceCollectionMessageIterator('net://localhost/host/luna/my-session') # The hostname (i.e. machine name) is 'luna'
> 
>       while True:
> 
>           try:
> 
>               for msg in msg_iter:
> 
>                   if type(msg) is bt2._EventMessageConst:
> 
>                       print(msg.event.name)
> 
>           except bt2.TryAgain:
> 
>               print('Try again. The iterator has no events to provide 
> right now.')
> 
>           time.sleep(0.5)
> 
> Reading trace data using the bt2.TraceCollectionMessageIterator and 
> lttng-live: When using the message iterator with live, the iterator 
> never ends by default and can be polled for trace data infinitely (hence 
> the while loop in the example). When there is available data, the 
> iterator will return it. However, there will not always be data 
> available to consume. When this is the case, the iterator returns a "Try 
> again" exception which must be caught in order to continue polling.
> 
> 4. OUTPUT SNIPPET (Example)
> 
>       erica@luna:~$ python3 lttng-live-example.py
> 
>       Try again. The iterator has no events to provide right now.
> 
>       Try again. The iterator has no events to provide right now.
> 
>       Try again. The iterator has no events to provide right now.
> 
>       Try again. The iterator has no events to provide right now.
> 
>       Try again. The iterator has no events to provide right now.
> 
>       sched_switch
> 
>       sched_switch
> 
>       sched_switch
> 
>       sched_switch
> 
>       sched_process_fork
> 
>       sched_switch
> 
>       sched_switch
> 
>       sched_switch
> 
>       sched_switch
> 
>       sched_switch
> 
>       sched_switch
> 
>       sched_switch
> 
>       sched_switch
> 
>       sched_switch
> 
>       sched_switch
> 
>       sched_switch
> 
>       sched_switch
> 
>       sched_switch
> 
>       [...]
> 
> ------------------------------------------------------------------------
> 
> *From:*lttng-dev <lttng-dev-bounces@lists.lttng.org> on behalf of LI 
> Ruoxiang via lttng-dev <lttng-dev@lists.lttng.org>
> *Sent:* August 3, 2023 12:44 PM
> *To:* lttng-dev@lists.lttng.org <lttng-dev@lists.lttng.org>
> *Subject:* [lttng-dev] How to use lttng-live plugin with babeltrace2 
> python api for live LTTng trace reading?
> 
> Hi there,
> 
> 
> 
> I am currently involved in a project on designing a Python program for 
> LTTng trace data analysis online. The following figure illustrates the 
> program with a live trace data reader using babeltrace2 Python bindings 
> (the yellow box) connected to the LTTng relay daemon. The program will 
> read (such as periodically)the trace data from the relay daemon and then 
> process them while the LLTng keeps tracing. The above “read” and 
> “process” phases repeat in a loop.
> 
> 
> 
> 
> 
> 
> 
> After reading the babeltrace2 documents, examples, and some source code, 
> I found the lttng-live plugin may be an option for reading trace data 
> from LTTng relay daemon. However, I didn't find any examples for using 
> lttng-live plugin with babeltrace2 Python bindings. And I wonder if the 
> Python bindings support the mentioned live LTTng trace reading for my 
> case. Is it possible to receive any examples about the usage of 
> babeltrace2’s live reading, if any?
> 
> Thank you.
> 
> Best,
> 
> Ruoxiang Li
> 
> 
> 
_______________________________________________
lttng-dev mailing list
lttng-dev@lists.lttng.org
https://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev

      reply	other threads:[~2023-08-14 19:55 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-03 16:44 [lttng-dev] " LI Ruoxiang via lttng-dev
2023-08-08 21:29 ` Erica Bugden via lttng-dev
2023-08-11  2:50   ` [lttng-dev] [Ext] " LI Ruoxiang via lttng-dev
2023-08-14 19:55     ` Erica Bugden via lttng-dev [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=a4f942d7-5a8c-1882-c1eb-8d51aa99169e@efficios.com \
    --to=lttng-dev@lists.lttng.org \
    --cc=ebugden@efficios.com \
    --cc=ruoxiang.li@my.cityu.edu.hk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox