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/compute/doc.go

18 lines
729 B

// Package compute implements stateless computational operations over columnar
// data.
//
// Compute functions operate on one or more [columnar.Datum] values, which is
// an opaque representation of either an array or a scalar value of a specific
// value kind.
//
// Unless otherwise specified, all compute functions return data allocated with
// the [memory.Allocator] provided to the compute function.
//
// Package compute is EXPERIMENTAL and currently only intended to be used by
// [github.com/grafana/loki/v3/pkg/dataobj].
package compute
import (
_ "github.com/grafana/loki/v3/pkg/columnar" // blank import for package doc comment
_ "github.com/grafana/loki/v3/pkg/memory" // blank import for package doc comment
)