-
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
Feature-Tracing-Visualization #47
base: staging
Are you sure you want to change the base?
Conversation
Any new visualisations based on lots of lots of data??? @Abby010 and make sure you are copying over and synthesizing the details I have earlier. |
Not yet, I starting getting some dependency errors so I needed to fix that but I have started working with lots of data. |
New video links have been added with more data in the description |
Add comments rather than editing spec for that stuff. |
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.
Most changes are just code style changes. As a summary:
- use
undefined
for null-ish fields - check if a value is undefined or not by doing a
== null
or!= null
check (yes, even though we haveundefined
as the type) - use single quotes
- ensure import formatting
- for array types, always wrap it in
Array<>
- for potentially undefined fields use
?
, unless you are unable to use?
for the parameter type, in which case you always useType | undefined
(as opposed tonull
)
spans.json
Outdated
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.
Make sure that you run the following commands before pushing.
npm run build
npm run lint
npm run test
You can omit the first command in most cases if either linting or tests pass. The build command basically reveals any typescript errors which are caused by violating the typescript rules, meaning the program can't be compiled.
If you pushed something in which the CI is failing, then push up the next commit to address the failed CI. This fixing commit should be rebased and squashed into the previous commit, so they look like a single commit and keep the history clean.
Try to ensure the CI is passing at all times. If it is not, and it is intended to not pass, then add the following in a new line in the commit message to skip the CI workflow. You normally do it in WIP commits where it is expected for the CI to fail, and try to avoid skipping CI unless you have a good reason to do so.
wip: working on this new feature
[ci skip]
The lint command reveals a bunch of linting issues, but problems like incorrect indentation or a missing semicolon can be addressed automatically. Thus, in these cases, prefer to run npm run lintfix
to resolve automatically fixable lint issues. If there are issues not automatically resolvable, then it will perform all possible fixes and give you a list for manual fixing.
Make sure to resolve all linting errors and warnings. Even a warning will fail the linting step in the CI.
spans.json
Outdated
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'm guessing this file is designed to act as dummy data for testing out your program. Usually, fast-check
is used for writing tests like this.
Refer to these links for a quick guide on writing tests using fast-check.
- feature/ENG-527 Adding agent RPC handlers for getting sigchain and audit data. Polykey#870 (comment)
- feature/ENG-527 Adding agent RPC handlers for getting sigchain and audit data. Polykey#870 (comment)
You can also dynamically generate JSON data using this method. Refer to the implementation here for an example of doing it.
Refer to this page for a more comprehensive documentation on available arbitraries. We might need to have a meeting to go through using fast-check to generate dummy data.
On the other hand, using pre-set data is also useful for testing. If you're doing a show-case, then using these 'fixtures' makes perfect sense. In that case, it would need to be under a place like tests/fixtures/span.json
.
Basically, if you're using this for testing, then use fast-check instead. If you're using this for demo, then restructure the file in the project tree.
@Abby010 can you:
I think it's important for testing why seed nodes are crashing. Also why use |
Also you should be assigning yourself. |
Start adding tests too. |
And benchmarks. I want a plan as of next cycle. |
src/lib/span.ts
Outdated
constructor(name: string, parentSpanId: string | null = null) { | ||
this.spanId = `span-${Date.now()}-${Math.random().toString(36).substr(2, 5)}`; | ||
this.name = name; | ||
this.startTime = Date.now(); | ||
this.endTime = null; | ||
this.parentSpanId = parentSpanId; | ||
this.children = []; | ||
} | ||
|
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.
The only things that need to be set in the constructor are things that need the be passed through the constructor. Any other property can be defaulted when defined above with public startTime: number = Date.now()
The spanId
should be an IdSortable
from @matrixai/id
library.
Make sure that the span structure can be streamed into an incremental jsonl format. This is what we will be using to then stream visualise on the browser. @shafiqihtsham can weigh in if you talk to him about it. But I want you to write out a plan for implementation in Polykey-CLI by today. |
Tracing Integration PlanPhase 1: Integrate Tracing into js-logger as a First-Class Component
Add Incremental Span Streaming to JSONL
Phase 2: Integrate Tracer with Polykey CLI and Lifecycle Events
|
Your phase 2 doesn't mention https://github.com/MatrixAI/js-async-init at all. You both need to talk about the implementation plan with @tegefaulkes since I think you're missing some contextual details critical to understanding how tracing can be applied to Polykey's runtime. |
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