From 39bc80e17e751360d910deac0f5b9da6b964f536 Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Tue, 12 Dec 2017 10:30:00 +0000 Subject: [PATCH] Add ability to create new tracer --- .../dendrite/common/basecomponent/base.go | 32 +++++++++++++++++++ .../dendrite/common/config/config.go | 10 ++++++ 2 files changed, 42 insertions(+) diff --git a/src/github.com/matrix-org/dendrite/common/basecomponent/base.go b/src/github.com/matrix-org/dendrite/common/basecomponent/base.go index ed43c4d7..035c0982 100644 --- a/src/github.com/matrix-org/dendrite/common/basecomponent/base.go +++ b/src/github.com/matrix-org/dendrite/common/basecomponent/base.go @@ -24,6 +24,7 @@ import ( "github.com/matrix-org/dendrite/common/keydb" "github.com/matrix-org/gomatrixserverlib" "github.com/matrix-org/naffka" + opentracing "github.com/opentracing/opentracing-go" "github.com/matrix-org/dendrite/clientapi/auth/storage/accounts" "github.com/matrix-org/dendrite/clientapi/auth/storage/devices" @@ -44,6 +45,11 @@ import ( var configPath = flag.String("config", "dendrite.yaml", "The path to the config file. For more information, see the config file in this repository.") +type CloserInstance struct { + closer io.Closer + name string +} + // BaseDendrite is a base for creating new instances of dendrite. It parses // command line flags and config, and exposes methods for creating various // resources. All errors are handled by logging the exiting, so all methods @@ -56,6 +62,7 @@ type BaseDendrite struct { inputAPI api.RoomserverInputAPI aliasAPI api.RoomserverAliasAPI monolith bool + closers []CloserInstance // APIMux should be used to register new public matrix api endpoints APIMux *mux.Router @@ -138,6 +145,18 @@ func newBaseDendrite(componentName string, monolith bool) *BaseDendrite { // Close implements io.Closer func (b *BaseDendrite) Close() error { + closers := b.closers + b.closers = nil + + for _, c := range closers { + err := c.closer.Close() + if err != nil { + logrus.WithError(err).WithField( + "name", c.name, + ).Warn("Failed to close closer") + } + } + return b.tracerCloser.Close() } @@ -297,6 +316,19 @@ func (b *BaseDendrite) StartClientDataConsumer( } } +// CreateNewTracer creates a new tracer instance. Will get automaically closed +// when BaseDendrite is. +func (b *BaseDendrite) CreateNewTracer(name string) opentracing.Tracer { + tracer, closer, err := b.Cfg.CreateNewTracer(name) + if err != nil { + logrus.WithError(err).WithField("name", name).Panicf("failed to create tracer") + } + + b.closers = append(b.closers, CloserInstance{closer: closer, name: name}) + + return tracer +} + // setupKafka creates kafka consumer/producer pair from the config. Checks if // should use naffka. func setupKafka(cfg *config.Dendrite) (sarama.Consumer, sarama.SyncProducer) { diff --git a/src/github.com/matrix-org/dendrite/common/config/config.go b/src/github.com/matrix-org/dendrite/common/config/config.go index f291a076..39607d95 100644 --- a/src/github.com/matrix-org/dendrite/common/config/config.go +++ b/src/github.com/matrix-org/dendrite/common/config/config.go @@ -27,6 +27,7 @@ import ( "github.com/matrix-org/dendrite/clientapi/auth/authtypes" "github.com/matrix-org/gomatrixserverlib" + opentracing "github.com/opentracing/opentracing-go" "github.com/sirupsen/logrus" "golang.org/x/crypto/ed25519" "gopkg.in/yaml.v2" @@ -544,6 +545,15 @@ func (config *Dendrite) SetupTracing(serviceName string) (closer io.Closer, err ) } +// CreateNewTracer creates a new Tracer with given service name. +func (config *Dendrite) CreateNewTracer(serviceName string) (opentracing.Tracer, io.Closer, error) { + return config.Tracing.Jaeger.New( + serviceName, + jaegerconfig.Logger(logrusLogger{logrus.StandardLogger()}), + jaegerconfig.Metrics(jaegermetrics.NullFactory), + ) +} + // logrusLogger is a small wrapper that implements jaeger.Logger using logrus. type logrusLogger struct { l *logrus.Logger