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/internal/worker/error_pipeline.go

20 lines
371 B

package worker
import (
"context"
"errors"
"github.com/apache/arrow-go/v18/arrow"
"github.com/grafana/loki/v3/pkg/engine/internal/executor"
)
type errorPipeline []error
var _ executor.Pipeline = errorPipeline(nil)
func (ep errorPipeline) Read(_ context.Context) (arrow.RecordBatch, error) {
return nil, errors.Join(ep...)
}
func (ep errorPipeline) Close() {}