Documentation
¶
Index ¶
Constants ¶
const (
ErrExpressionsRequired = "JMES expression is required"
ErrCouldNotCompileJMES = "could not compile JMES expression"
ErrEmptyJSONStageConfig = "empty json stage configuration"
ErrEmptyJSONStageSource = "empty source"
)
Config Errors
const (
ErrEmptyLabelStageConfig = "label stage config cannot be empty"
ErrInvalidLabelName = "invalid label name: %s"
)
const (
ErrEmptyMatchStageConfig = "match stage config cannot be empty"
ErrPipelineNameRequired = "match stage pipeline name can be omitted but cannot be an empty string"
ErrSelectorRequired = "selector statement required for match stage"
ErrMatchRequiresStages = "match stage requires at least one additional stage to be defined in '- stages'"
ErrSelectorSyntax = "invalid selector syntax for match stage"
)
const (
MetricTypeCounter = "counter"
MetricTypeGauge = "gauge"
MetricTypeHistogram = "histogram"
ErrEmptyMetricsStageConfig = "empty metric stage configuration"
ErrMetricsStageInvalidType = "invalid metric type '%s', metric type must be one of 'counter', 'gauge', or 'histogram'"
)
const (
ErrEmptyOutputStageConfig = "output stage config cannot be empty"
ErrOutputSourceRequired = "output source value is required if output is specified"
)
Config Errors
const (
ErrExpressionRequired = "expression is required"
ErrCouldNotCompileRegex = "could not compile regular expression"
ErrEmptyRegexStageConfig = "empty regex stage configuration"
ErrEmptyRegexStageSource = "empty source"
)
Config Errors
const (
StageTypeJSON = "json"
StageTypeRegex = "regex"
StageTypeMetric = "metrics"
StageTypeLabel = "labels"
StageTypeTimestamp = "timestamp"
StageTypeOutput = "output"
StageTypeDocker = "docker"
StageTypeCRI = "cri"
StageTypeMatch = "match"
StageTypeTemplate = "template"
StageTypePipeline = "pipeline"
)
const (
ErrEmptyTemplateStageConfig = "template stage config cannot be empty"
ErrTemplateSourceRequired = "template source value is required"
)
Config Errors
const (
ErrEmptyTimestampStageConfig = "timestamp stage config cannot be empty"
ErrTimestampSourceRequired = "timestamp source value is required if timestamp is specified"
ErrTimestampFormatRequired = "timestamp format is required"
ErrInvalidLocation = "invalid location specified: %v"
Unix = "Unix"
UnixMs = "UnixMs"
UnixNs = "UnixNs"
)
const (
ErrTimestampContainsYear = "timestamp '%s' is expected to not contain the year date component"
)
const RFC3339Nano = "RFC3339Nano"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type JSONConfig ¶
type JSONConfig struct {
Expressions map[string]string `mapstructure:"expressions"`
Source *string `mapstructure:"source"`
}
JSONConfig represents a JSON Stage configuration
type LabelsConfig ¶
type LabelsConfig map[string]*string
LabelsConfig is a set of labels to be extracted
type MatcherConfig ¶
type MatcherConfig struct {
PipelineName *string `mapstructure:"pipeline_name"`
Selector string `mapstructure:"selector"`
Stages PipelineStages `mapstructure:"stages"`
}
MatcherConfig contains the configuration for a matcherStage
type MetricConfig ¶
type MetricConfig struct {
MetricType string `mapstructure:"type"`
Description string `mapstructure:"description"`
Source *string `mapstructure:"source"`
Config interface{} `mapstructure:"config"`
}
MetricConfig is a single metrics configuration.
type MetricsConfig ¶
type MetricsConfig map[string]MetricConfig
MetricsConfig is a set of configured metrics.
type OutputConfig ¶
type OutputConfig struct {
Source string `mapstructure:"source"`
}
OutputConfig configures output value extraction
type Pipeline ¶
type Pipeline struct {
// contains filtered or unexported fields
}
Pipeline pass down a log entry to each stage for mutation and/or label extraction.
func NewPipeline ¶
func NewPipeline(logger log.Logger, stgs PipelineStages, jobName *string, registerer prometheus.Registerer) (*Pipeline, error)
NewPipeline creates a new log entry pipeline from a configuration
func (*Pipeline) AddStage ¶
func (p *Pipeline) AddStage(stage Stage)
AddStage adds a stage to the pipeline
func (*Pipeline) Process ¶
func (p *Pipeline) Process(labels model.LabelSet, extracted map[string]interface{}, ts *time.Time, entry *string)
Process implements Stage allowing a pipeline stage to also be an entire pipeline
type PipelineStage ¶
type PipelineStage = map[interface{}]interface{}
PipelineStage contains configuration for a single pipeline stage
type PipelineStages ¶
type PipelineStages = []interface{}
PipelineStages contains configuration for each stage within a pipeline
type RegexConfig ¶
type RegexConfig struct {
Expression string `mapstructure:"expression"`
Source *string `mapstructure:"source"`
}
RegexConfig contains a regexStage configuration
type Stage ¶
type Stage interface {
Process(labels model.LabelSet, extracted map[string]interface{}, time *time.Time, entry *string)
Name() string
}
Stage takes an existing set of labels, timestamp and log entry and returns either a possibly mutated timestamp and log entry
func New ¶
func New(logger log.Logger, jobName *string, stageType string,
cfg interface{}, registerer prometheus.Registerer) (Stage, error)
New creates a new stage for the given type and configuration.
type StageFunc ¶
type StageFunc func(labels model.LabelSet, extracted map[string]interface{}, time *time.Time, entry *string)
StageFunc is modelled on http.HandlerFunc.
type TemplateConfig ¶ added in v0.2.0
type TemplateConfig struct {
Source string `mapstructure:"source"`
Template string `mapstructure:"template"`
}
TemplateConfig configures template value extraction
type TimestampConfig ¶
type TimestampConfig struct {
Source string `mapstructure:"source"`
Format string `mapstructure:"format"`
Location *string `mapstructure:"location"`
}
TimestampConfig configures timestamp extraction