forked from w3c/trace-context
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
119 lines (108 loc) · 3.85 KB
/
index.html
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Trace Context</title>
<script src='https://www.w3.org/Tools/respec/respec-w3c-common' class='remove' defer></script>
<script class='remove'>
var respecConfig = {
specStatus: "CR",
implementationReportURI: "https://github.com/w3c/trace-context/#reference-implementations",
previousMaturity: "WD",
previousPublishDate : "2018-11-22",
crEnd: "2019-10-08",
editors: [{
name: "Sergey Kanzhelev",
company: "Microsoft",
companyURL: "https://microsoft.com",
w3cid: "103966"
},
{
name: "Morgan McLean",
company: "Google",
companyURL: "https://google.com",
w3cid: "104128"
},
{
name: "Alois Reitbauer",
company: "Dynatrace",
companyURL: "https://dynatrace.com",
w3cid: "48276"
},
{
name: "Bogdan Drutu",
company: "Google",
companyURL: "https://google.com",
w3cid: "104091"
},
{
name: "Nik Molnar",
company: "Microsoft",
companyURL: "https://microsoft.com",
w3cid: "104238"
},
{
name: "Yuri Shkuro",
company: "Invited Expert",
w3cid: "104074"
}],
github: {
repoURL: "https://github.com/w3c/trace-context/",
branch: "master",
},
edDraftURI: "https://w3c.github.io/trace-context/",
shortName: "trace-context",
format: "markdown",
subjectPrefix: "trace-context",
wg: "Distributed Tracing Working Group",
wgPublicList: "public-trace-context",
wgURI: "https://www.w3.org/2018/distributed-tracing/",
isPreview: true, //this will add ugly box saying it's preview
otherLinks: [{
key: 'Discussions',
data: [{
value: 'We are on Gitter.',
href: 'https://gitter.im/TraceContext/Lobby'
}]
}],
localBiblio: {
"BIT-FIELD": {
title: "8-bit field",
href: "https://en.wikipedia.org/wiki/Bit_field",
publisher: "Wikipedia"
}
},
wgPatentURI: "https://www.w3.org/2004/01/pp-impl/108594/status"
};
</script>
</head>
<body>
<section id='abstract' data-include="spec/01-abstract.md" data-include-format='markdown'></section>
<section id='sotd' data-include="spec/02-sotd.md" data-include-format='markdown'></section>
<section id='conformance'></section>
<section data-include="spec/10-overview.md" data-include-format='markdown'></section>
<section data-include="spec/20-http_header_format.md" data-include-format='markdown'></section>
<section class="informative" data-include="spec/30-processing-model.md" data-include-format='markdown'></section>
<section data-include="spec/40-other-protocols.md" data-include-format='markdown'></section>
<section data-include="spec/50-privacy.md" data-include-format='markdown'></section>
<section data-include="spec/51-security.md" data-include-format='markdown'></section>
<section class="appendix" data-include="spec/60-acknowledgments.md" data-include-format='markdown'></section>
<section class="informative">
<h1>Glossary</h1>
<dl>
<dt><dfn data-lt="distributed traces">Distributed trace</dfn></dt>
<dd>
A distributed trace is a set of events, triggered as a result
of a single logical operation, consolidated across various
components of an application. A distributed trace contains
events that cross process, network and security boundaries.
A distributed trace may be initiated when someone presses a
button to start an action on a website - in this example, the
trace will represent calls made between the downstream services
that handled the chain of requests initiated by this button
being pressed.
</dd>
</dl>
</section>
</body>
</html>