Documentation ¶
Index ¶
- func LabelMatchersToModelMatcher(lMatchers []*labels.Matcher, tagOpts models.TagOptions) (models.Matchers, error)
- func NewAggregationOperator(expr *promql.AggregateExpr) (parser.Params, error)
- func NewBinaryOperator(expr *promql.BinaryExpr, lhs, rhs parser.NodeID) (parser.Params, error)
- func NewFunctionExpr(name string, argValues []interface{}, stringValues []string, hasArgValue bool, ...) (parser.Params, bool, error)
- func NewSelectorFromMatrix(n *promql.MatrixSelector, tagOpts models.TagOptions) (parser.Params, error)
- func NewSelectorFromVector(n *promql.VectorSelector, tagOpts models.TagOptions) (parser.Params, error)
- func Parse(q string, stepSize time.Duration, tagOpts models.TagOptions, ...) (parser.Parser, error)
- type MetricSelectorFn
- type ParseFn
- type ParseFunctionExpr
- type ParseOptions
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func LabelMatchersToModelMatcher ¶ added in v0.5.0
func LabelMatchersToModelMatcher( lMatchers []*labels.Matcher, tagOpts models.TagOptions, ) (models.Matchers, error)
LabelMatchersToModelMatcher parses promql matchers to model matchers.
func NewAggregationOperator ¶ added in v0.4.2
func NewAggregationOperator(expr *promql.AggregateExpr) (parser.Params, error)
NewAggregationOperator creates a new aggregation operator based on the type.
func NewBinaryOperator ¶
NewBinaryOperator creates a new binary operator based on the type.
func NewFunctionExpr ¶
func NewFunctionExpr( name string, argValues []interface{}, stringValues []string, hasArgValue bool, inner string, tagOptions models.TagOptions, ) (parser.Params, bool, error)
NewFunctionExpr creates a new function expr based on the type.
func NewSelectorFromMatrix ¶
func NewSelectorFromMatrix( n *promql.MatrixSelector, tagOpts models.TagOptions, ) (parser.Params, error)
NewSelectorFromMatrix creates a new fetchop.
func NewSelectorFromVector ¶
func NewSelectorFromVector( n *promql.VectorSelector, tagOpts models.TagOptions, ) (parser.Params, error)
NewSelectorFromVector creates a new fetchop.
Types ¶
type MetricSelectorFn ¶ added in v0.15.7
MetricSelectorFn is a function that parses a query to Prometheus selectors.
type ParseFn ¶ added in v0.15.0
ParseFn is a function that parses a query to a Prometheus expression.
type ParseFunctionExpr ¶ added in v0.15.0
type ParseFunctionExpr func( name string, argValues []interface{}, stringValues []string, hasArgValue bool, inner string, tagOptions models.TagOptions, ) (parser.Params, bool, error)
ParseFunctionExpr parses arguments to a function expression, returning a function, a bool indicating whether the function is a noop, and any errors during execution.
type ParseOptions ¶ added in v0.15.0
type ParseOptions interface { // ParseFn gets the parse function. ParseFn() ParseFn // SetParseFn sets the parse function. SetParseFn(ParseFn) ParseOptions // MetricSelectorFn gets the metric selector function. MetricSelectorFn() MetricSelectorFn // SetMetricSelectorFn sets the metric selector function. SetMetricSelectorFn(MetricSelectorFn) ParseOptions // FunctionParseExpr gets the parsing function. FunctionParseExpr() ParseFunctionExpr // SetFunctionParseExpr sets the parsing function. SetFunctionParseExpr(ParseFunctionExpr) ParseOptions // NowFn gets the now function. NowFn() xclock.NowFn // SetNowFn sets the now function. SetNowFn(xclock.NowFn) ParseOptions // RequireStartEndTime returns whether requests require a start and end time. RequireStartEndTime() bool // SetRequireStartEndTime sets whether requests require a start and end time. SetRequireStartEndTime(bool) ParseOptions }
ParseOptions are options for the Prometheus parser.
func NewParseOptions ¶ added in v0.15.0
func NewParseOptions() ParseOptions
NewParseOptions creates a new parse options.