generated from MatrixAI/TypeScript-Demo-Lib
-
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
Closed
Closed
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
3fbb457
Implement tracing visualisation with CLI
Abby010 03c3588
Create library for tracing
Abby010 4dba16b
Improve visualizing by implementing box drawing characters
Abby010 19bdf46
Fix logical mode
Abby010 7fe867b
Fix time based mode
Abby010 0b5a53d
Remove unnecessary comments
Abby010 1eccdda
Fix package-lock.json
Abby010 ada2826
Delete unnecessary asciinema recordings
Abby010 803c86f
Fix package.json
Abby010 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,4 +59,4 @@ | |
"typedoc": "^0.24.8", | ||
"typescript": "^5.1.6" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
[ | ||
{ | ||
"spanId": "span-1740997147711-c4j4n", | ||
"name": "Root Span", | ||
"startTime": 1740997147711, | ||
"endTime": 1740997155715, | ||
"parentSpanId": null, | ||
"isCompleted": true, | ||
"children": [ | ||
{ | ||
"spanId": "span-1740997148715-wle8c", | ||
"name": "Parent span ends earlier", | ||
"startTime": 1740997148715, | ||
"endTime": 1740997150717, | ||
"parentSpanId": "span-1740997147711-c4j4n", | ||
"isCompleted": true, | ||
"children": [] | ||
}, | ||
{ | ||
"spanId": "span-1740997149716-2u7wc", | ||
"name": "Forking", | ||
"startTime": 1740997149716, | ||
"endTime": 1740997153718, | ||
"parentSpanId": "span-1740997147711-c4j4n", | ||
"isCompleted": true, | ||
"children": [] | ||
} | ||
] | ||
}, | ||
{ | ||
"spanId": "span-1740997148715-wle8c", | ||
"name": "Parent span ends earlier", | ||
"startTime": 1740997148715, | ||
"endTime": 1740997150717, | ||
"parentSpanId": "span-1740997147711-c4j4n", | ||
"isCompleted": true, | ||
"children": [] | ||
}, | ||
{ | ||
"spanId": "span-1740997149716-2u7wc", | ||
"name": "Forking", | ||
"startTime": 1740997149716, | ||
"endTime": 1740997153718, | ||
"parentSpanId": "span-1740997147711-c4j4n", | ||
"isCompleted": true, | ||
"children": [] | ||
}, | ||
{ | ||
"spanId": "span-1740997150715-7a1qz", | ||
"name": "Orphan", | ||
"startTime": 1740997150715, | ||
"endTime": 1740997154717, | ||
"parentSpanId": null, | ||
"isCompleted": true, | ||
"children": [] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
import React, { FC } from 'react'; | ||
import { Box, Text } from 'ink'; | ||
import { Span } from "../lib/span.js"; | ||
|
||
// Props for handling both root and child spans | ||
interface SpanTreeProps { | ||
spans: Span[]; | ||
sampleMode: string; | ||
} | ||
|
||
/** | ||
* Sort spans based on the selected sampling mode. | ||
*/ | ||
const sortSpans = (spans: Span[], mode: string): Span[] => { | ||
if (mode === "logical") { | ||
const spanMap = new Map<string, Span>(); | ||
|
||
// Step 1: Convert raw objects to Span instances | ||
spans.forEach(span => { | ||
if (!spanMap.has(span.spanId)) { | ||
const newSpan = new Span(span.name, span.parentSpanId); | ||
Object.assign(newSpan, span); | ||
newSpan.children = []; | ||
spanMap.set(span.spanId, newSpan); | ||
} | ||
}); | ||
|
||
const rootSpans: Span[] = []; | ||
|
||
// Step 2: Link children to parents | ||
spans.forEach(span => { | ||
if (span.parentSpanId && spanMap.has(span.parentSpanId)) { | ||
spanMap.get(span.parentSpanId)!.children.push(spanMap.get(span.spanId)!); | ||
} | ||
}); | ||
|
||
// Step 3: Collect only true root spans (avoiding duplicates) | ||
spans.forEach(span => { | ||
if (!span.parentSpanId) { | ||
const rootSpan = spanMap.get(span.spanId); | ||
if (rootSpan) { | ||
rootSpans.push(rootSpan); | ||
} | ||
} | ||
}); | ||
|
||
return rootSpans; | ||
} else { | ||
return spans | ||
.map(span => new Span(span.name, span.parentSpanId)) // Convert to Span instances | ||
.sort((a, b) => a.startTime - b.startTime); // Sort purely by start time | ||
} | ||
}; | ||
|
||
|
||
/** | ||
* **Recursive Renderer** | ||
* - Uses box-drawing characters (│ ├ └) for structured layout. | ||
*/ | ||
const RecursiveSpanTree: FC<{ span: Span; prefix: string; isLastChild: boolean }> = ({ | ||
span, | ||
prefix, | ||
isLastChild, | ||
}) => { | ||
const connector = isLastChild ? '└── ' : '├── '; | ||
const newPrefix = prefix + (isLastChild ? ' ' : '│ '); // Maintain vertical structure | ||
|
||
return ( | ||
<Box flexDirection="column"> | ||
<Text> | ||
{prefix} | ||
{connector} | ||
{span.name} | ||
</Text> | ||
|
||
{span.children.map((child, idx) => ( | ||
<RecursiveSpanTree | ||
key={child.spanId} | ||
span={child} | ||
prefix={newPrefix} | ||
isLastChild={idx === span.children.length - 1} | ||
/> | ||
))} | ||
</Box> | ||
); | ||
}; | ||
|
||
/** | ||
* **Main Component** (Sorts & Passes Data) | ||
*/ | ||
const SpanTree: FC<SpanTreeProps> = ({ spans, sampleMode }) => { | ||
const sortedSpans = sortSpans(spans, sampleMode); | ||
|
||
return ( | ||
<Box flexDirection="column"> | ||
{sortedSpans.length === 0 ? ( | ||
<Text>No spans to display</Text> | ||
) : ( | ||
sortedSpans.map((span, idx) => ( | ||
<RecursiveSpanTree | ||
key={span.spanId} | ||
span={span} | ||
prefix="" | ||
isLastChild={idx === sortedSpans.length - 1} | ||
/> | ||
)) | ||
)} | ||
</Box> | ||
); | ||
}; | ||
|
||
export default SpanTree; |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 using
ts-node
, but since we have migrated totsx
, 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.