Eclipse Trace Compass
Eclipse Trace Compass
  • 46
  • 11 143
Installing Trace Viewer for VSCode - Trace Compass cloud edition
Description: In this video, Bernd from the Trace Compass development team walks you through the steps to install and use the Trace Viewer for VS Code. Available on both the VS Code Marketplace and Open-VSX, the Trace Viewer extension allows you to analyze traces directly within your IDE.
You'll learn:
* How to install the Trace Viewer extension.
* The role of the Trace Server in trace analysis.
* How to configure the Trace Server in VS Code using the Vc Code Trace Server extension.
* How to open and analyze traces, including single file traces and common trace format (CTF) traces.
Whether you're using Linux or Windows, this guide will help you get started with trace analysis quickly and easily. For more details, check out the Eclipse Trace Compass project.
Thank you for watching!
Timestamps: 00:00 - Introduction
00:30 - Installing Trace Viewer for VS Code
02:00 - Setting up the Trace Server
03:30 - Opening and Analyzing Traces
04:45 - Stopping the Trace Server
#TraceCompass #VSCODE #TraceViewer #VscodeTraceServer #TraceAnalysis
Переглядів: 132

Відео

Eclipse Trace Compass: Execution Comparison!
Переглядів 149Місяць тому
The feature allows a user to run a program, trace it, patch it, trace it again and observe the differences. This is a great feature that took years to bring to you. We are excited to show off the initial results. This allows differential flame graphs to be shown comparing two executions. A flame graph is a visualization tool used to analyze performance and identify bottlenecks in software syste...
AI Powered: Trace Compass Extended Assistant
Переглядів 128Місяць тому
In this video we show how to use the Trace Compass Extended Assistant project. It will soon be part of the Eclipse foundation. It allows creation of Data Driven XML based custom analyses in minutes rather than hours. Shout out to Sai Sree for taking on this initiative and delivering so quickly! Download the TCXA here: (LINK TBD)
Trace Compass: Summarize text traces! Event Count Analysis
Переглядів 37Місяць тому
In this video, we will demonstrate a simple way to summarize any trace, structured or unstructured by aggregating fields. This is a very quick and useful way to explore textual logs as well as user space traces containing data trace compass doesn't have a built-in way to visualize. Shout out to Vlad for this great presentation! Get Eclipse Trace Compass here: eclipse.dev/tracecompass
Follow-up on previous video: Making the benchmark scale better
Переглядів 632 місяці тому
In this video we follow-up on an oddity from the previous video: the lack of scalability of the sum-of-squares benchmark, when running with 2, 3 or 4 (or whatever number of physical cores are present on a computer) workers vs one. We use the classic Trace Compass to look at new traces obtained after some minor adjustments, that fix the previously mentioned issue. Benchmark: github.com/MatthewKh...
Eclipse Trace Compass: Showing an unbalanced workload and benchmarking issues through kernel tracing
Переглядів 1232 місяці тому
In this video we use Trace Compass to look at an odd behaviour. A benchmark where a fixed load is split among many threads is slowing down when we add more cores. The results were surprising. The worker threads would finish at different times and therefore we needed to wait for the longest worker. We utilize the Theia based front end for this demo as it allows exploration by CPU usage rather th...
Eclipse Trace Compass: How to record an LTTng Kernel and Userspace trace and read the results
Переглядів 1503 місяці тому
This is a demo of how to trace your application easily and view the results. It is an effective hello world in low level tracing. We use LTTng, lttng-utils, and Eclipse Trace Compass in order to monitor the performance of a given program. The program tests memory access patterns and compares x-then-y vs y-then-x vs memset for performance.
Eclipse Trace Compass ❤️ the uftrace Community!
Переглядів 694 місяці тому
Recently, uftrace was demoed into trace compass. The uftrace community saw the video and took the initiative to make the workflow even better! Congrats and thanks to the uftrace team. A soon release (v0.17?) will support a utc offset using the difference between utc time and the clock source. Fix in question: github.com/namhyung/uftrace/commit/fae85a8a40d2b64c2ed415d13c31bfbc87bf2710 Again, get...
Synchronizing an LTTng and UFTrace together for a full view of an execution using Trace Compass
Переглядів 1024 місяці тому
This is showing a bit more of what an experiment can do. We are recording an #lttng #trace and a #uftrace trace then opening them in #tracecompass to see the merged results. You will see that the total is greater than the sum of the parts. Reminders: * lttng can be obtained from lttng.org * uftrace can be found here : uftrace.github.io/slide/#1 * You can get LTTng-Utils here github.com/dorsal-l...
Applying Time Offset in Eclipse Trace Compass
Переглядів 965 місяців тому
Trace Compass allows users to manually apply a time offset to one or many trace's event timestamps. It is also possible to calculate and apply the time offset by selecting matching events from different traces. See also: Eclipse Trace Compass Automatic Trace Clock Synchronization for Critical Path Analysis ua-cam.com/video/kilgZ5m1WUI/v-deo.html
XZ-tool backdoor traced using uftrace, Visualized in Trace Compass
Переглядів 4255 місяців тому
This is showing a quick flow of how you can compare two runs. This explores the XZ backdoor. I did not find data as compelling as Andres Freund did. This is an attempt to find a way to visualize the backdoor in a tool rather than an infographic. The major takeaway is also that libraries have a major impact on execution flow too. It is quite visible with this trace. the command used is: echo exi...
Eclipse Trace Compass Automatic Trace Clock Synchronization for Critical Path Analysis
Переглядів 1355 місяців тому
Trace Compass's Critical path analysis can handle traces from multiple nodes, servers, or computers. This brings up the issue, how can we synchronize clocks. NTP is good, but sometimes we can have clock skews of 10 seconds, this is not acceptable for nanosecond precision traces. Different clocks can even drift at different temperatures! We show the simple solution here. If you're interested in ...
Viewing an LTTng and UST trace simultaneously in Eclipse Trace Compass
Переглядів 1236 місяців тому
This is showing a bit more of what an experiment can do. We are recording an #lttng #trace and opening it in #tracecompass to see the merged results. You will see that the total is greater than the sum of the parts. Reminders: * lttng can be obtained from lttng.org * You can get LTTng-Utils here github.com/dorsal-lab/lttng-utils * You can install either by * $ sudo pip3 install upgrade git gith...
Eclipse Trace Compass's Critical Path Analysis
Переглядів 1297 місяців тому
Eclipse Trace Compass has a nifty critical path analysis. This allows you to highlight performance bottlenecks within a system trace. Want to try it out? Check out tracecompass.org/ !
Explaining "Bottlenecks" using Trace Compass
Переглядів 2117 місяців тому
This video is intended for a slightly different audience than the rest of the trace compass videos. Trace Compass is used here to illustrate points. What is a bottleneck? Performance bottlenecks are like traffic jams in your computer. They occur when one part of the system slows down the rest, hindering overall performance. This video explains how bottlenecks can happen, how to prove which comp...
Using CDT Cloud to try Trace Compass cloud for free online!
Переглядів 1538 місяців тому
Using CDT Cloud to try Trace Compass cloud for free online!
Changing memory settings in trace compass
Переглядів 579 місяців тому
Changing memory settings in trace compass
Open Telemetry: Opening Jaeger traces in Trace Compass and correlating them to LTTng Traces
Переглядів 16010 місяців тому
Open Telemetry: Opening Jaeger traces in Trace Compass and correlating them to LTTng Traces
Eclipse Trace Compass exporting to Excel
Переглядів 118Рік тому
Eclipse Trace Compass exporting to Excel
Reading Perfetto Traces in Trace Compass
Переглядів 567Рік тому
Reading Perfetto Traces in Trace Compass
Trace Compass Visual Filtering Boot Camp
Переглядів 117Рік тому
Trace Compass Visual Filtering Boot Camp
Eclipse Trace Compass: What's the deal with Experiments?
Переглядів 245Рік тому
Eclipse Trace Compass: What's the deal with Experiments?
GDB Tracing in Eclipse Trace Compass
Переглядів 483Рік тому
GDB Tracing in Eclipse Trace Compass
Tracing Power Utilization and seeing the implications
Переглядів 162Рік тому
Tracing Power Utilization and seeing the implications
March update, Trace Compass 8.3 and Cloud updates
Переглядів 82Рік тому
March update, Trace Compass 8.3 and Cloud updates
Trace Compass Update December 2022: 8.2 + TraceCompass.cloud!
Переглядів 125Рік тому
Trace Compass Update December 2022: 8.2 TraceCompass.cloud!
Trace Compass ROCm Tracing Demo
Переглядів 115Рік тому
Trace Compass ROCm Tracing Demo
Trace Compass 8.1 is out, CDT.Cloud Demo of trace compass
Переглядів 2132 роки тому
Trace Compass 8.1 is out, CDT.Cloud Demo of trace compass
Trace Compass.cloud Overview view (Get the birds eye view of your trace)
Переглядів 1012 роки тому
Trace Compass.cloud Overview view (Get the birds eye view of your trace)
Viewing several time aligned series that are not overlapping in they Y value range
Переглядів 672 роки тому
Viewing several time aligned series that are not overlapping in they Y value range

КОМЕНТАРІ

  • @marcdumais
    @marcdumais 25 днів тому

    Nice job Vlad!

  • @MarkRuvald
    @MarkRuvald Місяць тому

    DTW. Dynamic time warp. Would align automatically

    • @EclipseTraceCompass
      @EclipseTraceCompass Місяць тому

      We support DTW, in fact we have the first implementation of LIANA. www.sciencedirect.com/science/article/abs/pii/S1084804514001623 However, this would not help in the context of flame graphs, but flame charts. Here is a video describing the difference. ua-cam.com/video/ZrjuJKjAUns/v-deo.html . Basically a flame chart shows your callstack vs time, a flame graph is a weighted tree of function durations that are aggregated from a callstack over time. Also, we find the naming (Flame Graph/Flame Chart) to be confusing. Callstack over time and flame graph would be clearer. However, we tried to align with industry standard nomenclature. Thanks for the comment!

  • @DracosCarazza
    @DracosCarazza 3 місяці тому

    Nice video! Can you tell me if lttng-record-trace (lttng-utils) is currently maintained somewhere? I added some feature to perform the tracing on a embedded remote target via ssh and I would be happy to share this.

    • @EclipseTraceCompass
      @EclipseTraceCompass 3 місяці тому

      As far as we know, it's here github.com/dorsal-lab/lttng-utils I think we should update the readme to reflect that. LTTng utils is unsupported. It is a good will project, but nobody really supports it. I am certain that dorsal would love a new maintainer. ;)

  • @HelenFeng-wh9uo
    @HelenFeng-wh9uo 5 місяців тому

    Cool and Great work

  • @HelenFeng-wh9uo
    @HelenFeng-wh9uo 5 місяців тому

    Looks nice, great work!

  • @marka4539
    @marka4539 5 місяців тому

    Well done!

  • @CRYPTiCEXiLE
    @CRYPTiCEXiLE 5 місяців тому

    Cool!

  • @deepakvedharaj2005
    @deepakvedharaj2005 6 місяців тому

    Thanks for the amazing video. Any idea how Tracecompass builds a critical path analysis for a thread. When I look at the order of kernel events they map to the control flow view and not critical flow view. Would be great to know how Tracecompass deduces it from trace events?

    • @EclipseTraceCompass
      @EclipseTraceCompass 5 місяців тому

      You can look in the source code, it's open source. But basically the linux kernel is well instrumented. We know stuff like sched wakeup, switch etc.. and we can get more data like syscalls for files and network access. I cannot go into too much detail in a youtube comment, but reach out to the community @ tracecompass.org for a better deep dive!

  • @arozendojr
    @arozendojr 9 місяців тому

    Is it normal to have to manually place Jaeger Tracing in the application to be able to place the body inside Jaeger Web or is there an automatic way to see the body on a Tracing platform like Jaeger Web?

    • @EclipseTraceCompass
      @EclipseTraceCompass 9 місяців тому

      We do! git.eclipse.org/r/c/tracecompass.incubator/org.eclipse.tracecompass.incubator/+/127410 No users expressed the need for this! If there is a need we can accommodate, or if you have a cooler way to do it, please share a patch, we'll review with giant smiles!

  • @pidtuner7405
    @pidtuner7405 Рік тому

    What GDB version is used in this demo? GDB tracepoints have been broken for a while now AFAIK.

    • @EclipseTraceCompass
      @EclipseTraceCompass 10 місяців тому

      GNU gdb (Ubuntu 9.2-0ubuntu1~20.04.1) 9.2 Sorry, I should have answered faster. I didn't notice the message. I love your nickname btw.

  • @dagorgonzoladotco
    @dagorgonzoladotco Рік тому

    Wow, this looks so awesome! Can't wait to check it out. I've just implemented a (near-)zero-overhead PHP Stacktrace capturer and Flamegraph generator. The information you get out of flamegraphs is just amazing. Would love to capture the information for a whole server like you did. Do you have a tutorial, where I can learn to capture the data on a linux production server without overloading the server?

    • @EclipseTraceCompass
      @EclipseTraceCompass 11 місяців тому

      Hey, sorry for the long delay, I thought I answered it. check out www.tracecompass.org for the tutorials, there's a project called tracevizlab. We hope to see interractions/collabs soon!

  • @marcdumais
    @marcdumais Рік тому

    Hi Matthew, lets agree to disagree about the relative coolness of GDB tracing vs lttng. It's true that lttng is way more flexible, faster, easier to capture traces for, has less limitations, and more. But is it cooler? Are CDs cooler than vinyls? I think not. Other than that little detail, excellent video! :)

    • @EclipseTraceCompass
      @EclipseTraceCompass Рік тому

      I cannot argue with such wisdom. GDB tracing has some very nice use cases. IMO it's much easier to set up, but you get less information out of it. As an individual who likes getting the full picture, that is limiting. :) The best though, is integrating a GDB Trace with a system trace and a cloud trace to get the full pic of what's going on.

  • @KeithHanlan
    @KeithHanlan Рік тому

    Very slick and a nice explanation for why overclocking is such a dicey proposition.

    • @EclipseTraceCompass
      @EclipseTraceCompass Рік тому

      We just report the facts. If someone wants to lose efficiency for speed and they live in the antarctic and have solar/wind power. Go for it!

  • @kirobekhet9065
    @kirobekhet9065 2 роки тому

    Good video!