mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
290a38e424
This fixes an issue with parsing address types from strings.
26 lines
719 B
Go
26 lines
719 B
Go
package validator
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/authelia/authelia/v4/internal/configuration/schema"
|
|
)
|
|
|
|
// ValidateTelemetry validates the telemetry configuration.
|
|
func ValidateTelemetry(config *schema.Configuration, validator *schema.StructValidator) {
|
|
if config.Telemetry.Metrics.Address == nil {
|
|
config.Telemetry.Metrics.Address = schema.DefaultTelemetryConfig.Metrics.Address
|
|
}
|
|
|
|
switch config.Telemetry.Metrics.Address.Scheme {
|
|
case "tcp":
|
|
break
|
|
default:
|
|
validator.Push(fmt.Errorf(errFmtTelemetryMetricsScheme, config.Telemetry.Metrics.Address.Scheme))
|
|
}
|
|
|
|
if config.Telemetry.Metrics.Address.Port == 0 {
|
|
config.Telemetry.Metrics.Address.Port = schema.DefaultTelemetryConfig.Metrics.Address.Port
|
|
}
|
|
}
|