Documentation ¶
Index ¶
- Constants
- Variables
- func IsNoopPipeline(p Pipeline) bool
- type BaseLabelsBuilder
- type BinaryLabelFilter
- type BytesLabelFilter
- type DurationLabelFilter
- type Filterer
- type FiltererFunc
- type JSONExpression
- type JSONExpressionParser
- type JSONParser
- type LabelFilterType
- type LabelFilterer
- type LabelFmt
- type LabelsBuilder
- func (b *LabelsBuilder) BaseHas(key string) bool
- func (b *LabelsBuilder) Del(ns ...string) *LabelsBuilder
- func (b *LabelsBuilder) Get(key string) (string, bool)
- func (b *LabelsBuilder) GetErr() string
- func (b *LabelsBuilder) GroupedLabels() LabelsResult
- func (b *LabelsBuilder) HasErr() bool
- func (h LabelsBuilder) Hash(lbs labels.Labels) uint64
- func (b *LabelsBuilder) Labels() labels.Labels
- func (b *LabelsBuilder) LabelsResult() LabelsResult
- func (b *LabelsBuilder) Reset()
- func (b *LabelsBuilder) Set(n, v string) *LabelsBuilder
- func (b *LabelsBuilder) SetErr(err string) *LabelsBuilder
- type LabelsFormatter
- type LabelsResult
- type LineExtractor
- type LineFormatter
- type LogfmtParser
- type NumericLabelFilter
- type ParserHint
- type Pipeline
- type RegexpParser
- type SampleExtractor
- type Stage
- type StageFunc
- type StreamPipeline
- type StreamSampleExtractor
- type StringLabelFilter
- type UnpackParser
Constants ¶
const ( ConvertBytes = "bytes" ConvertDuration = "duration" ConvertFloat = "float" )
const (
PackedEntryKey = "_entry"
)
Variables ¶
var (
ErrorLabel = "__error__"
)
var (
// NoopLabelFilter is a label filter that doesn't filter out any values.
NoopLabelFilter = noopLabelFilter{}
)
var TrueFilter = trueFilter{}
TrueFilter is a filter that returns and matches all log lines whatever their content.
Functions ¶
func IsNoopPipeline ¶
IsNoopPipeline tells if a pipeline is a Noop.
Types ¶
type BaseLabelsBuilder ¶
type BaseLabelsBuilder struct {
// contains filtered or unexported fields
}
BaseLabelsBuilder is a label builder used by pipeline and stages. Only one base builder is used and it contains cache for each LabelsBuilders.
func NewBaseLabelsBuilder ¶
func NewBaseLabelsBuilder() *BaseLabelsBuilder
NewLabelsBuilder creates a new base labels builder.
func NewBaseLabelsBuilderWithGrouping ¶
func NewBaseLabelsBuilderWithGrouping(groups []string, parserKeyHints ParserHint, without, noLabels bool) *BaseLabelsBuilder
NewBaseLabelsBuilderWithGrouping creates a new base labels builder with grouping to compute results.
func (*BaseLabelsBuilder) ForLabels ¶
func (b *BaseLabelsBuilder) ForLabels(lbs labels.Labels, hash uint64) *LabelsBuilder
ForLabels creates a labels builder for a given labels set as base. The labels cache is shared across all created LabelsBuilders.
func (*BaseLabelsBuilder) ParserLabelHints ¶
func (b *BaseLabelsBuilder) ParserLabelHints() ParserHint
ParserLabelHints returns a limited list of expected labels to extract for metric queries. Returns nil when it's impossible to hint labels extractions.
type BinaryLabelFilter ¶
type BinaryLabelFilter struct { Left LabelFilterer Right LabelFilterer // contains filtered or unexported fields }
func NewAndLabelFilter ¶
func NewAndLabelFilter(left LabelFilterer, right LabelFilterer) *BinaryLabelFilter
NewAndLabelFilter creates a new LabelFilterer from a and binary operation of two LabelFilterer.
func NewOrLabelFilter ¶
func NewOrLabelFilter(left LabelFilterer, right LabelFilterer) *BinaryLabelFilter
NewOrLabelFilter creates a new LabelFilterer from a or binary operation of two LabelFilterer.
func (*BinaryLabelFilter) Process ¶
func (b *BinaryLabelFilter) Process(line []byte, lbs *LabelsBuilder) ([]byte, bool)
func (*BinaryLabelFilter) RequiredLabelNames ¶
func (b *BinaryLabelFilter) RequiredLabelNames() []string
func (*BinaryLabelFilter) String ¶
func (b *BinaryLabelFilter) String() string
type BytesLabelFilter ¶
type BytesLabelFilter struct { Name string Value uint64 Type LabelFilterType }
func NewBytesLabelFilter ¶
func NewBytesLabelFilter(t LabelFilterType, name string, b uint64) *BytesLabelFilter
NewBytesLabelFilter creates a new label filterer which parses bytes string representation (1KB) from the value of the named label and compares it with the given b value.
func (*BytesLabelFilter) Process ¶
func (d *BytesLabelFilter) Process(line []byte, lbs *LabelsBuilder) ([]byte, bool)
func (*BytesLabelFilter) RequiredLabelNames ¶
func (d *BytesLabelFilter) RequiredLabelNames() []string
func (*BytesLabelFilter) String ¶
func (d *BytesLabelFilter) String() string
type DurationLabelFilter ¶
type DurationLabelFilter struct { Name string Value time.Duration Type LabelFilterType }
func NewDurationLabelFilter ¶
func NewDurationLabelFilter(t LabelFilterType, name string, d time.Duration) *DurationLabelFilter
NewDurationLabelFilter creates a new label filterer which parses duration string representation (5s) from the value of the named label and compares it with the given d value.
func (*DurationLabelFilter) Process ¶
func (d *DurationLabelFilter) Process(line []byte, lbs *LabelsBuilder) ([]byte, bool)
func (*DurationLabelFilter) RequiredLabelNames ¶
func (d *DurationLabelFilter) RequiredLabelNames() []string
func (*DurationLabelFilter) String ¶
func (d *DurationLabelFilter) String() string
type Filterer ¶
Filterer is a interface to filter log lines.
func NewAndFilter ¶
NewAndFilter creates a new filter which matches only if left and right matches.
type FiltererFunc ¶
LineFilterFunc is a syntax sugar for creating line filter from a function
func (FiltererFunc) Filter ¶
func (f FiltererFunc) Filter(line []byte) bool
type JSONExpression ¶
func NewJSONExpr ¶
func NewJSONExpr(identifier, expression string) JSONExpression
type JSONExpressionParser ¶
type JSONExpressionParser struct {
// contains filtered or unexported fields
}
func NewJSONExpressionParser ¶
func NewJSONExpressionParser(expressions []JSONExpression) (*JSONExpressionParser, error)
func (*JSONExpressionParser) Process ¶
func (j *JSONExpressionParser) Process(line []byte, lbs *LabelsBuilder) ([]byte, bool)
func (*JSONExpressionParser) RequiredLabelNames ¶
func (j *JSONExpressionParser) RequiredLabelNames() []string
type JSONParser ¶
type JSONParser struct {
// contains filtered or unexported fields
}
func NewJSONParser ¶
func NewJSONParser() *JSONParser
NewJSONParser creates a log stage that can parse a json log line and add properties as labels.
func (*JSONParser) Process ¶
func (j *JSONParser) Process(line []byte, lbs *LabelsBuilder) ([]byte, bool)
func (*JSONParser) RequiredLabelNames ¶
func (j *JSONParser) RequiredLabelNames() []string
type LabelFilterType ¶
type LabelFilterType int
LabelFilterType is an enum for label filtering types.
const ( LabelFilterEqual LabelFilterType = iota LabelFilterNotEqual LabelFilterGreaterThan LabelFilterGreaterThanOrEqual LabelFilterLesserThan LabelFilterLesserThanOrEqual )
Possible LabelFilterType.
func (LabelFilterType) String ¶
func (f LabelFilterType) String() string
type LabelFilterer ¶
LabelFilterer can filter extracted labels.
func ReduceAndLabelFilter ¶
func ReduceAndLabelFilter(filters []LabelFilterer) LabelFilterer
ReduceAndLabelFilter Reduces multiple label filterer into one using binary and operation.
type LabelFmt ¶
LabelFmt is a configuration struct for formatting a label.
func NewRenameLabelFmt ¶
NewRenameLabelFmt creates a configuration to rename a label.
func NewTemplateLabelFmt ¶
NewTemplateLabelFmt creates a configuration to format a label using text template.
type LabelsBuilder ¶
type LabelsBuilder struct { *BaseLabelsBuilder // contains filtered or unexported fields }
LabelsBuilder is the same as labels.Builder but tailored for this package.
func (*LabelsBuilder) BaseHas ¶
func (b *LabelsBuilder) BaseHas(key string) bool
BaseHas returns the base labels have the given key
func (*LabelsBuilder) Del ¶
func (b *LabelsBuilder) Del(ns ...string) *LabelsBuilder
Del deletes the label of the given name.
func (*LabelsBuilder) Get ¶
func (b *LabelsBuilder) Get(key string) (string, bool)
Get returns the value of a labels key if it exists.
func (*LabelsBuilder) GetErr ¶
func (b *LabelsBuilder) GetErr() string
GetErr return the current error label value.
func (*LabelsBuilder) GroupedLabels ¶
func (b *LabelsBuilder) GroupedLabels() LabelsResult
GroupedLabels returns the LabelsResult from the builder. Groups are applied and the cache is used when possible.
func (*LabelsBuilder) HasErr ¶
func (b *LabelsBuilder) HasErr() bool
HasErr tells if the error label has been set.
func (*LabelsBuilder) Labels ¶
func (b *LabelsBuilder) Labels() labels.Labels
Labels returns the labels from the builder. If no modifications were made, the original labels are returned.
func (*LabelsBuilder) LabelsResult ¶
func (b *LabelsBuilder) LabelsResult() LabelsResult
LabelsResult returns the LabelsResult from the builder. No grouping is applied and the cache is used when possible.
func (*LabelsBuilder) Reset ¶
func (b *LabelsBuilder) Reset()
Reset clears all current state for the builder.
func (*LabelsBuilder) Set ¶
func (b *LabelsBuilder) Set(n, v string) *LabelsBuilder
Set the name/value pair as a label.
func (*LabelsBuilder) SetErr ¶
func (b *LabelsBuilder) SetErr(err string) *LabelsBuilder
SetErr sets the error label.
type LabelsFormatter ¶
type LabelsFormatter struct {
// contains filtered or unexported fields
}
func NewLabelsFormatter ¶
func NewLabelsFormatter(fmts []LabelFmt) (*LabelsFormatter, error)
NewLabelsFormatter creates a new formatter that can format multiple labels at once. Either by renaming or using text template. It is not allowed to reformat the same label twice within the same formatter.
func (*LabelsFormatter) Process ¶
func (lf *LabelsFormatter) Process(l []byte, lbs *LabelsBuilder) ([]byte, bool)
func (*LabelsFormatter) RequiredLabelNames ¶
func (lf *LabelsFormatter) RequiredLabelNames() []string
type LabelsResult ¶
LabelsResult is a computed labels result that contains the labels set with associated string and hash. The is mainly used for caching and returning labels computations out of pipelines and stages.
func NewLabelsResult ¶
func NewLabelsResult(lbs labels.Labels, hash uint64) LabelsResult
NewLabelsResult creates a new LabelsResult from a labels set and a hash.
type LineExtractor ¶
LineExtractor extracts a float64 from a log line.
var ( CountExtractor LineExtractor = func(line []byte) float64 { return 1. } BytesExtractor LineExtractor = func(line []byte) float64 { return float64(len(line)) } )
type LineFormatter ¶
func NewFormatter ¶
func NewFormatter(tmpl string) (*LineFormatter, error)
NewFormatter creates a new log line formatter from a given text template.
func (*LineFormatter) Process ¶
func (lf *LineFormatter) Process(line []byte, lbs *LabelsBuilder) ([]byte, bool)
func (*LineFormatter) RequiredLabelNames ¶
func (lf *LineFormatter) RequiredLabelNames() []string
type LogfmtParser ¶
type LogfmtParser struct {
// contains filtered or unexported fields
}
func NewLogfmtParser ¶
func NewLogfmtParser() *LogfmtParser
NewLogfmtParser creates a parser that can extract labels from a logfmt log line. Each keyval is extracted into a respective label.
func (*LogfmtParser) Process ¶
func (l *LogfmtParser) Process(line []byte, lbs *LabelsBuilder) ([]byte, bool)
func (*LogfmtParser) RequiredLabelNames ¶
func (l *LogfmtParser) RequiredLabelNames() []string
type NumericLabelFilter ¶
type NumericLabelFilter struct { Name string Value float64 Type LabelFilterType }
func NewNumericLabelFilter ¶
func NewNumericLabelFilter(t LabelFilterType, name string, v float64) *NumericLabelFilter
NewNumericLabelFilter creates a new label filterer which parses float64 string representation (5.2) from the value of the named label and compares it with the given f value.
func (*NumericLabelFilter) Process ¶
func (n *NumericLabelFilter) Process(line []byte, lbs *LabelsBuilder) ([]byte, bool)
func (*NumericLabelFilter) RequiredLabelNames ¶
func (n *NumericLabelFilter) RequiredLabelNames() []string
func (*NumericLabelFilter) String ¶
func (n *NumericLabelFilter) String() string
type ParserHint ¶
type ParserHint interface { // Tells if a label with the given key should be extracted. ShouldExtract(key string) bool // Tells if there's any hint that start with the given prefix. // This allows to speed up key searching in nested structured like json. ShouldExtractPrefix(prefix string) bool // Tells if we should not extract any labels. // For example in : // sum(rate({app="foo"} | json [5m])) // We don't need to extract any labels from the log line. NoLabels() bool }
ParserHint are hints given to LogQL parsers. This is specially useful for parser that extract implicitly all possible label keys. This is used only within metric queries since it's rare that you need all label keys. For example in the following expression:
sum by (status_code) (rate({app="foo"} | json [5m]))
All we need to extract is the status_code in the json parser.
type Pipeline ¶
type Pipeline interface {
ForStream(labels labels.Labels) StreamPipeline
}
Pipeline can create pipelines for each log stream.
func NewNoopPipeline ¶
func NewNoopPipeline() Pipeline
NewNoopPipeline creates a pipelines that does not process anything and returns log streams as is.
func NewPipeline ¶
NewPipeline creates a new pipeline for a given set of stages.
type RegexpParser ¶
type RegexpParser struct {
// contains filtered or unexported fields
}
func NewRegexpParser ¶
func NewRegexpParser(re string) (*RegexpParser, error)
NewRegexpParser creates a new log stage that can extract labels from a log line using a regex expression. The regex expression must contains at least one named match. If the regex doesn't match the line is not filtered out.
func (*RegexpParser) Process ¶
func (r *RegexpParser) Process(line []byte, lbs *LabelsBuilder) ([]byte, bool)
func (*RegexpParser) RequiredLabelNames ¶
func (r *RegexpParser) RequiredLabelNames() []string
type SampleExtractor ¶
type SampleExtractor interface {
ForStream(labels labels.Labels) StreamSampleExtractor
}
SampleExtractor creates StreamSampleExtractor that can extract samples for a given log stream.
func LabelExtractorWithStages ¶
func LabelExtractorWithStages( labelName, conversion string, groups []string, without, noLabels bool, preStages []Stage, postFilter Stage, ) (SampleExtractor, error)
LabelExtractorWithStages creates a SampleExtractor that will extract metrics from a labels. A set of log stage is executed before the conversion. A Filtering stage is executed after the conversion allowing to remove sample containing the __error__ label.
func NewLineSampleExtractor ¶
func NewLineSampleExtractor(ex LineExtractor, stages []Stage, groups []string, without, noLabels bool) (SampleExtractor, error)
NewLineSampleExtractor creates a SampleExtractor from a LineExtractor. Multiple log stages are run before converting the log line.
type Stage ¶
type Stage interface { Process(line []byte, lbs *LabelsBuilder) ([]byte, bool) RequiredLabelNames() []string }
Stage is a single step of a Pipeline. A Stage implementation should never mutate the line passed, but instead either return the line unchanged or allocate a new line.
var ( // NoopStage is a stage that doesn't process a log line. NoopStage Stage = &noopStage{} )
func ReduceStages ¶
ReduceStages reduces multiple stages into one.
type StageFunc ¶
type StageFunc struct {
// contains filtered or unexported fields
}
func (StageFunc) Process ¶
func (fn StageFunc) Process(line []byte, lbs *LabelsBuilder) ([]byte, bool)
func (StageFunc) RequiredLabelNames ¶
type StreamPipeline ¶
type StreamPipeline interface { Process(line []byte) (resultLine []byte, resultLabels LabelsResult, skip bool) ProcessString(line string) (resultLine string, resultLabels LabelsResult, skip bool) }
StreamPipeline transform and filter log lines and labels. A StreamPipeline never mutate the received line.
type StreamSampleExtractor ¶
type StreamSampleExtractor interface { Process(line []byte) (float64, LabelsResult, bool) ProcessString(line string) (float64, LabelsResult, bool) }
StreamSampleExtractor extracts sample for a log line. A StreamSampleExtractor never mutate the received line.
type StringLabelFilter ¶
func NewStringLabelFilter ¶
func NewStringLabelFilter(m *labels.Matcher) *StringLabelFilter
NewStringLabelFilter creates a new label filterer which compares string label. This is the only LabelFilterer that can filter out the __error__ label. Unlike other LabelFilterer which apply conversion, if the label name doesn't exist it is compared with an empty value.
func (*StringLabelFilter) Process ¶
func (s *StringLabelFilter) Process(line []byte, lbs *LabelsBuilder) ([]byte, bool)
func (*StringLabelFilter) RequiredLabelNames ¶
func (s *StringLabelFilter) RequiredLabelNames() []string
type UnpackParser ¶
type UnpackParser struct {
// contains filtered or unexported fields
}
func NewUnpackParser ¶
func NewUnpackParser() *UnpackParser
NewUnpackParser creates a new unpack stage. The unpack stage will parse a json log line as map[string]string where each key will be translated into labels. A special key _entry will also be used to replace the original log line. This is to be used in conjunction with Valitail pack stage. see https://grafana.com/docs/loki/latest/clients/valitail/stages/pack/
func (*UnpackParser) Process ¶
func (u *UnpackParser) Process(line []byte, lbs *LabelsBuilder) ([]byte, bool)
func (UnpackParser) RequiredLabelNames ¶
func (UnpackParser) RequiredLabelNames() []string