tracetranslator

package
v0.25.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 20, 2021 License: Apache-2.0 Imports: 7 Imported by: 0

README

Overview

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.

Status Codes and Messages

OpenCensus

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.

Jaeger to OC

Jaeger spans may contain two possible sets of tags that can possibly represent the status of an operation:

  • status.code and status.message
  • http.status_code and http.status_message

When converting from Jaeger to OC,

  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.
  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.
  3. If none of the tags are found, OC status should not be set.
Zipkin to OC

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:

  • census.status_code and census.status_description
  • status.code and status.message
  • http.status_code and http.status_message

When converting from Zipkin to OC,

  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.
  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.
  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.
  4. If none of the tags are found, OC status should not be set.

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.

OC to Jaeger

When converting from OC to Jaeger, if the OC span has a status field set, then

  • code should be added as a status.code tag.
  • message should be added as a status.message tag.
OC to Zipkin

When converting from OC to Zipkin, if the OC span has the status field set, then

  • code should be added as a census.status_code tag.
  • message should be added as a census.status_description tag.

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.

Note:

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.

Converting HTTP status codes to OC codes

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

This is implemented by the tracetranslator package as HTTPToOCCodeMapper.

Documentation

Index

Constants

View Source
const (
	OCOK                 = 0
	OCCancelled          = 1
	OCUnknown            = 2
	OCInvalidArgument    = 3
	OCDeadlineExceeded   = 4
	OCNotFound           = 5
	OCAlreadyExists      = 6
	OCPermissionDenied   = 7
	OCResourceExhausted  = 8
	OCFailedPrecondition = 9
	OCAborted            = 10
	OCOutOfRange         = 11
	OCUnimplemented      = 12
	OCInternal           = 13
	OCUnavailable        = 14
	OCDataLoss           = 15
	OCUnauthenticated    = 16
)

https://github.com/googleapis/googleapis/blob/bee79fbe03254a35db125dc6d2f1e9b752b390fe/google/rpc/code.proto#L33-L186

View Source
const (
	TagMessage = "message"

	TagSpanKind = "span.kind"

	TagStatusCode          = "status.code"
	TagStatusMsg           = "status.message"
	TagError               = "error"
	TagHTTPStatusCode      = "http.status_code"
	TagHTTPStatusMsg       = "http.status_message"
	TagZipkinCensusCode    = "census.status_code"
	TagZipkinCensusMsg     = "census.status_description"
	TagZipkinOpenCensusMsg = "opencensus.status_description"

	TagW3CTraceState     = "w3c.tracestate"
	TagServiceNameSource = "otlp.service.name.source"
)

Some of the keys used to represent OTLP constructs as tags or annotations in other formats.

View Source
const (
	SpanLinkDataFormat  = "%s|%s|%s|%s|%d"
	SpanEventDataFormat = "%s|%s|%d"
)
View Source
const (
	ResourceNoServiceName = "OTLPResourceNoServiceName"
)

Constants used for signifying batch-level attribute values where not supplied by OTLP data but required by other protocols.

Variables

This section is empty.

Functions

func AttributeArrayToSlice added in v0.11.0

func AttributeArrayToSlice(attrArray pdata.AnyValueArray) []interface{}

AttributeArrayToSlice creates a slice out of a pdata.AnyValueArray.

func AttributeMapToMap added in v0.11.0

func AttributeMapToMap(attrMap pdata.AttributeMap) map[string]interface{}

AttributeMapToMap converts an OTLP AttributeMap to a standard go map

func AttributeValueToString added in v0.8.0

func AttributeValueToString(attr pdata.AttributeValue, jsonLike bool) string

AttributeValueToString converts an OTLP AttributeValue object to its equivalent string representation

func DetermineValueType added in v0.11.0

func DetermineValueType(value string, omitSimpleTypes bool) pdata.AttributeValueType

DetermineValueType returns the native OTLP attribute type the string translates to.

func OCStatusCodeFromHTTP

func OCStatusCodeFromHTTP(code int32) int32

OCStatusCodeFromHTTP takes an HTTP status code and return the appropriate OpenTelemetry status code See: https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/data-http.md

func SpanIDToUInt64 added in v0.21.0

func SpanIDToUInt64(spanID pdata.SpanID) uint64

SpanIDToUInt64 converts the pdata.SpanID to uint64 representation.

func StatusCodeFromHTTP added in v0.14.0

func StatusCodeFromHTTP(httpStatusCode int) pdata.StatusCode

StatusCodeFromHTTP takes an HTTP status code and return the appropriate OpenTelemetry status code See: https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/semantic_conventions/http.md#status

func TraceIDToUInt64Pair added in v0.12.0

func TraceIDToUInt64Pair(traceID pdata.TraceID) (uint64, uint64)

TraceIDToUInt64Pair converts the pdata.TraceID to a pair of uint64 representation.

func UInt64ToSpanID added in v0.12.0

func UInt64ToSpanID(id uint64) pdata.SpanID

UInt64ToSpanID converts the uint64 representation of a SpanID to pdata.SpanID.

func UInt64ToTraceID added in v0.12.0

func UInt64ToTraceID(high, low uint64) pdata.TraceID

UInt64ToTraceID converts the pair of uint64 representation of a TraceID to pdata.TraceID.

func UpsertStringToAttributeMap added in v0.11.0

func UpsertStringToAttributeMap(key string, val string, dest pdata.AttributeMap, omitSimpleTypes bool)

UpsertStringToAttributeMap upserts a string value to the specified key as it's native OTLP type

Types

type OpenTracingSpanKind

type OpenTracingSpanKind string

OpenTracingSpanKind are possible values for TagSpanKind and match the OpenTracing conventions: https://github.com/opentracing/specification/blob/main/semantic_conventions.md These values are used for representing span kinds that have no equivalents in OpenCensus format. They are stored as values of TagSpanKind

const (
	OpenTracingSpanKindUnspecified OpenTracingSpanKind = ""
	OpenTracingSpanKindClient      OpenTracingSpanKind = "client"
	OpenTracingSpanKindServer      OpenTracingSpanKind = "server"
	OpenTracingSpanKindConsumer    OpenTracingSpanKind = "consumer"
	OpenTracingSpanKindProducer    OpenTracingSpanKind = "producer"
	OpenTracingSpanKindInternal    OpenTracingSpanKind = "internal"
)

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL