Documentation ¶
Overview ¶
Package api implements a type used for creating the Benthos HTTP API.
Index ¶
- func Spec() docs.FieldSpecs
- type CORS
- type Config
- type Dynamic
- func (d *Dynamic) HandleCRUD(w http.ResponseWriter, r *http.Request)
- func (d *Dynamic) HandleList(w http.ResponseWriter, r *http.Request)
- func (d *Dynamic) OnDelete(onDelete func(id string) error)
- func (d *Dynamic) OnUpdate(onUpdate func(id string, conf []byte) error)
- func (d *Dynamic) Started(id string, config []byte)
- func (d *Dynamic) Stopped(id string)
- type OptFunc
- type Type
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Spec ¶ added in v3.43.0
func Spec() docs.FieldSpecs
Spec returns a field spec for the API configuration fields.
Types ¶
type CORS ¶ added in v3.56.0
type CORS struct { Enabled bool `json:"enabled" yaml:"enabled"` AllowedOrigins []string `json:"allowed_origins" yaml:"allowed_origins"` }
CORS contains configuration for allowing CORS headers.
type Config ¶
type Config struct { Address string `json:"address" yaml:"address"` Enabled bool `json:"enabled" yaml:"enabled"` ReadTimeout string `json:"read_timeout" yaml:"read_timeout"` RootPath string `json:"root_path" yaml:"root_path"` DebugEndpoints bool `json:"debug_endpoints" yaml:"debug_endpoints"` CertFile string `json:"cert_file" yaml:"cert_file"` KeyFile string `json:"key_file" yaml:"key_file"` CORS CORS `json:"cors" yaml:"cors"` }
Config contains the configuration fields for the Benthos API.
type Dynamic ¶
type Dynamic struct {
// contains filtered or unexported fields
}
Dynamic is a type for exposing CRUD operations on dynamic broker configurations as an HTTP interface. Events can be registered for listening to configuration changes, and these events should be forwarded to the dynamic broker.
func (*Dynamic) HandleCRUD ¶
func (d *Dynamic) HandleCRUD(w http.ResponseWriter, r *http.Request)
HandleCRUD is an http.HandleFunc for performing CRUD operations on dynamic components by their ids.
func (*Dynamic) HandleList ¶
func (d *Dynamic) HandleList(w http.ResponseWriter, r *http.Request)
HandleList is an http.HandleFunc for returning maps of active dynamic components by their id to uptime.
func (*Dynamic) OnDelete ¶
OnDelete registers a func to handle CRUD events where a request wants to remove a dynamic configuration. An error should be returned if the component failed to close.
func (*Dynamic) OnUpdate ¶
OnUpdate registers a func to handle CRUD events where a request wants to set a new value for a dynamic configuration. An error should be returned if the configuration is invalid or the component failed.
type OptFunc ¶ added in v3.35.0
type OptFunc func(t *Type)
OptFunc applies an option to an API type during construction.
func OptWithMiddleware ¶ added in v3.35.0
OptWithMiddleware adds an HTTP middleware to the Benthos API.
func OptWithTLS ¶ added in v3.35.0
OptWithTLS replaces the tls options of the HTTP server.
type Type ¶
type Type struct {
// contains filtered or unexported fields
}
Type implements the Benthos HTTP API.
func New ¶
func New( version string, dateBuilt string, conf Config, wholeConf interface{}, log log.Modular, stats metrics.Type, opts ...OptFunc, ) (*Type, error)
New creates a new Benthos HTTP API.
func (*Type) ListenAndServe ¶
ListenAndServe launches the API and blocks until the server closes or fails.
func (*Type) RegisterEndpoint ¶
func (t *Type) RegisterEndpoint(path, desc string, handlerFunc http.HandlerFunc)
RegisterEndpoint registers a http.HandlerFunc under a path with a description that will be displayed under the /endpoints path.