2013-02-07 02:38:01 -08:00
|
|
|
// Copyright 2013 Prometheus Team
|
2012-11-26 11:11:34 -08:00
|
|
|
// 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.
|
|
|
|
|
2012-11-24 03:33:34 -08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2013-01-22 10:32:56 -08:00
|
|
|
"flag"
|
2013-01-27 09:49:45 -08:00
|
|
|
"github.com/prometheus/prometheus/config"
|
|
|
|
"github.com/prometheus/prometheus/retrieval"
|
|
|
|
"github.com/prometheus/prometheus/retrieval/format"
|
|
|
|
"github.com/prometheus/prometheus/rules"
|
2013-02-08 09:03:26 -08:00
|
|
|
"github.com/prometheus/prometheus/storage/metric"
|
2013-02-08 05:49:55 -08:00
|
|
|
"github.com/prometheus/prometheus/web"
|
2013-05-05 10:32:04 -07:00
|
|
|
"github.com/prometheus/prometheus/web/api"
|
2012-12-11 11:46:16 -08:00
|
|
|
"log"
|
|
|
|
"os"
|
2013-01-06 14:30:46 -08:00
|
|
|
"os/signal"
|
2013-02-08 09:03:26 -08:00
|
|
|
"time"
|
2012-11-24 03:33:34 -08:00
|
|
|
)
|
|
|
|
|
2013-01-22 10:32:56 -08:00
|
|
|
// Commandline flags.
|
|
|
|
var (
|
2013-04-25 02:47:48 -07:00
|
|
|
printVersion = flag.Bool("version", false, "print version information")
|
2013-01-22 09:37:01 -08:00
|
|
|
configFile = flag.String("configFile", "prometheus.conf", "Prometheus configuration file name.")
|
|
|
|
metricsStoragePath = flag.String("metricsStoragePath", "/tmp/metrics", "Base path for metrics storage.")
|
|
|
|
scrapeResultsQueueCapacity = flag.Int("scrapeResultsQueueCapacity", 4096, "The size of the scrape results queue.")
|
|
|
|
ruleResultsQueueCapacity = flag.Int("ruleResultsQueueCapacity", 4096, "The size of the rule results queue.")
|
|
|
|
concurrentRetrievalAllowance = flag.Int("concurrentRetrievalAllowance", 15, "The number of concurrent metrics retrieval requests allowed.")
|
2013-04-16 08:13:29 -07:00
|
|
|
diskAppendQueueCapacity = flag.Int("queue.diskAppendCapacity", 1000000, "The size of the queue for items that are pending writing to disk.")
|
2013-04-30 04:22:33 -07:00
|
|
|
memoryAppendQueueCapacity = flag.Int("queue.memoryAppendCapacity", 10000, "The size of the queue for items that are pending writing to memory.")
|
2013-01-22 10:32:56 -08:00
|
|
|
)
|
|
|
|
|
2013-04-29 02:17:56 -07:00
|
|
|
type prometheus struct {
|
2013-05-05 10:32:04 -07:00
|
|
|
curationState chan metric.CurationState
|
2013-04-29 02:17:56 -07:00
|
|
|
ruleResults chan *rules.Result
|
2013-05-05 10:32:04 -07:00
|
|
|
storage metric.TieredStorage
|
|
|
|
scrapeResults chan format.Result
|
2013-04-29 02:17:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p prometheus) interruptHandler() {
|
|
|
|
notifier := make(chan os.Signal)
|
|
|
|
signal.Notify(notifier, os.Interrupt)
|
|
|
|
|
|
|
|
<-notifier
|
|
|
|
|
|
|
|
log.Println("Received SIGINT; Exiting Gracefully...")
|
|
|
|
p.close()
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p prometheus) close() {
|
2013-05-05 10:32:04 -07:00
|
|
|
close(p.curationState)
|
2013-04-29 02:17:56 -07:00
|
|
|
p.storage.Close()
|
|
|
|
}
|
|
|
|
|
2012-11-24 03:33:34 -08:00
|
|
|
func main() {
|
2013-04-29 02:17:56 -07:00
|
|
|
// TODO(all): Future additions to main should be, where applicable, glumped
|
|
|
|
// into the prometheus struct above---at least where the scoping of the entire
|
|
|
|
// server is concerned.
|
2013-01-22 10:32:56 -08:00
|
|
|
flag.Parse()
|
2013-04-25 02:47:48 -07:00
|
|
|
|
2013-04-25 04:14:50 -07:00
|
|
|
versionInfoTmpl.Execute(os.Stdout, BuildInfo)
|
|
|
|
|
2013-04-25 02:47:48 -07:00
|
|
|
if *printVersion {
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
|
2013-01-22 10:32:56 -08:00
|
|
|
conf, err := config.LoadFromFile(*configFile)
|
2013-01-07 14:24:26 -08:00
|
|
|
if err != nil {
|
2013-01-24 15:21:29 -08:00
|
|
|
log.Fatalf("Error loading configuration from %s: %v", *configFile, err)
|
2013-01-07 14:24:26 -08:00
|
|
|
}
|
|
|
|
|
2013-04-16 08:13:29 -07:00
|
|
|
ts, err := metric.NewTieredStorage(uint(*memoryAppendQueueCapacity), uint(*diskAppendQueueCapacity), 100, time.Second*30, time.Second*1, time.Second*20, *metricsStoragePath)
|
2013-03-27 03:25:05 -07:00
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("Error opening storage: %s", err)
|
|
|
|
}
|
2013-05-02 09:27:12 -07:00
|
|
|
if ts == nil {
|
|
|
|
log.Fatalln("Nil tiered storage.")
|
|
|
|
}
|
2013-04-29 02:17:56 -07:00
|
|
|
|
|
|
|
scrapeResults := make(chan format.Result, *scrapeResultsQueueCapacity)
|
|
|
|
ruleResults := make(chan *rules.Result, *ruleResultsQueueCapacity)
|
2013-05-05 10:32:04 -07:00
|
|
|
curationState := make(chan metric.CurationState, 1)
|
|
|
|
|
|
|
|
// Queue depth will need to be exposed
|
|
|
|
targetManager := retrieval.NewTargetManager(scrapeResults, *concurrentRetrievalAllowance)
|
|
|
|
targetManager.AddTargetsFromConfig(conf)
|
|
|
|
|
|
|
|
statusHandler := &web.StatusHandler{
|
|
|
|
BuildInfo: BuildInfo,
|
|
|
|
Config: &conf,
|
|
|
|
CurationState: curationState,
|
|
|
|
// Furnish the default status.
|
|
|
|
PrometheusStatus: &web.PrometheusStatus{},
|
|
|
|
TargetManager: targetManager,
|
|
|
|
}
|
|
|
|
|
|
|
|
// The closing of curationState implicitly closes this routine.
|
|
|
|
go statusHandler.ServeRequestsForever()
|
|
|
|
|
|
|
|
metricsService := &api.MetricsService{
|
|
|
|
Config: &conf,
|
|
|
|
TargetManager: targetManager,
|
|
|
|
Storage: ts,
|
|
|
|
}
|
|
|
|
|
|
|
|
webService := &web.WebService{
|
|
|
|
StatusHandler: statusHandler,
|
|
|
|
MetricsHandler: metricsService,
|
|
|
|
}
|
2013-04-29 02:17:56 -07:00
|
|
|
|
|
|
|
prometheus := prometheus{
|
2013-05-05 10:32:04 -07:00
|
|
|
curationState: curationState,
|
2013-04-29 02:17:56 -07:00
|
|
|
ruleResults: ruleResults,
|
2013-05-05 10:32:04 -07:00
|
|
|
scrapeResults: scrapeResults,
|
|
|
|
storage: *ts,
|
2013-04-29 02:17:56 -07:00
|
|
|
}
|
|
|
|
defer prometheus.close()
|
|
|
|
|
2013-03-21 10:06:15 -07:00
|
|
|
go ts.Serve()
|
2013-04-29 02:17:56 -07:00
|
|
|
go prometheus.interruptHandler()
|
2012-12-11 11:46:16 -08:00
|
|
|
|
2013-05-07 04:15:10 -07:00
|
|
|
ruleManager := rules.NewRuleManager(ruleResults, conf.EvaluationInterval(), ts)
|
2013-01-07 14:24:26 -08:00
|
|
|
err = ruleManager.AddRulesFromConfig(conf)
|
|
|
|
if err != nil {
|
2013-01-22 10:32:56 -08:00
|
|
|
log.Fatalf("Error loading rule files: %v", err)
|
2013-01-07 14:24:26 -08:00
|
|
|
}
|
2012-12-25 04:50:36 -08:00
|
|
|
|
2013-05-05 10:32:04 -07:00
|
|
|
go func() {
|
|
|
|
err := webService.ServeForever()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}()
|
2013-01-04 08:55:58 -08:00
|
|
|
|
2013-04-29 02:17:56 -07:00
|
|
|
// TODO(all): Migrate this into prometheus.serve().
|
2013-01-04 05:41:47 -08:00
|
|
|
for {
|
2013-01-07 14:24:26 -08:00
|
|
|
select {
|
|
|
|
case scrapeResult := <-scrapeResults:
|
2013-01-22 09:37:01 -08:00
|
|
|
if scrapeResult.Err == nil {
|
2013-04-29 07:55:18 -07:00
|
|
|
ts.AppendSamples(scrapeResult.Samples)
|
2013-01-07 14:24:26 -08:00
|
|
|
}
|
2013-02-08 09:03:26 -08:00
|
|
|
|
2013-01-07 14:24:26 -08:00
|
|
|
case ruleResult := <-ruleResults:
|
2013-04-09 04:47:20 -07:00
|
|
|
if ruleResult.Err == nil {
|
2013-04-29 07:55:18 -07:00
|
|
|
ts.AppendSamples(ruleResult.Samples)
|
2013-01-07 14:24:26 -08:00
|
|
|
}
|
2012-12-25 04:50:36 -08:00
|
|
|
}
|
2012-11-24 03:33:34 -08:00
|
|
|
}
|
|
|
|
}
|