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/engine/assertions.go

10 lines
379 B

package engine
import "github.com/grafana/loki/v3/pkg/engine/internal/assertions"
// EnableParanoidMode turns on runtime assertions for execution pipelines that
// will check important invariants on input and output records, such as column
// names uniqueness and labels uniqueness. This affects performance if enabled.
func EnableParanoidMode() {
assertions.Enabled = true
}