feat: Beelzebub cloud tracer plugin (#92)

This commit is contained in:
Mario Candela
2024-03-02 15:29:43 +01:00
committed by GitHub
parent ada0a9b8f0
commit 1c650882b6
6 changed files with 165 additions and 2 deletions

View File

@ -30,9 +30,15 @@ type Logging struct {
// Tracings is the struct that contains the configurations of the tracings
type Tracings struct {
RabbitMQ `yaml:"rabbit-mq"`
RabbitMQ `yaml:"rabbit-mq"`
BeelzebubCloud `yaml:"beelzebub-cloud"`
}
type BeelzebubCloud struct {
Enabled bool `yaml:"enabled"`
URI string `yaml:"uri"`
AuthToken string `yaml:"auth-token"`
}
type RabbitMQ struct {
Enabled bool `yaml:"enabled"`
URI string `yaml:"uri"`