Documentation ¶
Overview ¶
Package tracespan is a generated protocol buffer package.
It is generated from these files:
bazel-out/local-fastbuild/genfiles/mixer/template/tracespan/go_default_library_tmpl.proto
It has these top-level messages:
Type InstanceParam
Index ¶
- Constants
- Variables
- type Handler
- type HandlerBuilder
- type Instance
- type InstanceParam
- func (*InstanceParam) Descriptor() ([]byte, []int)
- func (this *InstanceParam) Equal(that interface{}) bool
- func (m *InstanceParam) GetEndTime() string
- func (m *InstanceParam) GetParentSpanId() string
- func (m *InstanceParam) GetSpanId() string
- func (m *InstanceParam) GetSpanName() string
- func (m *InstanceParam) GetSpanTags() map[string]string
- func (m *InstanceParam) GetStartTime() string
- func (m *InstanceParam) GetTraceId() string
- func (this *InstanceParam) GoString() string
- func (m *InstanceParam) Marshal() (dAtA []byte, err error)
- func (m *InstanceParam) MarshalTo(dAtA []byte) (int, error)
- func (*InstanceParam) ProtoMessage()
- func (m *InstanceParam) Reset()
- func (m *InstanceParam) Size() (n int)
- func (this *InstanceParam) String() string
- func (m *InstanceParam) Unmarshal(dAtA []byte) error
- type Type
- func (*Type) Descriptor() ([]byte, []int)
- func (this *Type) Equal(that interface{}) bool
- func (m *Type) GetSpanTags() map[string]istio_mixer_v1_config_descriptor.ValueType
- func (this *Type) GoString() string
- func (m *Type) Marshal() (dAtA []byte, err error)
- func (m *Type) MarshalTo(dAtA []byte) (int, error)
- func (*Type) ProtoMessage()
- func (m *Type) Reset()
- func (m *Type) Size() (n int)
- func (this *Type) String() string
- func (m *Type) Unmarshal(dAtA []byte) error
Constants ¶
const TemplateName = "tracespan"
Fully qualified name of the template
Variables ¶
var ( ErrInvalidLengthGoDefaultLibraryTmpl = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowGoDefaultLibraryTmpl = fmt.Errorf("proto: integer overflow") )
Functions ¶
This section is empty.
Types ¶
type Handler ¶
type Handler interface { adapter.Handler // HandleTraceSpan is called by Mixer at request time to deliver instances to // to an adapter. HandleTraceSpan(context.Context, []*Instance) error }
Handler must be implemented by adapter code if it wants to process data associated with the 'tracespan' template.
Mixer uses this interface to call into the adapter at request time in order to dispatch created instances to the adapter. Adapters take the incoming instances and do what they need to achieve their primary function.
The name of each instance can be used as a key into the Type map supplied to the adapter at configuration time via the method 'SetTraceSpanTypes'. These Type associated with an instance describes the shape of the instance
type HandlerBuilder ¶
type HandlerBuilder interface { adapter.HandlerBuilder // SetTraceSpanTypes is invoked by Mixer to pass the template-specific Type information for instances that an adapter // may receive at runtime. The type information describes the shape of the instance. SetTraceSpanTypes(map[string]*Type) }
HandlerBuilder must be implemented by adapters if they want to process data associated with the 'tracespan' template.
Mixer uses this interface to call into the adapter at configuration time to configure it with adapter-specific configuration as well as all template-specific type information.
type Instance ¶
type Instance struct { // Name of the instance as specified in configuration. Name string // Trace ID is the unique identifier for a trace. All spans from the same // trace share the same Trace ID. // // Required. TraceId string // Span ID is the unique identifier for a span within a trace. It is assigned // when the span is created. // // Optional. SpanId string // Parent Span ID is the unique identifier for a parent span of this span // instance. If this is a root span, then this field MUST be empty. // // Optional. ParentSpanId string // Span name is a description of the span's operation. // // For example, the name can be a qualified method name or a file name // and a line number where the operation is called. A best practice is to use // the same display name within an application and at the same call point. // This makes it easier to correlate spans in different traces. // // Required. SpanName string // The start time of the span. // // Required. StartTime time.Time // The end time of the span. // // Required. EndTime time.Time // Span tags are a set of <key, value> pairs that provide metadata for the // entire span. The values can be specified in the form of expressions. // // Optional. SpanTags map[string]interface{} }
Instance is constructed by Mixer for the 'tracespan' template.
TraceSpan represents an individual span within a distributed trace.
When writing the configuration, the value for the fields associated with this template can either be a literal or an [expression](https://istio.io/docs/reference/config/mixer/expression-language.html). Please note that if the datatype of a field is not istio.mixer.v1.config.descriptor.ValueType, then the expression's [inferred type](https://istio.io/docs/reference/config/mixer/expression-language.html#type-checking) must match the datatype of the field.
Example config: ``` apiVersion: "config.istio.io/v1alpha2" kind: tracespan metadata:
name: default namespace: istio-system
spec:
traceId: request.headers["x-b3-traceid"] spanId: request.headers["x-b3-spanid"] | "" parentSpanId: request.headers["x-b3-parentspanid"] | "" spanName: request.path | "/" startTime: request.time endTime: response.time spanTags: http.method: request.method | "" http.status_code: response.code | 200 http.url: request.path | "" request.size: request.size | 0 response.size: response.size | 0 source.ip: source.ip | ip("0.0.0.0") source.service: source.service | "" source.user: source.user | "" source.version: source.labels["version"] | ""
```
See also: [Distributed Tracing](https://istio.io/docs/tasks/telemetry/distributed-tracing.html) for information on tracing within Istio.
type InstanceParam ¶
type InstanceParam struct { TraceId string `protobuf:"bytes,1,opt,name=trace_id,json=traceId,proto3" json:"trace_id,omitempty"` SpanId string `protobuf:"bytes,2,opt,name=span_id,json=spanId,proto3" json:"span_id,omitempty"` ParentSpanId string `protobuf:"bytes,3,opt,name=parent_span_id,json=parentSpanId,proto3" json:"parent_span_id,omitempty"` SpanName string `protobuf:"bytes,4,opt,name=span_name,json=spanName,proto3" json:"span_name,omitempty"` StartTime string `protobuf:"bytes,5,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` EndTime string `protobuf:"bytes,6,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` SpanTags map[string]string `` /* 166-byte string literal not displayed */ }
func (*InstanceParam) Descriptor ¶
func (*InstanceParam) Descriptor() ([]byte, []int)
func (*InstanceParam) Equal ¶
func (this *InstanceParam) Equal(that interface{}) bool
func (*InstanceParam) GetEndTime ¶
func (m *InstanceParam) GetEndTime() string
func (*InstanceParam) GetParentSpanId ¶
func (m *InstanceParam) GetParentSpanId() string
func (*InstanceParam) GetSpanId ¶
func (m *InstanceParam) GetSpanId() string
func (*InstanceParam) GetSpanName ¶
func (m *InstanceParam) GetSpanName() string
func (*InstanceParam) GetSpanTags ¶
func (m *InstanceParam) GetSpanTags() map[string]string
func (*InstanceParam) GetStartTime ¶
func (m *InstanceParam) GetStartTime() string
func (*InstanceParam) GetTraceId ¶
func (m *InstanceParam) GetTraceId() string
func (*InstanceParam) GoString ¶
func (this *InstanceParam) GoString() string
func (*InstanceParam) Marshal ¶
func (m *InstanceParam) Marshal() (dAtA []byte, err error)
func (*InstanceParam) ProtoMessage ¶
func (*InstanceParam) ProtoMessage()
func (*InstanceParam) Reset ¶
func (m *InstanceParam) Reset()
func (*InstanceParam) Size ¶
func (m *InstanceParam) Size() (n int)
func (*InstanceParam) String ¶
func (this *InstanceParam) String() string
func (*InstanceParam) Unmarshal ¶
func (m *InstanceParam) Unmarshal(dAtA []byte) error
type Type ¶
type Type struct { // Span tags are a set of <key, value> pairs that provide metadata for the // entire span. The values can be specified in the form of expressions. // // Optional. SpanTags map[string]istio_mixer_v1_config_descriptor.ValueType `` /* 215-byte string literal not displayed */ }
TraceSpan represents an individual span within a distributed trace.
When writing the configuration, the value for the fields associated with this template can either be a literal or an [expression](https://istio.io/docs/reference/config/mixer/expression-language.html). Please note that if the datatype of a field is not istio.mixer.v1.config.descriptor.ValueType, then the expression's [inferred type](https://istio.io/docs/reference/config/mixer/expression-language.html#type-checking) must match the datatype of the field.
Example config: ``` apiVersion: "config.istio.io/v1alpha2" kind: tracespan metadata:
name: default namespace: istio-system
spec:
traceId: request.headers["x-b3-traceid"] spanId: request.headers["x-b3-spanid"] | "" parentSpanId: request.headers["x-b3-parentspanid"] | "" spanName: request.path | "/" startTime: request.time endTime: response.time spanTags: http.method: request.method | "" http.status_code: response.code | 200 http.url: request.path | "" request.size: request.size | 0 response.size: response.size | 0 source.ip: source.ip | ip("0.0.0.0") source.service: source.service | "" source.user: source.user | "" source.version: source.labels["version"] | ""
```
See also: [Distributed Tracing](https://istio.io/docs/tasks/telemetry/distributed-tracing.html) for information on tracing within Istio.
func (*Type) Descriptor ¶
func (*Type) GetSpanTags ¶
func (m *Type) GetSpanTags() map[string]istio_mixer_v1_config_descriptor.ValueType
func (*Type) ProtoMessage ¶
func (*Type) ProtoMessage()