-
Notifications
You must be signed in to change notification settings - Fork 0
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
Conversation
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
Wrong branchname @Abby010. Please close this and create feature-.. |
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. |
Use |
Integrating this into |
We should be able to use the event target to be able to show object lifecycles. |
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. |
Make use of the event target listeners... and just do it there. |
Test on Polykey-CLI later - start a new feature branch to do this. |
Focus on the nodes domain - objects governed by js-async-init. |
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 can you reference the new PR when you close an old PR, always say |
Closing in favour of #47 |
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
Final checklist
Terminal 1: --sample logical
Terminal 2: --sample 1s
NOTE - Closing in favour of #47