diff options
| author | 2023-09-07 13:20:37 +0200 | |
|---|---|---|
| committer | 2023-09-07 13:20:37 +0200 | |
| commit | 14ef09809942800db57de87fe3963770a56b585b (patch) | |
| tree | 89e95f21145bc7ad5745f77be1d998faa9c09695 /vendor/go.opentelemetry.io/proto/otlp/common/v1 | |
| parent | [bugfix] fix checks for deref the same status descendants / ascendants (#2181) (diff) | |
| download | gotosocial-14ef09809942800db57de87fe3963770a56b585b.tar.xz | |
[feature] Support OTLP HTTP, drop Jaeger (#2184)
* [feature] Add http trace exporter, drop Jaeger
Jaeger supports ingesting traces using the OpenTelemetry gRPC or HTTP
methods. The Jaeger project has deprecated the old jaeger transport.
* Add support for submitting traces over HTTP
* Drop support for the old Jaeger protocol
* Upgrade the trace libraries to v1.17
Fixes: #2176
Fixes: #2179
Diffstat (limited to 'vendor/go.opentelemetry.io/proto/otlp/common/v1')
| -rw-r--r-- | vendor/go.opentelemetry.io/proto/otlp/common/v1/common.pb.go | 9 | 
1 files changed, 6 insertions, 3 deletions
| diff --git a/vendor/go.opentelemetry.io/proto/otlp/common/v1/common.pb.go b/vendor/go.opentelemetry.io/proto/otlp/common/v1/common.pb.go index 8502e607b..852209b09 100644 --- a/vendor/go.opentelemetry.io/proto/otlp/common/v1/common.pb.go +++ b/vendor/go.opentelemetry.io/proto/otlp/common/v1/common.pb.go @@ -15,7 +15,7 @@  // Code generated by protoc-gen-go. DO NOT EDIT.  // versions:  // 	protoc-gen-go v1.26.0 -// 	protoc        v3.17.3 +// 	protoc        v3.21.6  // source: opentelemetry/proto/common/v1/common.proto  package v1 @@ -361,8 +361,11 @@ type InstrumentationScope struct {  	unknownFields protoimpl.UnknownFields  	// An empty instrumentation scope name means the name is unknown. -	Name                   string      `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` -	Version                string      `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"` +	Name    string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` +	Version string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"` +	// Additional attributes that describe the scope. [Optional]. +	// Attribute keys MUST be unique (it is not allowed to have more than one +	// attribute with the same key).  	Attributes             []*KeyValue `protobuf:"bytes,3,rep,name=attributes,proto3" json:"attributes,omitempty"`  	DroppedAttributesCount uint32      `protobuf:"varint,4,opt,name=dropped_attributes_count,json=droppedAttributesCount,proto3" json:"dropped_attributes_count,omitempty"`  } | 
