Documentation ¶
Index ¶
- Variables
- type AggregateSettings
- type AlertsSettings
- type AnnotationSettings
- type BitBucket
- type CI
- type Checks
- type Config
- type ContextCommandKey
- type ContextCommandVal
- type CostSettings
- type GitHub
- type Match
- type MatchAnnotation
- type MatchLabel
- type PrometheusConfig
- type RejectSettings
- type Repository
- type Rule
Constants ¶
This section is empty.
Variables ¶
View Source
var ( CommandKey ContextCommandKey = "command" CICommand ContextCommandVal = "ci" LintCommand ContextCommandVal = "lint" WatchCommand ContextCommandVal = "watch" )
Functions ¶
This section is empty.
Types ¶
type AggregateSettings ¶
type AlertsSettings ¶
type AnnotationSettings ¶
type Config ¶
type Config struct { CI *CI `hcl:"ci,block" json:"ci,omitempty"` Repository *Repository `hcl:"repository,block" json:"repository,omitempty"` Prometheus []PrometheusConfig `hcl:"prometheus,block" json:"prometheus,omitempty"` Checks *Checks `hcl:"checks,block" json:"checks,omitempty"` Rules []Rule `hcl:"rule,block" json:"rules,omitempty"` // contains filtered or unexported fields }
func (*Config) ClearCache ¶ added in v0.7.0
func (cfg *Config) ClearCache()
func (*Config) DisableOnlineChecks ¶ added in v0.7.0
func (cfg *Config) DisableOnlineChecks()
func (*Config) GetChecksForRule ¶
func (*Config) SetDisabledChecks ¶
type ContextCommandKey ¶ added in v0.7.1
type ContextCommandKey string
type ContextCommandVal ¶ added in v0.7.1
type ContextCommandVal string
type CostSettings ¶
type Match ¶
type Match struct { Path string `hcl:"path,optional" json:"path,omitempty"` Name string `hcl:"name,optional" json:"name,omitempty"` Kind string `hcl:"kind,optional" json:"kind,omitempty"` Label *MatchLabel `hcl:"label,block" json:"label,omitempty"` Annotation *MatchAnnotation `hcl:"annotation,block" json:"annotation,omitempty"` Command *ContextCommandVal `hcl:"command,optional" json:"command,omitempty"` }
type MatchAnnotation ¶ added in v0.7.0
type MatchLabel ¶
type PrometheusConfig ¶
type RejectSettings ¶
type RejectSettings struct { Regex string `hcl:",label" json:"key,omitempty"` LabelKeys bool `hcl:"label_keys,optional" json:"label_keys,omitempty"` LabelValues bool `hcl:"label_values,optional" json:"label_values,omitempty"` AnnotationKeys bool `hcl:"annotation_keys,optional" json:"annotation_keys,omitempty"` AnnotationValues bool `hcl:"annotation_values,optional" json:"annotation_values,omitempty"` Severity string `hcl:"severity,optional" json:"severity,omitempty"` }
type Repository ¶
type Rule ¶
type Rule struct { Match []Match `hcl:"match,block" json:"match,omitempty"` Ignore []Match `hcl:"ignore,block" json:"ignore,omitempty"` Aggregate []AggregateSettings `hcl:"aggregate,block" json:"aggregate,omitempty"` Annotation []AnnotationSettings `hcl:"annotation,block" json:"annotation,omitempty"` Label []AnnotationSettings `hcl:"label,block" json:"label,omitempty"` Cost *CostSettings `hcl:"cost,block" json:"cost,omitempty"` Alerts *AlertsSettings `hcl:"alerts,block" json:"alerts,omitempty"` Reject []RejectSettings `hcl:"reject,block" json:"reject,omitempty"` }
Click to show internal directories.
Click to hide internal directories.