alertmanager/provider/provider.go

70 lines
2.1 KiB
Go
Raw Normal View History

// Copyright 2015 Prometheus Team
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2015-09-25 16:14:46 +00:00
package provider
import (
"github.com/prometheus/common/model"
2015-09-25 11:12:51 +00:00
"github.com/prometheus/alertmanager/config"
2015-09-25 12:38:07 +00:00
"github.com/prometheus/alertmanager/types"
)
2015-09-26 09:12:47 +00:00
type AlertIterator interface {
Next() <-chan *types.Alert
Err() error
Close()
}
2015-09-25 11:12:51 +00:00
// Alerts gives access to a set of alerts.
type Alerts interface {
2015-09-26 09:12:47 +00:00
// IterActive returns an iterator over active alerts from the
// beginning of time. They are not guaranteed to be in chronological order.
IterActive() AlertIterator
// All returns a list of all existing alerts.
// TODO(fabxc): this is not a scalable solution
All() ([]*types.Alert, error)
// Get returns the alert for a given fingerprint.
2015-09-25 12:38:07 +00:00
Get(model.Fingerprint) (*types.Alert, error)
// Put adds the given alert to the set.
2015-09-26 09:12:47 +00:00
Put(...*types.Alert) error
}
2015-09-25 11:12:51 +00:00
// Silences gives access to silences.
type Silences interface {
2015-09-25 12:38:07 +00:00
// The Silences provider must implement the Silencer interface
// for all its silences. The data provider may have access to an
// optimized view of the data to perform this evaluation.
2015-09-25 16:14:46 +00:00
types.Silencer
// All returns all existing silences.
2015-09-25 16:14:46 +00:00
All() []*types.Silence
// Set a new silence.
2015-09-25 16:14:46 +00:00
Set(*types.Silence) error
// Del removes a silence.
Del(model.Fingerprint) error
// Get a silence associated with a fingerprint.
2015-09-25 16:14:46 +00:00
Get(model.Fingerprint) (*types.Silence, error)
}
2015-09-25 11:12:51 +00:00
// Reloadable is a component that can change its state based
// on a new configuration.
type Reloadable interface {
ApplyConfig(*config.Config)
}
type Config interface {
// Reload initiates a configuration reload.
2015-09-25 11:12:51 +00:00
Reload(...Reloadable) error
}