Documentation ¶
Index ¶
- func AddFlags(flags *flag.FlagSet)
- type Builder
- func (b *Builder) CreateReporter(logger *zap.Logger) (*Reporter, error)
- func (b *Builder) InitFromViper(v *viper.Viper, logger *zap.Logger) *Builder
- func (b *Builder) WithChannel(c *tchannel.Channel) *Builder
- func (b *Builder) WithCollectorServiceName(s string) *Builder
- func (b *Builder) WithDiscoverer(d discovery.Discoverer) *Builder
- func (b *Builder) WithDiscoveryNotifier(n discovery.Notifier) *Builder
- type ProxyBuilder
- type Reporter
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Builder ¶
type Builder struct { // CollectorHostPorts are host:ports of a static list of Jaeger Collectors. CollectorHostPorts []string `yaml:"collectorHostPorts"` // MinPeers is the min number of servers we want the agent to connect to. // If zero, defaults to min(3, number of peers returned by service discovery) DiscoveryMinPeers int `yaml:"minPeers"` // CollectorServiceName is the name that Jaeger Collector's TChannel server // responds to. CollectorServiceName string `yaml:"collectorServiceName"` // ConnCheckTimeout is the timeout used when establishing new connections. ConnCheckTimeout time.Duration // ReportTimeout is the timeout used when reporting span batches. ReportTimeout time.Duration // contains filtered or unexported fields }
Builder Struct to hold configurations
func (*Builder) CreateReporter ¶
CreateReporter creates the TChannel-based Reporter
func (*Builder) InitFromViper ¶ added in v1.8.0
InitFromViper initializes Builder with properties retrieved from Viper.
func (*Builder) WithChannel ¶
WithChannel sets tchannel channel
func (*Builder) WithCollectorServiceName ¶
WithCollectorServiceName sets collector service name
func (*Builder) WithDiscoverer ¶
func (b *Builder) WithDiscoverer(d discovery.Discoverer) *Builder
WithDiscoverer sets service discovery
type ProxyBuilder ¶ added in v1.8.0
type ProxyBuilder struct {
// contains filtered or unexported fields
}
ProxyBuilder holds objects communicating with collector
func NewCollectorProxy ¶ added in v1.8.0
func NewCollectorProxy(builder *Builder, mFactory metrics.Factory, logger *zap.Logger) (*ProxyBuilder, error)
NewCollectorProxy creates ProxyBuilder
func (ProxyBuilder) Close ¶ added in v1.9.0
func (b ProxyBuilder) Close() error
Close closes connections used by proxy.
func (ProxyBuilder) GetManager ¶ added in v1.8.0
func (b ProxyBuilder) GetManager() configmanager.ClientConfigManager
GetManager returns manager
func (ProxyBuilder) GetReporter ¶ added in v1.8.0
func (b ProxyBuilder) GetReporter() reporter.Reporter
GetReporter returns Reporter
type Reporter ¶
type Reporter struct {
// contains filtered or unexported fields
}
Reporter forwards received spans to central collector tier over TChannel.
func New ¶
func New( collectorServiceName string, channel *tchannel.Channel, reportTimeout time.Duration, peerListMgr *peerlistmgr.PeerListManager, zlogger *zap.Logger, ) *Reporter
New creates new TChannel-based Reporter.
func (*Reporter) Channel ¶
func (r *Reporter) Channel() *tchannel.Channel
Channel returns the TChannel used by the reporter.
func (*Reporter) CollectorServiceName ¶ added in v1.8.0
CollectorServiceName returns collector service name.
func (*Reporter) EmitZipkinBatch ¶
func (r *Reporter) EmitZipkinBatch(spans []*zipkincore.Span) error
EmitZipkinBatch implements EmitZipkinBatch() of Reporter