2022-07-08 16:10:46 +00:00
|
|
|
package config
|
|
|
|
|
2022-11-24 13:03:08 +00:00
|
|
|
// BasicService is used as a simple base for node services like Pprof, RPC or
|
|
|
|
// Prometheus monitoring.
|
2022-07-08 16:10:46 +00:00
|
|
|
type BasicService struct {
|
2022-11-25 10:20:53 +00:00
|
|
|
Enabled bool `yaml:"Enabled"`
|
|
|
|
// Addresses holds the list of bind addresses in the form of "address:port".
|
|
|
|
Addresses []string `yaml:"Addresses"`
|
2022-11-24 13:03:08 +00:00
|
|
|
}
|