Remove old silence code (#1080)
This commit is contained in:
parent
cf85bd84f2
commit
20598bfd71
|
@ -14,8 +14,6 @@
|
|||
package types
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"sort"
|
||||
"strings"
|
||||
"sync"
|
||||
"time"
|
||||
|
@ -380,71 +378,3 @@ func CalcSilenceState(start, end time.Time) SilenceState {
|
|||
}
|
||||
return SilenceStateExpired
|
||||
}
|
||||
|
||||
// Validate returns true iff all fields of the silence have valid values.
|
||||
func (s *Silence) Validate() error {
|
||||
if s.ID == "" {
|
||||
return fmt.Errorf("ID missing")
|
||||
}
|
||||
if len(s.Matchers) == 0 {
|
||||
return fmt.Errorf("at least one matcher required")
|
||||
}
|
||||
for _, m := range s.Matchers {
|
||||
if err := m.Validate(); err != nil {
|
||||
return fmt.Errorf("invalid matcher: %s", err)
|
||||
}
|
||||
}
|
||||
if s.StartsAt.IsZero() {
|
||||
return fmt.Errorf("start time missing")
|
||||
}
|
||||
if s.EndsAt.IsZero() {
|
||||
return fmt.Errorf("end time missing")
|
||||
}
|
||||
if s.EndsAt.Before(s.StartsAt) {
|
||||
return fmt.Errorf("start time must be before end time")
|
||||
}
|
||||
if s.CreatedBy == "" {
|
||||
return fmt.Errorf("creator information missing")
|
||||
}
|
||||
if s.Comment == "" {
|
||||
return fmt.Errorf("comment missing")
|
||||
}
|
||||
// if s.CreatedAt.IsZero() {
|
||||
// return fmt.Errorf("creation timestamp missing")
|
||||
// }
|
||||
return nil
|
||||
}
|
||||
|
||||
// Init initializes a silence. Must be called before using Mutes.
|
||||
func (s *Silence) Init() error {
|
||||
for _, m := range s.Matchers {
|
||||
if err := m.Init(); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
sort.Sort(s.Matchers)
|
||||
return nil
|
||||
}
|
||||
|
||||
// Mutes implements the Muter interface.
|
||||
//
|
||||
// TODO(fabxc): consider making this a function accepting a
|
||||
// timestamp and returning a Muter, i.e. s.Muter(ts).Mutes(lset).
|
||||
func (s *Silence) Mutes(lset model.LabelSet) bool {
|
||||
var now time.Time
|
||||
if s.now != nil {
|
||||
now = s.now()
|
||||
} else {
|
||||
now = time.Now()
|
||||
}
|
||||
if now.Before(s.StartsAt) || now.After(s.EndsAt) {
|
||||
return false
|
||||
}
|
||||
return s.Matchers.Match(lset)
|
||||
}
|
||||
|
||||
// Deleted returns whether a silence is deleted. Semantically this means it had no effect
|
||||
// on history at any point.
|
||||
func (s *Silence) Deleted() bool {
|
||||
return s.StartsAt.Equal(s.EndsAt)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue