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/dataobj/sections/pointers/row_predicate.go

16 lines
438 B

package pointers
type (
// RowPredicate is an expression used to filter rows in a data object.
RowPredicate interface{ isRowPredicate() }
)
// Supported predicates.
type (
// A BloomExistencePredicate is a RowPredicate which requires a bloom filter column named
// Name to exist, and for the Value to pass the bloom filter.
BloomExistencePredicate struct{ Name, Value string }
)
func (BloomExistencePredicate) isRowPredicate() {}