Documentation ¶
Index ¶
- Constants
- Variables
- type AggregationCheck
- type AlertsCheck
- type AlertsForChecksFor
- type AnnotationCheck
- type CheckMeta
- type ComparisonCheck
- type CostCheck
- type FragileCheck
- type LabelCheck
- type Problem
- type PromqlSeriesSettings
- type RangeQueryCheck
- type RateCheck
- type RegexpCheck
- type Reject
- type RuleChecker
- type RuleLinkCheck
- type SeriesCheck
- type SettingsKey
- type Severity
- type SyntaxCheck
- type TemplateCheck
- type TemplateContext
- type TemplatedRegexp
- type VectorMatchingCheck
Constants ¶
View Source
const (
AggregationCheckName = "promql/aggregate"
)
View Source
const (
AlertForCheckName = "alerts/for"
)
View Source
const (
AlertsCheckName = "alerts/count"
)
View Source
const (
AnnotationCheckName = "alerts/annotation"
)
View Source
const (
ComparisonCheckName = "alerts/comparison"
)
View Source
const (
CostCheckName = "query/cost"
)
View Source
const (
FragileCheckName = "promql/fragile"
)
View Source
const (
LabelCheckName = "rule/label"
)
View Source
const (
RangeQueryCheckName = "promql/range_query"
)
View Source
const (
RateCheckName = "promql/rate"
)
View Source
const (
RegexpCheckName = "promql/regexp"
)
View Source
const (
RejectCheckName = "rule/reject"
)
View Source
const (
RuleLinkCheckName = "rule/link"
)
View Source
const (
SeriesCheckName = "promql/series"
)
View Source
const (
SyntaxCheckName = "promql/syntax"
)
View Source
const (
TemplateCheckName = "alerts/template"
)
View Source
const (
VectorMatchingCheckName = "promql/vector_matching"
)
Variables ¶
View Source
var ( CheckNames = []string{ AnnotationCheckName, AlertsCheckName, AlertForCheckName, TemplateCheckName, AggregationCheckName, ComparisonCheckName, FragileCheckName, RangeQueryCheckName, RateCheckName, RegexpCheckName, SyntaxCheckName, VectorMatchingCheckName, CostCheckName, SeriesCheckName, LabelCheckName, RuleLinkCheckName, RejectCheckName, } OnlineChecks = []string{ AlertsCheckName, RangeQueryCheckName, RateCheckName, VectorMatchingCheckName, CostCheckName, SeriesCheckName, RuleLinkCheckName, } )
Functions ¶
This section is empty.
Types ¶
type AggregationCheck ¶ added in v0.6.0
type AggregationCheck struct {
// contains filtered or unexported fields
}
func NewAggregationCheck ¶ added in v0.6.0
func NewAggregationCheck(nameRegex *TemplatedRegexp, label string, keep bool, severity Severity) AggregationCheck
func (AggregationCheck) Meta ¶ added in v0.27.0
func (c AggregationCheck) Meta() CheckMeta
func (AggregationCheck) Reporter ¶ added in v0.7.0
func (c AggregationCheck) Reporter() string
func (AggregationCheck) String ¶ added in v0.6.0
func (c AggregationCheck) String() string
type AlertsCheck ¶
type AlertsCheck struct {
// contains filtered or unexported fields
}
func NewAlertsCheck ¶
func NewAlertsCheck(prom *promapi.FailoverGroup, lookBack, step, resolve time.Duration) AlertsCheck
func (AlertsCheck) Meta ¶ added in v0.27.0
func (c AlertsCheck) Meta() CheckMeta
func (AlertsCheck) Reporter ¶ added in v0.7.0
func (c AlertsCheck) Reporter() string
func (AlertsCheck) String ¶
func (c AlertsCheck) String() string
type AlertsForChecksFor ¶ added in v0.5.0
type AlertsForChecksFor struct{}
func NewAlertsForCheck ¶ added in v0.5.0
func NewAlertsForCheck() AlertsForChecksFor
func (AlertsForChecksFor) Meta ¶ added in v0.27.0
func (c AlertsForChecksFor) Meta() CheckMeta
func (AlertsForChecksFor) Reporter ¶ added in v0.7.0
func (c AlertsForChecksFor) Reporter() string
func (AlertsForChecksFor) String ¶ added in v0.5.0
func (c AlertsForChecksFor) String() string
type AnnotationCheck ¶
type AnnotationCheck struct {
// contains filtered or unexported fields
}
func NewAnnotationCheck ¶
func NewAnnotationCheck(key string, valueRe *TemplatedRegexp, isReguired bool, severity Severity) AnnotationCheck
func (AnnotationCheck) Meta ¶ added in v0.27.0
func (c AnnotationCheck) Meta() CheckMeta
func (AnnotationCheck) Reporter ¶ added in v0.7.0
func (c AnnotationCheck) Reporter() string
func (AnnotationCheck) String ¶
func (c AnnotationCheck) String() string
type ComparisonCheck ¶
type ComparisonCheck struct{}
func NewComparisonCheck ¶
func NewComparisonCheck() ComparisonCheck
func (ComparisonCheck) Meta ¶ added in v0.27.0
func (c ComparisonCheck) Meta() CheckMeta
func (ComparisonCheck) Reporter ¶ added in v0.7.0
func (c ComparisonCheck) Reporter() string
func (ComparisonCheck) String ¶
func (c ComparisonCheck) String() string
type CostCheck ¶
type CostCheck struct {
// contains filtered or unexported fields
}
func NewCostCheck ¶
func NewCostCheck(prom *promapi.FailoverGroup, bps, maxSeries int, severity Severity) CostCheck
type FragileCheck ¶ added in v0.8.0
type FragileCheck struct{}
func NewFragileCheck ¶ added in v0.8.0
func NewFragileCheck() FragileCheck
func (FragileCheck) Meta ¶ added in v0.27.0
func (c FragileCheck) Meta() CheckMeta
func (FragileCheck) Reporter ¶ added in v0.8.0
func (c FragileCheck) Reporter() string
func (FragileCheck) String ¶ added in v0.8.0
func (c FragileCheck) String() string
type LabelCheck ¶
type LabelCheck struct {
// contains filtered or unexported fields
}
func NewLabelCheck ¶
func NewLabelCheck(key string, valueRe *TemplatedRegexp, isReguired bool, severity Severity) LabelCheck
func (LabelCheck) Meta ¶ added in v0.27.0
func (c LabelCheck) Meta() CheckMeta
func (LabelCheck) Reporter ¶ added in v0.7.0
func (c LabelCheck) Reporter() string
func (LabelCheck) String ¶
func (c LabelCheck) String() string
type PromqlSeriesSettings ¶ added in v0.23.0
type PromqlSeriesSettings struct { IgnoreMetrics []string `hcl:"ignoreMetrics,optional" json:"ignoreMetrics,omitempty"` // contains filtered or unexported fields }
func (*PromqlSeriesSettings) Validate ¶ added in v0.23.0
func (c *PromqlSeriesSettings) Validate() error
type RangeQueryCheck ¶ added in v0.26.0
type RangeQueryCheck struct {
// contains filtered or unexported fields
}
func NewRangeQueryCheck ¶ added in v0.26.0
func NewRangeQueryCheck(prom *promapi.FailoverGroup) RangeQueryCheck
func (RangeQueryCheck) Meta ¶ added in v0.27.0
func (c RangeQueryCheck) Meta() CheckMeta
func (RangeQueryCheck) Reporter ¶ added in v0.26.0
func (c RangeQueryCheck) Reporter() string
func (RangeQueryCheck) String ¶ added in v0.26.0
func (c RangeQueryCheck) String() string
type RateCheck ¶
type RateCheck struct {
// contains filtered or unexported fields
}
func NewRateCheck ¶
func NewRateCheck(prom *promapi.FailoverGroup) RateCheck
type RegexpCheck ¶ added in v0.11.0
type RegexpCheck struct{}
func NewRegexpCheck ¶ added in v0.11.0
func NewRegexpCheck() RegexpCheck
func (RegexpCheck) Meta ¶ added in v0.27.0
func (c RegexpCheck) Meta() CheckMeta
func (RegexpCheck) Reporter ¶ added in v0.11.0
func (c RegexpCheck) Reporter() string
func (RegexpCheck) String ¶ added in v0.11.0
func (c RegexpCheck) String() string
type Reject ¶
type Reject struct {
// contains filtered or unexported fields
}
func NewRejectCheck ¶
func NewRejectCheck(l, a bool, k, v *TemplatedRegexp, s Severity) Reject
type RuleChecker ¶
type RuleLinkCheck ¶ added in v0.27.0
type RuleLinkCheck struct {
// contains filtered or unexported fields
}
func NewRuleLinkCheck ¶ added in v0.27.0
func NewRuleLinkCheck(re *TemplatedRegexp, uriRewrite string, timeout time.Duration, headers map[string]string, s Severity) RuleLinkCheck
func (RuleLinkCheck) Meta ¶ added in v0.27.0
func (c RuleLinkCheck) Meta() CheckMeta
func (RuleLinkCheck) Reporter ¶ added in v0.27.0
func (c RuleLinkCheck) Reporter() string
func (RuleLinkCheck) String ¶ added in v0.27.0
func (c RuleLinkCheck) String() string
type SeriesCheck ¶
type SeriesCheck struct {
// contains filtered or unexported fields
}
func NewSeriesCheck ¶
func NewSeriesCheck(prom *promapi.FailoverGroup) SeriesCheck
func (SeriesCheck) Meta ¶ added in v0.27.0
func (c SeriesCheck) Meta() CheckMeta
func (SeriesCheck) Reporter ¶ added in v0.7.0
func (c SeriesCheck) Reporter() string
func (SeriesCheck) String ¶
func (c SeriesCheck) String() string
type SettingsKey ¶ added in v0.23.0
type SettingsKey string
type SyntaxCheck ¶
type SyntaxCheck struct{}
func NewSyntaxCheck ¶
func NewSyntaxCheck() SyntaxCheck
func (SyntaxCheck) Meta ¶ added in v0.27.0
func (c SyntaxCheck) Meta() CheckMeta
func (SyntaxCheck) Reporter ¶ added in v0.7.0
func (c SyntaxCheck) Reporter() string
func (SyntaxCheck) String ¶
func (c SyntaxCheck) String() string
type TemplateCheck ¶
type TemplateCheck struct{}
func NewTemplateCheck ¶
func NewTemplateCheck() TemplateCheck
func (TemplateCheck) Meta ¶ added in v0.27.0
func (c TemplateCheck) Meta() CheckMeta
func (TemplateCheck) Reporter ¶ added in v0.7.0
func (c TemplateCheck) Reporter() string
func (TemplateCheck) String ¶
func (c TemplateCheck) String() string
type TemplateContext ¶ added in v0.14.0
type TemplateContext struct { Alert string Record string Expr string For string Labels map[string]string Annotations map[string]string }
func (TemplateContext) Aliases ¶ added in v0.14.0
func (tc TemplateContext) Aliases() string
type TemplatedRegexp ¶ added in v0.14.0
type TemplatedRegexp struct {
// contains filtered or unexported fields
}
func MustTemplatedRegexp ¶ added in v0.14.0
func MustTemplatedRegexp(re string) *TemplatedRegexp
func NewTemplatedRegexp ¶ added in v0.14.0
func NewTemplatedRegexp(s string) (*TemplatedRegexp, error)
func (TemplatedRegexp) MustExpand ¶ added in v0.14.0
func (tr TemplatedRegexp) MustExpand(rule parser.Rule) *regexp.Regexp
type VectorMatchingCheck ¶ added in v0.1.3
type VectorMatchingCheck struct {
// contains filtered or unexported fields
}
func NewVectorMatchingCheck ¶ added in v0.1.3
func NewVectorMatchingCheck(prom *promapi.FailoverGroup) VectorMatchingCheck
func (VectorMatchingCheck) Meta ¶ added in v0.27.0
func (c VectorMatchingCheck) Meta() CheckMeta
func (VectorMatchingCheck) Reporter ¶ added in v0.7.0
func (c VectorMatchingCheck) Reporter() string
func (VectorMatchingCheck) String ¶ added in v0.1.3
func (c VectorMatchingCheck) String() string
Source Files ¶
- alerts_annotation.go
- alerts_comparison.go
- alerts_count.go
- alerts_for.go
- alerts_template.go
- base.go
- promql_aggregation.go
- promql_fragile.go
- promql_range_query.go
- promql_rate.go
- promql_regexp.go
- promql_series.go
- promql_syntax.go
- promql_vector_matching.go
- query_cost.go
- rule_label.go
- rule_link.go
- rule_reject.go
- template.go
Click to show internal directories.
Click to hide internal directories.