Documentation ¶
Overview ¶
Package service contains utilities for bootstrapping a server such as config, logging and metrics.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Bootstrap ¶
Bootstrap bootstraps the configuration loading, parsing and reporting for a service through cmd flags. The argument configPtr should be a pointer to a serializable configuration object with all default values.
configPtr should be a pointer to a config struct, which contains default values and should be populated with a users config values if applicable. For an example look at the stats and logger files.
defaultConfigPaths should contain any known standard configuration paths, if the user neglects to specify a config then bootstrap will iterate these paths and read the first one that exists, if any.
Bootstrap allows a user to do the following: - Print version and build info and exit - Load an optional configuration file (supports JSON, YAML) - Print the config file (supports JSON, YAML) and exit
NOTE: The user may request a version and build time stamp, in which case Bootstrap will print the values of util.Version and util.DateBuilt. To populate those values you must run go build with the following:
-ldflags "-X github.com/jeffail/benthos/lib/util/service.version $(VERSION) \ -X github.com/jeffail/benthos/lib/util/service.dateBuilt $(DATE)"
Returns a flag indicating whether the service should continue or not.
Types ¶
This section is empty.
Directories ¶
Path | Synopsis |
---|---|
Package log contains utilities for logging in a modular interface.
|
Package log contains utilities for logging in a modular interface. |
Package metrics contains a type for aggregating and propagating metrics to various services based on configuration.
|
Package metrics contains a type for aggregating and propagating metrics to various services based on configuration. |