mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-09-13 17:33:16 +08:00

* feat: opamp server application * chore: opamp * chore: refactor server implementation * chore: add Stop * chore: merged opamp updates * chore: removed all errorf * chore: added a comment about zero version * feat: added user context for created by * chore: changed debugf to debug * chore: removed lb from opamp + added config parser * fix: added userid to ConfigNewVersion() * chore: removed user id from contxt and added config parser * fix: removed lock inside re-deploy * chore: added config db fix * fix: merged app/server.go from develop * fix: restored extract jwt * Update pkg/query-service/app/server.go Co-authored-by: Nityananda Gohain <nityanandagohain@gmail.com> * fix: dependency version fix and import added --------- Co-authored-by: Pranay Prateek <pranay@signoz.io> Co-authored-by: Palash Gupta <palashgdev@gmail.com> Co-authored-by: mindhash <mindhash@mindhashs-MacBook-Pro.local> Co-authored-by: Nityananda Gohain <nityanandagohain@gmail.com>
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"`
|
|
}
|