2013-07-16 15:03:56 +00:00
|
|
|
// Copyright 2013 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.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
2013-07-17 15:45:01 +00:00
|
|
|
|
|
|
|
"github.com/prometheus/alert_manager/manager"
|
|
|
|
"github.com/prometheus/alert_manager/web"
|
|
|
|
"github.com/prometheus/alert_manager/web/api"
|
2013-07-16 15:03:56 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
log.Print("Starting event suppressor...")
|
2013-07-17 15:45:01 +00:00
|
|
|
suppressor := manager.NewSuppressor()
|
2013-07-16 21:17:42 +00:00
|
|
|
defer suppressor.Close()
|
|
|
|
go suppressor.Dispatch()
|
2013-07-16 15:03:56 +00:00
|
|
|
log.Println("Done.")
|
|
|
|
|
|
|
|
log.Println("Starting event aggregator...")
|
2013-07-17 15:45:01 +00:00
|
|
|
aggregator := manager.NewAggregator()
|
2013-07-16 21:17:42 +00:00
|
|
|
defer aggregator.Close()
|
|
|
|
|
2013-07-18 12:49:37 +00:00
|
|
|
summarizer := manager.NewSummaryDispatcher()
|
2013-07-16 21:17:42 +00:00
|
|
|
go aggregator.Dispatch(summarizer)
|
2013-07-16 15:03:56 +00:00
|
|
|
log.Println("Done.")
|
|
|
|
|
2013-07-17 15:45:01 +00:00
|
|
|
webService := &web.WebService{
|
|
|
|
AlertManagerService: &api.AlertManagerService{
|
|
|
|
Aggregator: aggregator,
|
|
|
|
},
|
2013-07-18 12:49:37 +00:00
|
|
|
AlertsHandler: &web.AlertsHandler{
|
|
|
|
Aggregator: aggregator,
|
|
|
|
},
|
2013-07-17 15:45:01 +00:00
|
|
|
}
|
|
|
|
go webService.ServeForever()
|
2013-07-16 15:03:56 +00:00
|
|
|
|
2013-07-18 12:49:37 +00:00
|
|
|
// BEGIN EXAMPLE CODE - replace with config loading later.
|
|
|
|
done := make(chan bool)
|
|
|
|
go func() {
|
|
|
|
rules := manager.AggregationRules{
|
|
|
|
&manager.AggregationRule{
|
|
|
|
Filters: manager.Filters{manager.NewFilter("service", "discovery")},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
aggregator.SetRules(rules)
|
|
|
|
|
|
|
|
done <- true
|
|
|
|
}()
|
|
|
|
<-done
|
|
|
|
// END EXAMPLE CODE
|
|
|
|
|
2013-07-16 15:03:56 +00:00
|
|
|
log.Println("Running summary dispatcher...")
|
2013-07-16 21:17:42 +00:00
|
|
|
summarizer.Dispatch(suppressor)
|
2013-07-16 15:03:56 +00:00
|
|
|
}
|