Documentation ¶
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type HTTPClientSettings ¶
type HTTPClientSettings struct { // The target URL to send data to (e.g.: http://some.url:9411/v1/traces). Endpoint string `mapstructure:"endpoint"` // TLSSetting struct exposes TLS client configuration. TLSSetting configtls.TLSClientSetting `mapstructure:",squash"` // ReadBufferSize for HTTP client. See http.Transport.ReadBufferSize. ReadBufferSize int `mapstructure:"read_buffer_size"` // WriteBufferSize for HTTP client. See http.Transport.WriteBufferSize. WriteBufferSize int `mapstructure:"write_buffer_size"` // Timeout parameter configures `http.Client.Timeout`. Timeout time.Duration `mapstructure:"timeout,omitempty"` // Additional headers attached to each HTTP request sent by the client. // Existing header values are overwritten if collision happens. Headers map[string]string `mapstructure:"headers,omitempty"` // Custom Round Tripper to allow for individual components to intercept HTTP requests CustomRoundTripper func(next http.RoundTripper) (http.RoundTripper, error) }
type HTTPServerSettings ¶
type HTTPServerSettings struct { // Endpoint configures the listening address for the server. Endpoint string `mapstructure:"endpoint"` // TLSSetting struct exposes TLS client configuration. TLSSetting *configtls.TLSServerSetting `mapstructure:"tls_settings, omitempty"` // CorsOrigins are the allowed CORS origins for HTTP/JSON requests to grpc-gateway adapter // for the OTLP receiver. See github.com/rs/cors // An empty list means that CORS is not enabled at all. A wildcard (*) can be // used to match any origin or one or more characters of an origin. CorsOrigins []string `mapstructure:"cors_allowed_origins"` }
Example ¶
settings := HTTPServerSettings{ Endpoint: ":443", } s := settings.ToServer(http.HandlerFunc(func(http.ResponseWriter, *http.Request) {})) l, err := settings.ToListener() if err != nil { panic(err) } if err = s.Serve(l); err != nil { panic(err) }
Output:
func (*HTTPServerSettings) ToListener ¶
func (hss *HTTPServerSettings) ToListener() (net.Listener, error)
func (*HTTPServerSettings) ToServer ¶
func (hss *HTTPServerSettings) ToServer(handler http.Handler, opts ...ToServerOption) *http.Server
type ToServerOption ¶ added in v0.11.0
type ToServerOption func(opts *toServerOptions)
func WithErrorHandler ¶ added in v0.11.0
func WithErrorHandler(e middleware.ErrorHandler) ToServerOption
WithErrorHandler overrides the HTTP error handler that gets invoked when there is a failure inside middleware.HTTPContentDecompressor.
Click to show internal directories.
Click to hide internal directories.