mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Move back to go-yaml
Signed-off-by: Goutham Veeramachaneni <cs14btech11014@iith.ac.in>
This commit is contained in:
parent
5ff283a7b7
commit
dc69645e92
|
@ -20,7 +20,7 @@ import (
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
yaml "github.com/ghodss/yaml"
|
yaml "gopkg.in/yaml.v2"
|
||||||
|
|
||||||
"github.com/prometheus/common/model"
|
"github.com/prometheus/common/model"
|
||||||
"github.com/prometheus/common/version"
|
"github.com/prometheus/common/version"
|
||||||
|
@ -244,7 +244,7 @@ func updateRules(t cli.Term, filename string) error {
|
||||||
yamlRules = append(yamlRules, rulefmt.Rule{
|
yamlRules = append(yamlRules, rulefmt.Rule{
|
||||||
Alert: r.Name,
|
Alert: r.Name,
|
||||||
Expr: r.Expr.String(),
|
Expr: r.Expr.String(),
|
||||||
For: model.Duration(r.Duration).String(),
|
For: model.Duration(r.Duration),
|
||||||
Labels: r.Labels.Map(),
|
Labels: r.Labels.Map(),
|
||||||
Annotations: r.Annotations.Map(),
|
Annotations: r.Annotations.Map(),
|
||||||
})
|
})
|
||||||
|
|
|
@ -16,10 +16,10 @@ package rulefmt
|
||||||
import (
|
import (
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
|
||||||
"github.com/ghodss/yaml"
|
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
"github.com/prometheus/common/model"
|
"github.com/prometheus/common/model"
|
||||||
"github.com/prometheus/prometheus/promql"
|
"github.com/prometheus/prometheus/promql"
|
||||||
|
yaml "gopkg.in/yaml.v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Error represents semantical errors on parsing rule groups.
|
// Error represents semantical errors on parsing rule groups.
|
||||||
|
@ -35,8 +35,8 @@ func (err *Error) Error() string {
|
||||||
|
|
||||||
// RuleGroups is a set of rule groups that are typically exposed in a file.
|
// RuleGroups is a set of rule groups that are typically exposed in a file.
|
||||||
type RuleGroups struct {
|
type RuleGroups struct {
|
||||||
Version int `json:"version"`
|
Version int `yaml:"version"`
|
||||||
Groups []RuleGroup `json:"groups"`
|
Groups []RuleGroup `yaml:"groups"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Validate validates all rules in the rule groups.
|
// Validate validates all rules in the rule groups.
|
||||||
|
@ -75,19 +75,19 @@ func (g *RuleGroups) Validate() (errs []error) {
|
||||||
|
|
||||||
// RuleGroup is a list of sequentially evaluated recording and alerting rules.
|
// RuleGroup is a list of sequentially evaluated recording and alerting rules.
|
||||||
type RuleGroup struct {
|
type RuleGroup struct {
|
||||||
Name string `json:"name"`
|
Name string `yaml:"name"`
|
||||||
Interval string `json:"interval,omitempty"`
|
Interval model.Duration `yaml:"interval,omitempty"`
|
||||||
Rules []Rule `json:"rules"`
|
Rules []Rule `yaml:"rules"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Rule describes an alerting or recording rule.
|
// Rule describes an alerting or recording rule.
|
||||||
type Rule struct {
|
type Rule struct {
|
||||||
Record string `json:"record,omitempty"`
|
Record string `yaml:"record,omitempty"`
|
||||||
Alert string `json:"alert,omitempty"`
|
Alert string `yaml:"alert,omitempty"`
|
||||||
Expr string `json:"expr"`
|
Expr string `yaml:"expr"`
|
||||||
For string `json:"for,omitempty"`
|
For model.Duration `yaml:"for,omitempty"`
|
||||||
Labels map[string]string `json:"labels,omitempty"`
|
Labels map[string]string `yaml:"labels,omitempty"`
|
||||||
Annotations map[string]string `json:"annotations,omitempty"`
|
Annotations map[string]string `yaml:"annotations,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Validate the rule and return a list of encountered errors.
|
// Validate the rule and return a list of encountered errors.
|
||||||
|
@ -108,7 +108,7 @@ func (r *Rule) Validate() (errs []error) {
|
||||||
if len(r.Annotations) > 0 {
|
if len(r.Annotations) > 0 {
|
||||||
errs = append(errs, errors.Errorf("invalid field 'annotations' in recording rule"))
|
errs = append(errs, errors.Errorf("invalid field 'annotations' in recording rule"))
|
||||||
}
|
}
|
||||||
if r.For != "" {
|
if r.For != 0 {
|
||||||
errs = append(errs, errors.Errorf("invalid field 'for' in recording rule"))
|
errs = append(errs, errors.Errorf("invalid field 'for' in recording rule"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
4
pkg/rulefmt/testdata/bad_annotation.bad.yaml
vendored
4
pkg/rulefmt/testdata/bad_annotation.bad.yaml
vendored
|
@ -1,5 +1,5 @@
|
||||||
Version: 1
|
version: 1
|
||||||
Groups:
|
groups:
|
||||||
- name: yolo
|
- name: yolo
|
||||||
rules:
|
rules:
|
||||||
- alert: hola
|
- alert: hola
|
||||||
|
|
4
pkg/rulefmt/testdata/bad_expr.bad.yaml
vendored
4
pkg/rulefmt/testdata/bad_expr.bad.yaml
vendored
|
@ -1,5 +1,5 @@
|
||||||
Version: 1
|
version: 1
|
||||||
Groups:
|
groups:
|
||||||
- name: yolo
|
- name: yolo
|
||||||
rules:
|
rules:
|
||||||
- record: yolo
|
- record: yolo
|
||||||
|
|
4
pkg/rulefmt/testdata/bad_lname.bad.yaml
vendored
4
pkg/rulefmt/testdata/bad_lname.bad.yaml
vendored
|
@ -1,5 +1,5 @@
|
||||||
Version: 1
|
version: 1
|
||||||
Groups:
|
groups:
|
||||||
- name: yolo
|
- name: yolo
|
||||||
rules:
|
rules:
|
||||||
- record: hola
|
- record: hola
|
||||||
|
|
4
pkg/rulefmt/testdata/duplicate_grp.bad.yaml
vendored
4
pkg/rulefmt/testdata/duplicate_grp.bad.yaml
vendored
|
@ -1,4 +1,4 @@
|
||||||
Version: 1
|
version: 1
|
||||||
Groups:
|
groups:
|
||||||
- name: yolo
|
- name: yolo
|
||||||
- name: yolo
|
- name: yolo
|
||||||
|
|
4
pkg/rulefmt/testdata/no_rec_alert.bad.yaml
vendored
4
pkg/rulefmt/testdata/no_rec_alert.bad.yaml
vendored
|
@ -1,5 +1,5 @@
|
||||||
Version: 1
|
version: 1
|
||||||
Groups:
|
groups:
|
||||||
- name: yolo
|
- name: yolo
|
||||||
rules:
|
rules:
|
||||||
- expr: 1
|
- expr: 1
|
||||||
|
|
4
pkg/rulefmt/testdata/noexpr.bad.yaml
vendored
4
pkg/rulefmt/testdata/noexpr.bad.yaml
vendored
|
@ -1,5 +1,5 @@
|
||||||
Version: 1
|
version: 1
|
||||||
Groups:
|
groups:
|
||||||
- name: yolo
|
- name: yolo
|
||||||
rules:
|
rules:
|
||||||
- record: ylo
|
- record: ylo
|
||||||
|
|
2
pkg/rulefmt/testdata/noversion.bad.yaml
vendored
2
pkg/rulefmt/testdata/noversion.bad.yaml
vendored
|
@ -1,2 +1,2 @@
|
||||||
Groups:
|
groups:
|
||||||
- name: yolo
|
- name: yolo
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
Version: 1
|
version: 1
|
||||||
Groups:
|
groups:
|
||||||
- name: yolo
|
- name: yolo
|
||||||
rules:
|
rules:
|
||||||
- record: Hi
|
- record: Hi
|
||||||
|
|
|
@ -522,13 +522,8 @@ func (m *Manager) loadGroups(interval time.Duration, filenames ...string) (map[s
|
||||||
|
|
||||||
for _, rg := range rgs.Groups {
|
for _, rg := range rgs.Groups {
|
||||||
itv := interval
|
itv := interval
|
||||||
if rg.Interval != "" {
|
if rg.Interval != 0 {
|
||||||
dur, err := model.ParseDuration(rg.Interval)
|
itv = time.Duration(rg.Interval)
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
itv = time.Duration(dur)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
rules := make([]Rule, 0, len(rg.Rules))
|
rules := make([]Rule, 0, len(rg.Rules))
|
||||||
|
@ -539,15 +534,10 @@ func (m *Manager) loadGroups(interval time.Duration, filenames ...string) (map[s
|
||||||
}
|
}
|
||||||
|
|
||||||
if r.Alert != "" {
|
if r.Alert != "" {
|
||||||
fordur, err := model.ParseDuration(r.For)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
rules = append(rules, NewAlertingRule(
|
rules = append(rules, NewAlertingRule(
|
||||||
r.Alert,
|
r.Alert,
|
||||||
expr,
|
expr,
|
||||||
time.Duration(fordur),
|
time.Duration(r.For),
|
||||||
labels.FromMap(r.Labels),
|
labels.FromMap(r.Labels),
|
||||||
labels.FromMap(r.Annotations),
|
labels.FromMap(r.Annotations),
|
||||||
))
|
))
|
||||||
|
|
Loading…
Reference in a new issue