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/util/validation/blocked_queries.go

10 lines
281 B

package validation
import "github.com/grafana/dskit/flagext"
type BlockedQuery struct {
Pattern string `yaml:"pattern"`
Regex bool `yaml:"regex"`
Hash uint32 `yaml:"hash"`
Types flagext.StringSliceCSV `yaml:"types"`
}