Skip to content

Commit 5780fe4

Browse files
docs: replace ASCII diagram with Mermaid for proper GitHub rendering
1 parent 497a19e commit 5780fe4

1 file changed

Lines changed: 4 additions & 8 deletions

File tree

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,10 @@ Request tracing and performance visualization library for Node.js. Inspect the f
2626

2727
The library has three core components:
2828

29-
```
30-
┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
31-
│ Trace Engine │────▶│ Trace Storage │────▶│ UI Dashboard │
32-
│ │ │ │ │ │
33-
│ AsyncLocal- │ │ In-memory store │ │ Real-time viz │
34-
│ Storage context │ │ with eviction │ │ at /trace/ui │
35-
│ + step tracking │ │ and retention │ │ │
36-
└─────────────────┘ └─────────────────┘ └─────────────────┘
29+
```mermaid
30+
graph LR
31+
A["<b>Trace Engine</b><br/>AsyncLocalStorage context<br/>+ step tracking"] --> B["<b>Trace Storage</b><br/>In-memory store<br/>with eviction & retention"]
32+
B --> C["<b>UI Dashboard</b><br/>Real-time visualization<br/>at /trace/ui"]
3733
```
3834

3935
## Installation

0 commit comments

Comments
 (0)