-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnormalized.sample.json
More file actions
69 lines (68 loc) · 1.79 KB
/
normalized.sample.json
File metadata and controls
69 lines (68 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"spans": [
{
"trace_id": "t-checkout",
"span_id": "frontend-1",
"service": "frontend",
"kind": "server",
"name": "GET /checkout",
"start_time": "2026-03-03T00:00:00Z",
"end_time": "2026-03-03T00:00:00.010Z",
"attributes": {
"http.request.method": "GET",
"http.route": "/checkout"
}
},
{
"trace_id": "t-checkout",
"span_id": "checkout-1",
"parent_span_id": "frontend-1",
"service": "checkout",
"kind": "server",
"name": "POST /process",
"start_time": "2026-03-03T00:00:00.010Z",
"end_time": "2026-03-03T00:00:00.070Z",
"attributes": {
"http.request.method": "POST",
"http.route": "/process"
}
},
{
"trace_id": "t-checkout",
"span_id": "payment-1",
"parent_span_id": "checkout-1",
"service": "payment",
"kind": "consumer",
"name": "kafka consume payment-events",
"start_time": "2026-03-03T00:00:00.071Z",
"end_time": "2026-03-03T00:00:00.083Z",
"attributes": {
"messaging.system": "kafka",
"messaging.destination": "payment-events"
}
},
{
"trace_id": "t-checkout",
"span_id": "inventory-1",
"parent_span_id": "checkout-1",
"service": "inventory",
"kind": "client",
"name": "reserve inventory",
"start_time": "2026-03-03T00:00:00.072Z",
"end_time": "2026-03-03T00:00:00.097Z"
},
{
"trace_id": "t-health",
"span_id": "frontend-2",
"service": "frontend",
"kind": "server",
"name": "GET /health",
"start_time": "2026-03-03T00:01:00Z",
"end_time": "2026-03-03T00:01:00.004Z",
"attributes": {
"http.request.method": "GET",
"http.route": "/health"
}
}
]
}