Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tracing Visualization #46

Closed
wants to merge 9 commits into from
Closed

Conversation

Abby010
Copy link

@Abby010 Abby010 commented Mar 17, 2025

Description

This program visualizes real-time execution flow of distributed spans in a terminal-based UI (TUI) using React Ink. It allows users to toggle between time-based (--sample 1s) and logical event-based (--sample logical) views while displaying structured span hierarchies with box-drawing characters.

Issues Fixed

Tasks

  • 1. We now have a working visualization (Attaching terminal recordings for reference at the end).
  • 2. The core library has been implemented

Final checklist

  • Domain specific tests
  • Full tests
  • Updated inline-comment documentation
  • Lint fixed
  • Squash and rebased
  • Sanity check the final build

Terminal 1: --sample logical

  • Preview (https://asciinema.org/a/aFR8RMpu9oR0K5rno8Ko46KsG)
  • Runs cli.tsx, utilizing React-Ink to display spans in a hierarchical tree structure based on logical parent-child relationships.
  • Organizes spans according to their causal dependencies (e.g., child spans appear under their respective parent spans).
  • Ensures that spans are grouped logically rather than by strict timestamp order, helping to visualize the structured execution flow.

Terminal 2: --sample 1s

  • Preview (https://asciinema.org/a/YyzawXqKRe6D8p71NIm59QKms)
  • Runs cli.tsx, utilizing React-Ink to display spans sorted by their start time rather than logical hierarchy.
  • Orders spans sequentially, meaning spans that start earlier appear first, regardless of parent-child relationships.
  • Provides a time-centric view, useful for debugging latency and analyzing performance bottlenecks in real-time execution.



NOTE - Closing in favour of #47

Copy link

linear bot commented Mar 17, 2025

ENG-234

@Abby010 Abby010 changed the title [FEAT ]Feature/tracing visualization [FEAT]Feature/tracing visualization Mar 17, 2025
@Abby010 Abby010 requested a review from tegefaulkes March 17, 2025 03:45
@Abby010 Abby010 changed the title [FEAT]Feature/tracing visualization Tracing Visualization Mar 17, 2025
@Abby010 Abby010 self-assigned this Mar 17, 2025
@Abby010 Abby010 marked this pull request as ready for review March 18, 2025 04:09
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are a lot of changes here which shouldn't have been made here. You should only make the smallest amount of changes required. At your level, you should only need to change packages and maybe add one or two new commands.

Compare your new package.json with the one on staging and merge the changes in both.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I remember this now. I made those changes because I was usingts-node, but since we have migrated to tsx, merging the files isn't necessary. The existing file works with my code.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Then make sure the additions like new bin commands or new packages are reflected in the newer file as well.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't want any additional dependencies for the tracing system. It be entirely self-contained.

@CMCDragonkai
Copy link
Member

Wrong branchname @Abby010. Please close this and create feature-..

@CMCDragonkai
Copy link
Member

I'm not sure this will even go into js-logger, so for now it's an experiment. Then we can assess if js-logger is even the right library to be in. It might go into a new one js-tracer.

@CMCDragonkai CMCDragonkai requested review from CMCDragonkai and removed request for tegefaulkes March 24, 2025 00:00
@CMCDragonkai
Copy link
Member

Use setInterval to output alot of synthetic data.

@CMCDragonkai
Copy link
Member

Integrating this into js-events would allow this to visualize the js-async-init decorators. So it is a practical usage.

@CMCDragonkai
Copy link
Member

CMCDragonkai commented Mar 24, 2025

We should be able to use the event target to be able to show object lifecycles.

@CMCDragonkai
Copy link
Member

Read over the repos js-async-init and js-events, and consider a plan for integration, how would this tracer end up tracing the creation, destruction and start/stop.

@CMCDragonkai
Copy link
Member

Make use of the event target listeners... and just do it there.

@CMCDragonkai
Copy link
Member

Test on Polykey-CLI later - start a new feature branch to do this.

@CMCDragonkai
Copy link
Member

Focus on the nodes domain - objects governed by js-async-init.

@CMCDragonkai
Copy link
Member

Future data integration into chrome debugger protocol could be useful. That would avoid having us have to build UIs for interpreting the data. It would depend on whether there's a proper span visualizer - since ours is not compatible with opentracer. Our tracing data is a bit different.

But then again, with R1 Claude it should be possible to generate a bunch of UI code for this.

@Abby010 Abby010 closed this Mar 24, 2025
@CMCDragonkai
Copy link
Member

@Abby010 can you reference the new PR when you close an old PR, always say Closing in favour of #....

@Abby010
Copy link
Author

Abby010 commented Mar 25, 2025

Closing in favour of #47

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

Integrate Tracing (derived from OpenTelemetry)
3 participants