Documentation ¶
Overview ¶
Package api implements a type used for creating the Benthos HTTP API.
Index ¶
- func DocsMarkdown() ([]byte, error)
- func EndpointCaveats() string
- func GetMuxRoute(gMux *mux.Router, path string) *mux.Route
- func Spec() docs.FieldSpecs
- 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) HandleUptime(w http.ResponseWriter, r *http.Request)
- func (d *Dynamic) OnDelete(onDelete func(ctx context.Context, id string) error)
- func (d *Dynamic) OnUpdate(onUpdate func(ctx context.Context, 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 DocsMarkdown ¶ added in v4.4.0
DocsMarkdown returns a markdown document for the http documentation.
func EndpointCaveats ¶ added in v4.19.0
func EndpointCaveats() string
EndpointCaveats is a documentation section for HTTP components that explains some of the caveats in registering endpoints due to their non-deterministic ordering and lack of explicit path terminators.
func GetMuxRoute ¶ added in v4.19.0
GetMuxRoute returns a *mux.Route (the result of calling .Path or .PathPrefix on the provided router), where in cases where the path ends in a slash it will be treated as a prefix. This isn't ideal but it's as close as we can realistically get to the http.ServeMux behaviour with added path variables.
NOTE: Eventually we can move back to http.ServeMux once https://github.com/golang/go/issues/61410 is available, and that'll allow us to make all paths explicit.
Types ¶
type Config ¶
type Config struct { Address string `json:"address" yaml:"address"` Enabled bool `json:"enabled" yaml:"enabled"` 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 httpserver.CORSConfig `json:"cors" yaml:"cors"` BasicAuth httpserver.BasicAuthConfig `json:"basic_auth" yaml:"basic_auth"` }
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) HandleUptime ¶ added in v4.17.0
func (d *Dynamic) HandleUptime(w http.ResponseWriter, r *http.Request)
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 ¶
type OptFunc func(t *Type)
OptFunc applies an option to an API type during construction.
func OptWithMiddleware ¶
OptWithMiddleware adds an HTTP middleware to the Benthos API.
func OptWithTLS ¶
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 any, log log.Modular, stats metrics.Type, opts ...OptFunc, ) (*Type, error)
New creates a new Benthos HTTP API.
func (*Type) Handler ¶ added in v4.1.0
Handler returns the underlying http.Hander where paths are registered.
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.