Like Prometheus, but for logs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
loki/pkg/bloombuild/builder/config.go

21 lines
424 B

package builder
import "flag"
// Config configures the bloom-builder component.
type Config struct {
// TODO: Add config
}
// RegisterFlagsWithPrefix registers flags for the bloom-planner configuration.
func (cfg *Config) RegisterFlagsWithPrefix(_ string, _ *flag.FlagSet) {
// TODO: Register flags with flagsPrefix
}
func (cfg *Config) Validate() error {
return nil
}
type Limits interface {
// TODO: Add limits
}