swarm: integrate OpenTracing; propagate ctx to internal APIs (#17169)
* swarm: propagate ctx, enable opentracing * swarm/tracing: log error when tracing is misconfigured
This commit is contained in:
committed by
Balint Gabor
parent
f7d3678c28
commit
7c9314f231
cmd/swarm
p2p
swarm
api
fuse
network
pss
spancontext
storage
chunker.gochunker_test.gochunkstore.gocommon.gocommon_test.godbapi.gohasherstore.gohasherstore_test.goldbstore.goldbstore_test.golocalstore.gomemstore.gomemstore_test.go
swarm.gomru
netstore.gonetstore_test.gopyramid.gotypes.gotracing
vendor
github.com
codahale
opentracing
opentracing-go
uber
jaeger-client-go
CHANGELOG.mdCONTRIBUTING.mdDCOGopkg.lockGopkg.tomlLICENSEMakefileREADME.mdRELEASE.mdbaggage_setter.gointerop.gojaeger_tag.gojaeger_thrift_span.go
config
constants.gocontext.gocontrib_observer.godoc.goglide.lockglide.yamlheader.gointernal
baggage
spanlog
throttler
log
logger.gometrics.goobserver.goprocess.gopropagation.goreference.goreporter.goreporter_options.gorpcmetrics
sampler.gosampler_options.gospan.gothrift-gen
agent
baggage
jaeger
sampling
zipkincore
thrift
README.mdapplication_exception.gobinary_protocol.gocompact_protocol.goexception.gomemory_buffer.gomessagetype.gonumeric.goprocessor.goprotocol.goprotocol_exception.goprotocol_factory.gorich_transport.goserializer.gosimple_json_protocol.gotransport.gotransport_exception.gotransport_factory.gotype.go
tracer.gotracer_options.gotransport.gotransport_udp.goutils
zipkin.gozipkin_thrift_span.gojaeger-lib
30
vendor/github.com/uber/jaeger-client-go/thrift/processor.go
generated
vendored
Normal file
30
vendor/github.com/uber/jaeger-client-go/thrift/processor.go
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you 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.
|
||||
*/
|
||||
|
||||
package thrift
|
||||
|
||||
// A processor is a generic object which operates upon an input stream and
|
||||
// writes to some output stream.
|
||||
type TProcessor interface {
|
||||
Process(in, out TProtocol) (bool, TException)
|
||||
}
|
||||
|
||||
type TProcessorFunction interface {
|
||||
Process(seqId int32, in, out TProtocol) (bool, TException)
|
||||
}
|
Reference in New Issue
Block a user