Skip to content

Commit 2fba65b

Browse files
committed
Improve handling of status code/message (#51)
Improved how translators handling mapping status codes and messages to and from OC translator/trace/README.md documents the new behaviour
1 parent e32ae89 commit 2fba65b

31 files changed

+2108
-76
lines changed

processor/tracesamplerprocessor/tracesamplerprocessor.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

processor/tracesamplerprocessor/tracesamplerprocessor_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

receiver/jaegerreceiver/jaeger_agent_test.go

-12
Original file line numberDiff line numberDiff line change
@@ -171,12 +171,6 @@ func testJaegerAgent(t *testing.T, agentEndpoint string, receiverConfig *Configu
171171
},
172172
Attributes: &tracepb.Span_Attributes{
173173
AttributeMap: map[string]*tracepb.AttributeValue{
174-
"status.code": {
175-
Value: &tracepb.AttributeValue_IntValue{IntValue: trace.StatusCodeNotFound},
176-
},
177-
"status.message": {
178-
Value: &tracepb.AttributeValue_StringValue{StringValue: &tracepb.TruncatableString{Value: "Stale indices"}},
179-
},
180174
"error": {
181175
Value: &tracepb.AttributeValue_BoolValue{BoolValue: true},
182176
},
@@ -204,12 +198,6 @@ func testJaegerAgent(t *testing.T, agentEndpoint string, receiverConfig *Configu
204198
},
205199
Attributes: &tracepb.Span_Attributes{
206200
AttributeMap: map[string]*tracepb.AttributeValue{
207-
"status.code": {
208-
Value: &tracepb.AttributeValue_IntValue{IntValue: trace.StatusCodeInternal},
209-
},
210-
"status.message": {
211-
Value: &tracepb.AttributeValue_StringValue{StringValue: &tracepb.TruncatableString{Value: "Frontend crash"}},
212-
},
213201
"error": {
214202
Value: &tracepb.AttributeValue_BoolValue{BoolValue: true},
215203
},

receiver/jaegerreceiver/trace_receiver_test.go

-12
Original file line numberDiff line numberDiff line change
@@ -154,12 +154,6 @@ func TestReception(t *testing.T) {
154154
},
155155
Attributes: &tracepb.Span_Attributes{
156156
AttributeMap: map[string]*tracepb.AttributeValue{
157-
"status.code": {
158-
Value: &tracepb.AttributeValue_IntValue{IntValue: trace.StatusCodeNotFound},
159-
},
160-
"status.message": {
161-
Value: &tracepb.AttributeValue_StringValue{StringValue: &tracepb.TruncatableString{Value: "Stale indices"}},
162-
},
163157
"error": {
164158
Value: &tracepb.AttributeValue_BoolValue{BoolValue: true},
165159
},
@@ -187,12 +181,6 @@ func TestReception(t *testing.T) {
187181
},
188182
Attributes: &tracepb.Span_Attributes{
189183
AttributeMap: map[string]*tracepb.AttributeValue{
190-
"status.code": {
191-
Value: &tracepb.AttributeValue_IntValue{IntValue: trace.StatusCodeInternal},
192-
},
193-
"status.message": {
194-
Value: &tracepb.AttributeValue_StringValue{StringValue: &tracepb.TruncatableString{Value: "Frontend crash"}},
195-
},
196184
"error": {
197185
Value: &tracepb.AttributeValue_BoolValue{BoolValue: true},
198186
},

receiver/prometheusreceiver/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

receiver/prometheusreceiver/config_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

receiver/prometheusreceiver/factory.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

receiver/prometheusreceiver/factory_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

receiver/zipkinreceiver/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

receiver/zipkinreceiver/config_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

receiver/zipkinreceiver/factory.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

receiver/zipkinreceiver/factory_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019, OpenCensus Authors
1+
// Copyright 2019, OpenTelemetry Authors
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

translator/trace/README.md

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Overview
2+
3+
This package implements a number of translators that help translate spans to and from OpenCensus format to a number of other supported formats such as Jaeger Proto, Jaeger Thrift, Zipkin Thrift, Zipkin JSON. This document mentions how certain non-obvious things should be handled.
4+
5+
## Links:
6+
7+
* [OpenTracing Semantic Conventions](https://github.com/opentracing/specification/blob/master/semantic_conventions.md)
8+
9+
## Status Codes and Messages
10+
11+
### OpenCensus
12+
13+
OpenCensus protocol has a special field to represent the status of an operation. The status field has two fields, an int32 field called `code` and a string field called `message`. When converting from other formats, status field must be set from the relevant tags/attributes of the source format. When converting from OC to other formats, the status field must be translated to appropriate tags/attributes of the target format.
14+
15+
16+
### Jaeger to OC
17+
18+
Jaeger spans may contain two possible sets of tags that can possibly represent the status of an operation:
19+
20+
- `status.code` and `status.message`
21+
- `http.status_code` and `http.status_message`
22+
23+
When converting from Jaeger to OC,
24+
25+
1. OC status should be set from `status.code` and `status.message` tags if `status.code` tag is found on the Jaeger span. Since OC already has a special status field, these tags (`status.code` and `status.message`) are redundant and should be dropped from resultant OC span.
26+
2. If the `status.code` tag is not present, status should be set from `http.status_code` and `http.status_message` if the `http.status_code` tag is found. HTTP status code should be mapped to the appropriate gRPC status code before using it in OC status. These tags should be preserved and added to the resultant OC span as attributes.
27+
3. If none of the tags are found, OC status should not be set.
28+
29+
30+
### Zipkin to OC
31+
32+
In addition to the two sets of tags mentioned in the previous section, Zipkin spans can possibly contain a third set of tags to represent operation status resulting in the following sets of tags:
33+
34+
- `census.status_code` and `census.status_description`
35+
- `status.code` and `status.message`
36+
- `http.status_code` and `http.status_message`
37+
38+
When converting from Zipkin to OC,
39+
40+
1. OC status should be set from `census.status_code` and `census.status_description` if `census.status_code` tag is found on the Zipkin span. These tags should be dropped from the resultant OC span.
41+
2. If the `census.status_code` tag is not found in step 1, OC status should be set from `status.code` and `status.message` tags if the `status.code` tag is present. The tags should be dropped from the resultant OC span.
42+
3. If no tags are found in step 1 and 2, OC status should be set from `http.status_code` and `http.status_message` if either `http.status_code` tag is found. These tags should be preserved and added to the resultant OC span as attributes.
43+
4. If none of the tags are found, OC status should not be set.
44+
45+
46+
Note that codes and messages from different sets of tags should not be mixed to form the status field. For example, OC status should not contain code from `http.status_code` but message from `status.message` and vice-versa. Both fields must be set from the same set of tags even if it means leaving one of the two fields empty.
47+
48+
49+
### OC to Jaeger
50+
51+
When converting from OC to Jaeger, if the OC span has a status field set, then
52+
53+
* `code` should be added as a `status.code` tag.
54+
* `message` should be added as a `status.message` tag.
55+
56+
### OC to Zipkin
57+
58+
When converting from OC to Zipkin, if the OC span has the status field set, then
59+
60+
* `code` should be added as a `census.status_code` tag.
61+
* `message` should be added as a `census.status_description` tag.
62+
63+
In addition to this, if the OC status field represents a non-OK status, then a tag with the key `error` should be added and set to the same value as that of the status message falling back to status code when status message is not available.
64+
65+
### Note:
66+
67+
If either target tags (`status.*` or `census.status_*`) are already present on the span, then they should be preserved and not overwritten from the status field. This is extremely unlikely to happen within the collector because of how things are implemented but any other implementations should still follow this rule.
68+
69+
70+
## Converting HTTP status codes to OC codes
71+
72+
The following guidelines should be followed for translating HTTP status codes to OC ones. https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto
73+
74+
This is implemented by the `tracetranslator` package as `HTTPToOCCodeMapper`.

translator/trace/grpc_http_mapper.go

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
// Copyright 2019, OpenTelemetry Authors
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
package tracetranslator
16+
17+
// https://github.com/googleapis/googleapis/blob/bee79fbe03254a35db125dc6d2f1e9b752b390fe/google/rpc/code.proto#L33-L186
18+
const (
19+
OCOK = 0
20+
OCCancelled = 1
21+
OCUnknown = 2
22+
OCInvalidArgument = 3
23+
OCDeadlineExceeded = 4
24+
OCNotFound = 5
25+
OCAlreadyExists = 6
26+
OCPermissionDenied = 7
27+
OCResourceExhausted = 8
28+
OCFailedPrecondition = 9
29+
OCAborted = 10
30+
OCOutOfRange = 11
31+
OCUnimplemented = 12
32+
OCInternal = 13
33+
OCUnavailable = 14
34+
OCDataLoss = 15
35+
OCUnauthenticated = 16
36+
)
37+
38+
var httpToOCCodeMap = map[int32]int32{
39+
400: OCInvalidArgument,
40+
401: OCUnauthenticated,
41+
403: OCPermissionDenied,
42+
404: OCNotFound,
43+
409: OCAborted,
44+
429: OCResourceExhausted,
45+
499: OCCancelled,
46+
500: OCInternal,
47+
501: OCUnimplemented,
48+
503: OCUnavailable,
49+
504: OCDeadlineExceeded,
50+
}
51+
52+
// OCStatusCodeFromHTTP takes an HTTP status code and return the appropriate OC status code
53+
func OCStatusCodeFromHTTP(code int32) int32 {
54+
if code >= 200 && code < 300 {
55+
return OCOK
56+
}
57+
if code, ok := httpToOCCodeMap[code]; ok {
58+
return code
59+
}
60+
return OCUnknown
61+
}

translator/trace/jaeger/jaegerthrift_to_protospan.go

+18-4
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,8 @@ func jtagsToAttributes(tags []*jaeger.Tag) (string, tracepb.Span_SpanKind, *trac
190190

191191
var statusCodePtr *int32
192192
var statusMessage string
193+
var httpStatusCodePtr *int32
194+
var httpStatusMessage string
193195
var message string
194196

195197
sAttribs := make(map[string]*tracepb.AttributeValue)
@@ -206,12 +208,19 @@ func jtagsToAttributes(tags []*jaeger.Tag) (string, tracepb.Span_SpanKind, *trac
206208
sKind = tracepb.Span_SERVER
207209
}
208210

209-
case "http.status_code", "status.code": // It is expected to be an int
210-
statusCodePtr = new(int32)
211-
*statusCodePtr = int32(tag.GetVLong())
211+
case tracetranslator.TagStatusCode:
212+
statusCodePtr = statusCodeFromTag(tag)
213+
continue
212214

213-
case "http.status_message", "status.message":
215+
case tracetranslator.TagStatusMsg:
214216
statusMessage = tag.GetVStr()
217+
continue
218+
219+
case tracetranslator.TagHTTPStatusCode:
220+
httpStatusCodePtr = statusCodeFromHTTPTag(tag)
221+
222+
case tracetranslator.TagHTTPStatusMsg:
223+
httpStatusMessage = tag.GetVStr()
215224

216225
case "message":
217226
message = tag.GetVStr()
@@ -248,6 +257,11 @@ func jtagsToAttributes(tags []*jaeger.Tag) (string, tracepb.Span_SpanKind, *trac
248257
sAttribs[tag.Key] = attrib
249258
}
250259

260+
if statusCodePtr == nil {
261+
statusCodePtr = httpStatusCodePtr
262+
statusMessage = httpStatusMessage
263+
}
264+
251265
var sStatus *tracepb.Status
252266
if statusCodePtr != nil || statusMessage != "" {
253267
statusCode := int32(0)

0 commit comments

Comments
 (0)