Diagram View
The topology of programs using the Python or C++ SDKs can be visualized in an interactive diagram using our VS Code extension.
Rendering Diagrams
Open VS Code and bring up the Command Palette using
Ctrl+Shift+P. Type Xronos: Open Diagram View and select the
corresponding entry using ⏎. This will open the Xronos Diagram view as
shown below.

Initially, no diagram is shown. The diagram view automatically renders the program that was last executed. Try running the Python or C++ “Hello, World!” example. If you like, you can use the builtin terminal of VS Code.
$ source .venv/bin/activate
$ python hello.py
Hello, World!
$ ./build/hello
Hello, World!
Now the diagram view updates and shows the hello reactor that we just executed.

You may run arbitrary Xronos programs and observe their topology in the diagram
view. For instance, the YOLO example is rendered as shown below.

Viewing Diagram Server Logs
To view the diagram server logs, open the Output panel using
and select Xronos Diagram Server from the
dropdown.