-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathstorage.proto
226 lines (185 loc) · 6.09 KB
/
storage.proto
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
// Copyright (c) 2019 The Jaeger Authors
//
// 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.
syntax = "proto3";
package jaeger.storage.v1;
option go_package = "storage_v1";
import "gogoproto/gogo.proto";
import "google/protobuf/timestamp.proto";
import "google/protobuf/duration.proto";
import "model.proto";
// Enable gogoprotobuf extensions (https://github.com/gogo/protobuf/blob/master/extensions.md).
// Enable custom Marshal method.
option (gogoproto.marshaler_all) = true;
// Enable custom Unmarshal method.
option (gogoproto.unmarshaler_all) = true;
// Enable custom Size method (Required by Marshal and Unmarshal).
option (gogoproto.sizer_all) = true;
message GetDependenciesRequest {
google.protobuf.Timestamp start_time = 1 [
(gogoproto.stdtime) = true,
(gogoproto.nullable) = false
];
google.protobuf.Timestamp end_time = 2 [
(gogoproto.stdtime) = true,
(gogoproto.nullable) = false
];
}
message GetDependenciesResponse {
repeated jaeger.api_v2.DependencyLink dependencies = 1 [
(gogoproto.nullable) = false
];
}
message WriteSpanRequest {
jaeger.api_v2.Span span = 1;
}
// empty; extensible in the future
message WriteSpanResponse {
}
// empty; extensible in the future
message CloseWriterRequest {
}
// empty; extensible in the future
message CloseWriterResponse {
}
message GetTraceRequest {
bytes trace_id = 1 [
(gogoproto.nullable) = false,
(gogoproto.customtype) = "github.com/jaegertracing/jaeger/model.TraceID",
(gogoproto.customname) = "TraceID"
];
google.protobuf.Timestamp start_time = 2 [
(gogoproto.stdtime) = true,
(gogoproto.nullable) = false
];
google.protobuf.Timestamp end_time = 3 [
(gogoproto.stdtime) = true,
(gogoproto.nullable) = false
];
}
message GetServicesRequest {}
message GetServicesResponse {
repeated string services = 1;
}
message GetOperationsRequest {
string service = 1;
string span_kind = 2;
}
message Operation {
string name = 1;
string span_kind = 2;
}
message GetOperationsResponse {
repeated string operationNames = 1; // deprecated
repeated Operation operations = 2;
}
message TraceQueryParameters {
string service_name = 1;
string operation_name = 2;
map<string, string> tags = 3;
google.protobuf.Timestamp start_time_min = 4 [
(gogoproto.stdtime) = true,
(gogoproto.nullable) = false
];
google.protobuf.Timestamp start_time_max = 5 [
(gogoproto.stdtime) = true,
(gogoproto.nullable) = false
];
google.protobuf.Duration duration_min = 6 [
(gogoproto.stdduration) = true,
(gogoproto.nullable) = false
];
google.protobuf.Duration duration_max = 7 [
(gogoproto.stdduration) = true,
(gogoproto.nullable) = false
];
int32 num_traces = 8;
}
message FindTracesRequest {
TraceQueryParameters query = 1;
}
message SpansResponseChunk {
repeated jaeger.api_v2.Span spans = 1 [
(gogoproto.nullable) = false
];
}
message FindTraceIDsRequest {
TraceQueryParameters query = 1;
}
message FindTraceIDsResponse {
repeated bytes trace_ids = 1 [
(gogoproto.nullable) = false,
(gogoproto.customtype) = "github.com/jaegertracing/jaeger/model.TraceID",
(gogoproto.customname) = "TraceIDs"
];
}
message Throughput {
string Service = 1;
string Operation = 2;
int64 Count = 3;
string Probabilities = 4;
}
message InsertThroughputRequest {
repeated Throughput throughput = 1;
}
message InsertThroughputResponse {
string status = 1;
}
service SpanWriterPlugin {
// spanstore/Writer
rpc WriteSpan(WriteSpanRequest) returns (WriteSpanResponse);
rpc Close(CloseWriterRequest) returns (CloseWriterResponse);
}
service StreamingSpanWriterPlugin {
rpc WriteSpanStream(stream WriteSpanRequest) returns (WriteSpanResponse);
}
service SpanReaderPlugin {
// spanstore/Reader
rpc GetTrace(GetTraceRequest) returns (stream SpansResponseChunk);
rpc GetServices(GetServicesRequest) returns (GetServicesResponse);
rpc GetOperations(GetOperationsRequest) returns (GetOperationsResponse);
rpc FindTraces(FindTracesRequest) returns (stream SpansResponseChunk);
rpc FindTraceIDs(FindTraceIDsRequest) returns (FindTraceIDsResponse);
}
service ArchiveSpanWriterPlugin {
// spanstore/Writer
rpc WriteArchiveSpan(WriteSpanRequest) returns (WriteSpanResponse);
}
service ArchiveSpanReaderPlugin {
// spanstore/Reader
rpc GetArchiveTrace(GetTraceRequest) returns (stream SpansResponseChunk);
}
service DependenciesReaderPlugin {
// dependencystore/Reader
rpc GetDependencies(GetDependenciesRequest) returns (GetDependenciesResponse);
}
service SamplingStorePlugin{
rpc InsertThroughput(InsertThroughputRequest) returns (InsertThroughputResponse);
// InsertProbabilitiesAndQPS inserts calculated sampling probabilities and measured qps into storage.
// rpc InsertProbabilitiesAndQPS(hostname string, probabilities model.ServiceOperationProbabilities, qps model.ServiceOperationQPS) error
// // GetThroughput retrieves aggregated throughput for operations within a time range.
// GetThroughput(start, end time.Time) ([]*model.Throughput, error)
// // GetLatestProbabilities retrieves the latest sampling probabilities.
// GetLatestProbabilities() (model.ServiceOperationProbabilities, error)
}
// empty; extensible in the future
message CapabilitiesRequest {
}
message CapabilitiesResponse {
bool archiveSpanReader = 1;
bool archiveSpanWriter = 2;
bool streamingSpanWriter = 3;
}
service PluginCapabilities {
rpc Capabilities(CapabilitiesRequest) returns (CapabilitiesResponse);
}