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-02-12 04:15:40 -08:00
|
|
|
"github.com/prometheus/prometheus/appstate"
|
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"
|
|
|
|
"github.com/prometheus/prometheus/rules/ast"
|
2013-02-08 09:03:26 -08:00
|
|
|
"github.com/prometheus/prometheus/storage/metric"
|
2013-01-27 09:49:45 -08:00
|
|
|
"github.com/prometheus/prometheus/storage/metric/leveldb"
|
2013-02-08 09:03:26 -08:00
|
|
|
"github.com/prometheus/prometheus/storage/metric/memory"
|
2013-02-08 05:49:55 -08:00
|
|
|
"github.com/prometheus/prometheus/web"
|
2012-12-11 11:46:16 -08:00
|
|
|
"log"
|
|
|
|
"os"
|
2013-01-06 14:30:46 -08:00
|
|
|
"os/signal"
|
2012-11-24 03:33:34 -08:00
|
|
|
)
|
|
|
|
|
2013-01-22 10:32:56 -08:00
|
|
|
// Commandline flags.
|
|
|
|
var (
|
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-02-08 09:03:26 -08:00
|
|
|
memoryArena = flag.Bool("experimental.useMemoryArena", false, "Use in-memory timeseries arena.")
|
2013-01-22 10:32:56 -08:00
|
|
|
)
|
|
|
|
|
2012-11-24 03:33:34 -08:00
|
|
|
func main() {
|
2013-01-22 10:32:56 -08:00
|
|
|
flag.Parse()
|
|
|
|
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-02-08 09:03:26 -08:00
|
|
|
var persistence metric.MetricPersistence
|
|
|
|
if *memoryArena {
|
|
|
|
persistence = memory.NewMemorySeriesStorage()
|
|
|
|
} else {
|
|
|
|
persistence, err = leveldb.NewLevelDBMetricPersistence(*metricsStoragePath)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("Error opening storage: %v", err)
|
|
|
|
}
|
2012-12-11 11:46:16 -08:00
|
|
|
}
|
|
|
|
|
2013-01-06 14:30:46 -08:00
|
|
|
go func() {
|
|
|
|
notifier := make(chan os.Signal)
|
|
|
|
signal.Notify(notifier, os.Interrupt)
|
|
|
|
<-notifier
|
2013-01-07 14:24:26 -08:00
|
|
|
persistence.Close()
|
2013-01-06 14:30:46 -08:00
|
|
|
os.Exit(0)
|
2012-12-11 11:46:16 -08:00
|
|
|
}()
|
|
|
|
|
2013-01-07 14:24:26 -08:00
|
|
|
defer persistence.Close()
|
2013-01-06 14:30:46 -08:00
|
|
|
|
2013-01-22 09:37:01 -08:00
|
|
|
// Queue depth will need to be exposed
|
|
|
|
scrapeResults := make(chan format.Result, *scrapeResultsQueueCapacity)
|
2013-01-04 05:41:47 -08:00
|
|
|
|
2013-01-22 09:37:01 -08:00
|
|
|
targetManager := retrieval.NewTargetManager(scrapeResults, *concurrentRetrievalAllowance)
|
2013-01-07 14:24:26 -08:00
|
|
|
targetManager.AddTargetsFromConfig(conf)
|
2012-12-25 04:50:36 -08:00
|
|
|
|
2013-01-22 09:37:01 -08:00
|
|
|
ruleResults := make(chan *rules.Result, *ruleResultsQueueCapacity)
|
2013-01-07 14:24:26 -08:00
|
|
|
|
2013-01-25 03:21:44 -08:00
|
|
|
ast.SetPersistence(persistence, nil)
|
2013-01-07 14:24:26 -08:00
|
|
|
ruleManager := rules.NewRuleManager(ruleResults, conf.Global.EvaluationInterval)
|
|
|
|
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-02-12 04:15:40 -08:00
|
|
|
appState := &appstate.ApplicationState{
|
|
|
|
Config: conf,
|
|
|
|
Persistence: persistence,
|
2013-02-14 09:21:21 -08:00
|
|
|
RuleManager: ruleManager,
|
2013-02-12 04:15:40 -08:00
|
|
|
TargetManager: targetManager,
|
|
|
|
}
|
|
|
|
|
|
|
|
web.StartServing(appState)
|
2013-01-04 08:55:58 -08:00
|
|
|
|
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-02-13 13:46:28 -08:00
|
|
|
persistence.AppendSample(scrapeResult.Sample)
|
2013-01-07 14:24:26 -08:00
|
|
|
}
|
|
|
|
case ruleResult := <-ruleResults:
|
|
|
|
for _, sample := range ruleResult.Samples {
|
2013-02-13 13:46:28 -08:00
|
|
|
// XXX: Wart
|
|
|
|
persistence.AppendSample(*sample)
|
2013-01-07 14:24:26 -08:00
|
|
|
}
|
2012-12-25 04:50:36 -08:00
|
|
|
}
|
2012-11-24 03:33:34 -08:00
|
|
|
}
|
|
|
|
}
|