mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-21 09:26:52 +00:00
10 lines
297 B
Go
10 lines
297 B
Go
|
|
package otlpreceiver
|
||
|
|
|
||
|
|
type HTTPServerSettings struct {
|
||
|
|
// Endpoint configures the listening address for the server.
|
||
|
|
Endpoint string `mapstructure:"endpoint" yaml:"endpoint"`
|
||
|
|
|
||
|
|
// TLSSetting struct exposes TLS client configuration.
|
||
|
|
TLSSetting *TLSServerSetting `mapstructure:"tls" yaml:"tls"`
|
||
|
|
}
|