mirror of
https://github.com/hoernschen/dendrite.git
synced 2025-04-06 03:53:39 +00:00
Add ability to create new tracer
This commit is contained in:
parent
d687ae8d96
commit
39bc80e17e
2 changed files with 42 additions and 0 deletions
|
@ -24,6 +24,7 @@ import (
|
||||||
"github.com/matrix-org/dendrite/common/keydb"
|
"github.com/matrix-org/dendrite/common/keydb"
|
||||||
"github.com/matrix-org/gomatrixserverlib"
|
"github.com/matrix-org/gomatrixserverlib"
|
||||||
"github.com/matrix-org/naffka"
|
"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/accounts"
|
||||||
"github.com/matrix-org/dendrite/clientapi/auth/storage/devices"
|
"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.")
|
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
|
// BaseDendrite is a base for creating new instances of dendrite. It parses
|
||||||
// command line flags and config, and exposes methods for creating various
|
// command line flags and config, and exposes methods for creating various
|
||||||
// resources. All errors are handled by logging the exiting, so all methods
|
// resources. All errors are handled by logging the exiting, so all methods
|
||||||
|
@ -56,6 +62,7 @@ type BaseDendrite struct {
|
||||||
inputAPI api.RoomserverInputAPI
|
inputAPI api.RoomserverInputAPI
|
||||||
aliasAPI api.RoomserverAliasAPI
|
aliasAPI api.RoomserverAliasAPI
|
||||||
monolith bool
|
monolith bool
|
||||||
|
closers []CloserInstance
|
||||||
|
|
||||||
// APIMux should be used to register new public matrix api endpoints
|
// APIMux should be used to register new public matrix api endpoints
|
||||||
APIMux *mux.Router
|
APIMux *mux.Router
|
||||||
|
@ -138,6 +145,18 @@ func newBaseDendrite(componentName string, monolith bool) *BaseDendrite {
|
||||||
|
|
||||||
// Close implements io.Closer
|
// Close implements io.Closer
|
||||||
func (b *BaseDendrite) Close() error {
|
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()
|
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
|
// setupKafka creates kafka consumer/producer pair from the config. Checks if
|
||||||
// should use naffka.
|
// should use naffka.
|
||||||
func setupKafka(cfg *config.Dendrite) (sarama.Consumer, sarama.SyncProducer) {
|
func setupKafka(cfg *config.Dendrite) (sarama.Consumer, sarama.SyncProducer) {
|
||||||
|
|
|
@ -27,6 +27,7 @@ import (
|
||||||
|
|
||||||
"github.com/matrix-org/dendrite/clientapi/auth/authtypes"
|
"github.com/matrix-org/dendrite/clientapi/auth/authtypes"
|
||||||
"github.com/matrix-org/gomatrixserverlib"
|
"github.com/matrix-org/gomatrixserverlib"
|
||||||
|
opentracing "github.com/opentracing/opentracing-go"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"golang.org/x/crypto/ed25519"
|
"golang.org/x/crypto/ed25519"
|
||||||
"gopkg.in/yaml.v2"
|
"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.
|
// logrusLogger is a small wrapper that implements jaeger.Logger using logrus.
|
||||||
type logrusLogger struct {
|
type logrusLogger struct {
|
||||||
l *logrus.Logger
|
l *logrus.Logger
|
||||||
|
|
Loading…
Reference in a new issue