func Delete(name string)
Delete removes the named ComponentConfig from this package's "/configz" handler.
func InstallHandler(m mux)
InstallHandler adds an HTTP handler on the given mux for the "/configz" endpoint which serves all registered ComponentConfigs in JSON format.
Config is a handle to a ComponentConfig object. Don't create these directly; use New() instead.
type Config struct {
// contains filtered or unexported fields
}
func New(name string) (*Config, error)
New creates a Config object with the given name. Each Config is registered with this package's "/configz" handler.
func (v *Config) MarshalJSON() ([]byte, error)
MarshalJSON marshals the ComponentConfig as JSON data.
func (v *Config) Set(val interface{})
Set sets the ComponentConfig for this Config.