Skip to content

Rodrigoplp-work/theia-trace-extension

 
 

Repository files navigation

Trace Viewer extension for Theia applications

Theia trace viewer extension using the tsp-typescript-client and Trace Server Protocol.

Prerequisites for running this extension are the same as those for running the Theia IDE.

👋 Want to help? Read our contributor guide and follow the instructions to contribute code. ⚠️ The application and its development environment works best on Linux operating systems. If you are trying to run the application or the development environment on Windows or MacOs and you are encountering issues, please open a GitHub issue.

What is Tracing?

Tracing is another tool in the developer or sysadmin's toolbox. It is best used to understand very complex systems, or even simple ones, but the real added value comes when trying to understand complexity when all other approaches fail.

Tracing consists in recording specific information during a program's or operating system's execution to better understand what is happening on the system. Every location in the code that we want to trace is called a tracepoint and every time a tracepoint is hit is called an event.

The tracing we're discussing here is high speed, low overhead tracing. With such tracing, the tracepoints can be present in the code at all times (linux has tons of tracepoints in its code, ready to be hooked to), they have a near-zero overhead when not tracing and a very low one one with a tracer enabled. Tracers can handle hundreds of thousands events/second.

  • Learn more about tracing here.

Source: Text adapted from tracevizlab 001-what-is-tracing

Try a live demo via Gitpod

Click the Gitpod button below to access a live demo of the trace viewer. In a couple of clicks and around 2 minutes, you'll be on your way!

Gitpod ready-to-code

Prerequisites: A GitHub account (for logging into Gitpod)

  • Click here to open Gitpod.
  • After logging in, it takes around a minute for Gitpod to set up the in-browser IDE used to build the project.
  • When the workspace has loaded, the project builds automatically in about a minute. Then, the workspace pops a notification saying a service (i.e. the tool) is now available. Open the application in the browser. gitpod-service-ready-notification
  • If you don't see a notification, follow this alternative way to open the application.
  • After opening the tool, the interface loads in a few seconds.
  • Now you're ready to try the trace viewer!
    • Head to the trace viewer tab in the left side menu to get started.
    • Click the "Open Trace" button, and then select a directory containing traces, e.g. “103compare-package-managers → apt”
    • The tool is loaded with the example traces from a set of Trace Visualisation Labs. To analyze your own traces, download the application for Linux.

gitpod-live-demo-setup

Download an external build of the application

If you'd like to explore your own traces, you can download a Theia IDE build with this trace viewer extension here

  • Prerequisite: Java 11 (required since this tool uses the Eclipse Trace Compass server which runs on Java)
    • If you get a confusing error "Error opening serial port ${this.port}. (Port busy)" when you try to run the app, it's likely that Java is missing.
  • No compilation or additional downloads necessary! Just change the AppImage file's permissions to make it executable (command: chmod +x <filename>) and run it.

Consume the trace viewer extension from npm

The theia-trace-extension project publishes the following packages to npm:

  • theia-traceviewer: The Theia trace viewer extension. Add this package to the package.json of your Theia application.
  • traceviewer-base: This package contains trace management utilities for managing traces using Trace Server applications that implement the TSP.
  • traceviewer-react-components: This package contains views and utilities for visualizing traces and logs via the TSP connected to a Trace Server application.

While being initially used within the theia-traceviewer, the code base of traceviewer-base and traceviewer-react-components is independent of any Theia APIs and can be integrated into other web applications.

Build the extension and example application

Here is the step in order to build the trace viewer

  1. Clone this theia-trace-extension repository
  2. cd theia-trace-extension
  3. Now you are ready to build the application: yarn

Note for some Debian-based machines: On some distributions, there are 2 yarn commands. If you get an error message saying ERROR: There are no scenarios; must have at least one., you are using the wrong yarn. See yarn issue #2821.

You can also run two scripts to watch for changes and rebuild automatically:

  1. From the root, run:

    yarn tswatch # to compile TypeScript files
  2. In parallel, run:

    cd examples/<browser or electron>
    yarn watch # to update the frontend bundles (loaded by the browser)

Try the trace extension

This repository contains an example trace-viewer application that includes the trace extension. It has two versions:

  • browser: a "browser" application, accessed with a web browser
  • electron: a native desktop application

You can find those example applications under examples/.

Run the Trace Server

In order to open traces, you need a trace server running on the same machine as the trace extension. You can download the Eclipse Trace Compass server or let yarn download and run it:

yarn download:server
yarn start:server

You can also build the trace-server yourself using Trace Compass and the Incubator. Take a look at the instructions here.

Run the example app

From the repo root, run either

yarn start:browser

and go to http://localhost:3000.

Or, run

yarn start:electron

and use the Electron application.

If there are errors that occurred while starting the app, see Troubleshooting for known issues.

Change the trace server URL

By default, the application expects the trace server to be responding at http://localhost:8080/tsp/api. If a different trace server location is being used, the URL can be changed using the TRACE_SERVER_URL environment variable when running the app.

For example, to start the browser example app with a specific URL, one can run

TRACE_SERVER_URL=https://my.trace.server:port/tsp/api yarn start:browser

Package the Example Theia Trace Viewer Application

It is possible to package the repository's example application with electron-builder. After running yarn in the repo root, run:

cd examples/electron
yarn package

The configured Linux package(s) will be generated in the folder examples/electron/dist

Using the trace extension

This section describes how to operate the Theia trace extension to view and analyze traces. The UI and view interactions are preliminary and subject to revisions in the future.

theia-trace-extension

Open the Trace Viewer

To open the Trace Viewer, select the Trace Viewer icon in the left sidebar:

Trace Viewer Icon

Add Trace Viewer to sidebar

If the Trace Viewer icon is not in the left sidebar, select menu View from the top-level menu and then select Trace Viewer in the list of views. The Trace Viewer icon will appear on the left, below the File Explorer Icon.

Add Trace Viewer to sidebar

Open a trace

There are a few ways to open traces. The main ones are using the Open Trace Dialog or the File Explorer. There are still some inconsistencies between them.

Desired action via Open Trace Dialog via File Explorer
Open single CTF trace (folder)
Open folder of CTF traces (create trace group)
Open single file trace (ex. JSON Chrome trace)

Regardless of the opening method used, if the selection is a folder, the tool will look for traces in Common Trace Format (CTF) format, such as Linux Tracing Toolkit traces (LTTng) Kernel and UST (Userspace) traces, and open all found CTF traces together under the same timeline. The trace events of each CTF trace will be analyzed in chronological order. With this, several traces can be opened as a group (e.g. LTTng Kernel and UST Traces).

The example Trace Compass trace server above supports LTTng Kernel and UST traces. Example LTTng traces can be retrieved from the Trace Compass Tutorials. Just download the archive TraceCompassTutorialTraces, extract them into a local directory on your computer. They can also be automatically downloaded by running yarn download:sample-traces from the repository's root.

Via the Open Trace dialog (folders only)

This is the most intuitive way to open traces and trace groups, but it can only works with folders. So this dialog works for opening:

  • Single Common Trace Format (CTF) traces
  • Folders containing several CTF traces

⚠️ The root of a Common Trace Format (CTF) trace is a folder. A CTF trace is a folder that contains metadata and trace data files.

Open Trace Dialog

Via the File Explorer

You can open any supported trace format via the file explorer context menu. For a single trace, right-click on the trace file, or folder (for a CTF trace), then select Open With → Open Trace. To open several CTF trace files as a group, right-click on the parent folder instead.

Open With Trace Viewer

Open a view

To open a view, in the Trace Viewer select an opened trace in the Opened Traces widget, then click on a view in the Available Views list to open it.

Open View

⚠️ An available view can display empty results, even if the analysis completes correctly. The Available Views widget lists all the views that could be used with the selected trace(s) based on their trace format (regardless of the event types that were enabled in the trace or the events present in the trace). The tool cannot yet inform the user whether results are empty because of:

  • A bad reason: Some events required for the analysis were not enabled in the trace. #322
  • A neutral reason: All required events are enabled in the trace, but there are no instances of these events in the trace.

Navigation

Zooming

  • Zoom to a specific range: Click and hold the right mouse button on the chart, drag to select zoom range
  • Ctrl + Mouse scroll
  • WASD keys: 'W' zooms in, 'S' zooms out
  • Toolbar: Zoom in, Zoom out, Reset zoom (see screenshot)

Trace Viewer Toolbar Zoom Buttons

Panning

  • Arrow keys
  • WASD keys: 'A' pans left, 'D' pans right

Important limitations

During updating of a view, a progress wheel is shown in the view's title bar until data is available. Depending on the size of trace, window range, or complexity of the analysis this can take several seconds after the chart is opened or after navigation.

Item properties

This section shows detailed information about a selected:

  • Time Graph State (Bar section in a Gantt chart), or
  • Event in the Events Table

Trace Viewer Item Properties

Related code

This trace viewer depends on code from several other repos. Sometimes resolving issues in the trace viewer repo requires making changes in these code bases:

Project Description Related issues Links
Theia Theia is a framework for making custom IDEs. It provides reusable components (e.g. text editor, terminal) and is extensible. For example, this trace viewer is an extension for Theia-based IDEs. Code, Ecosystem
Trace Compass Trace analysis tool and precursor to this trace viewer. label:"Trace Compass" Dev info, Dev setup
Trace Compass Server A reference implementation of a Trace Server. Manages and analyzes trace files and provides this data to the trace viewer over the Trace Server Protocol (TSP). This Trace Server implementation was originally part of Trace Compass, so it requires the same dev setup. Because a protocol is used for communication (TSP), it is possible to develop alternative Trace Servers that are independent of Trace Compass. label:"Trace Server" Dev setup (same as Trace Compass), Code (same repo as Trace Compass incubator)
Trace Server Protocol (TSP) Protocol used by the trace viewer to communicate with the trace server. label:"trace server protocol"
Client-side Trace Server Protocol implementation A client-side implementation of the Trace Server Protocol. Allows the trace viewer to communicate with the server.
Timeline Chart Implements the Gantt charts used in this trace viewer. label:timeline-chart

Troubleshooting

Windows

This section discusses known issues on Windows.

Starting the Trace Extension in the browser

When starting the Trace Extension using yarn start:browser on Windows, you might get the following error:

$ TRACE_SERVER_PATH=../../trace-compass-server/tracecompass-server theia start --plugins=local-dir:../plugins
'TRACE_SERVER_PATH' is not recognized as an internal or external command,
operable program or batch file.
error Command failed with exit code 1.

The expression TRACE_SERVER_PATH=../../trace-compass-server/tracecompass-server is not a valid Windows expression. For now, if you want to start the Trace Extension in the browser, remove the expression from theia-trace-extension/examples/browser/package.json at scripts.start and the extension should start normally.

Adding new packages

When adding new packages on Windows using yarn (e.g yarn add @vscode/codicons) you might encounter the following error:

An unexpected error occurred: "expected workspace package to exist for {some package name}"

A simple solution would be restoring the project to a clean state prior to the installation of the package, then restarting Powershell in administrator mode and re-run the command to add the new package.

Architecture

The diagram below shows the main parts of the Trace Viewer's front end (left side) and back end (right side), as well as how they exchange information.

Trace viewer architecture diagram Source: EclipseCon 2021 Presentation (slide 18), Bernd Hufmann

Gitpod: Open the Trace Viewer extension

When the project is opened in Gitpod, it should build automatically and then pop a notification saying a service (i.e. the example application) is now available.

gitpod-service-ready-notification

Gidpod: Open via Remote Explorer

If there is no notification, you can open the application directly in the Remote Explorer view.

  1. The Remote Explorer view can be opened:
    • Via the Ports section in the bottom bar (see screenshot below), or
    • Via the Command palette or Open View menu (type "view remote explorer")
  2. Once in the Remote Explorer, select "Open Browser" for the port 3000. By default, the application is hosted on port 3000.

Open Browser

Tests

To run tests once, at the root of the project, run:

yarn test --verbose

To keep tests running, use:

yarn test --verbose --watch

Test coverage

The following command prints a coverage report to the terminal. As of now, it covers all typescript files of the project, including those that are not supposed to have tests.

yarn test --coverage --collectCoverageFrom='src/**/*.ts'

About ADRs

ADRs are Architectural Decision Records.

This script is used to generate ADR's Mermaid diagram images for GitHub rendering.

Python setup

To initialize a local virtual environment, type the following commands in the root directory:

python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
  • The virtual environment can be replaced with another setup locally.
  • Above, the ./requirements.txt file has the ADR tool to install.

About

Theia trace viewer extension using the tsp-typescript-client (https://github.com/theia-ide/tsp-typescript-client) and Trace Server Protocol (https://github.com/theia-ide/trace-server-protocol).

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 95.5%
  • CSS 3.2%
  • JavaScript 1.1%
  • Dockerfile 0.2%