-
Notifications
You must be signed in to change notification settings - Fork 74
/
jaeger.thrift
113 lines (98 loc) · 4.4 KB
/
jaeger.thrift
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
# Copyright (c) 2016 Uber Technologies, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
namespace cpp jaegertracing.thrift
namespace java io.jaegertracing.thriftjava
namespace php Jaeger.Thrift
namespace netstd Jaeger.Thrift
namespace lua jaeger.thrift
# TagType denotes the type of a Tag's value.
enum TagType { STRING, DOUBLE, BOOL, LONG, BINARY }
# Tag is a basic strongly typed key/value pair. It has been flattened to reduce the use of pointers in golang
struct Tag {
1: required string key
2: required TagType vType
3: optional string vStr
4: optional double vDouble
5: optional bool vBool
6: optional i64 vLong
7: optional binary vBinary
}
# Log is a timed even with an arbitrary set of tags.
struct Log {
1: required i64 timestamp
2: required list<Tag> fields
}
enum SpanRefType { CHILD_OF, FOLLOWS_FROM }
# SpanRef describes causal relationship of the current span to another span (e.g. 'child-of')
struct SpanRef {
1: required SpanRefType refType
2: required i64 traceIdLow
3: required i64 traceIdHigh
4: required i64 spanId
}
# Span represents a named unit of work performed by a service.
struct Span {
1: required i64 traceIdLow # the least significant 64 bits of a traceID
2: required i64 traceIdHigh # the most significant 64 bits of a traceID; 0 when only 64bit IDs are used
3: required i64 spanId # unique span id (only unique within a given trace)
4: required i64 parentSpanId # since nearly all spans will have parents spans, CHILD_OF refs do not have to be explicit
5: required string operationName
6: optional list<SpanRef> references # causal references to other spans
7: required i32 flags # a bit field used to propagate sampling decisions. 1 signifies a SAMPLED span, 2 signifies a DEBUG span.
8: required i64 startTime
9: required i64 duration
10: optional list<Tag> tags
11: optional list<Log> logs
}
# Process describes the traced process/service that emits spans.
struct Process {
1: required string serviceName
2: optional list<Tag> tags
}
# ClientStats exposes some metrics from Jaeger client.
#
# Although Jaeger clients internally support integrations with metrics backends,
# not all users actually configure those, and even if they do, the metrics are
# often namespaced to the application, e.g. by including a tag service=xyz or
# using a custom prefix, which makes it more difficult to observe across the site.
# The ClientStats provides an alternative mechanism of reporting the same metrics
# to the Jaeger backend components (agent or collector) where those same metrics
# can be re-emitted with standardized naming scheme.
struct ClientStats {
1: required i64 fullQueueDroppedSpans
2: required i64 tooLargeDroppedSpans
3: required i64 failedToEmitSpans
}
# Batch is a collection of spans reported out of process.
struct Batch {
# Since all spans submitted by a given client are produced by the same Process,
# it only needs to be sent once.
1: required Process process
# List of spans produced by a process. There is no specific limitation on the
# size of this list, however some transports may impose a cap on the total size
# of the overall Batch message, e.g. 65,000 bytes cap for UDP messages.
2: required list<Span> spans
# Jaeger clients are encouraged to assign an incrementing sequence number to
# each batch, so that the Jaeger backend components could detect and report
# missing packets (especially when using the UDP transport).
3: optional i64 seqNo
4: optional ClientStats stats
}
# BatchSubmitResponse is the response on submitting a batch.
struct BatchSubmitResponse {
1: required bool ok # The Collector's client is expected to only log (or emit a counter) when not ok equals false
}
service Collector {
list<BatchSubmitResponse> submitBatches(1: list<Batch> batches)
}