mirror of https://github.com/prometheus/prometheus
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
140 lines
4.3 KiB
140 lines
4.3 KiB
// 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 ( |
|
"flag" |
|
"fmt" |
|
"github.com/prometheus/prometheus/appstate" |
|
"github.com/prometheus/prometheus/config" |
|
// "github.com/prometheus/prometheus/model" |
|
"github.com/prometheus/prometheus/retrieval" |
|
"github.com/prometheus/prometheus/retrieval/format" |
|
"github.com/prometheus/prometheus/rules" |
|
"github.com/prometheus/prometheus/rules/ast" |
|
"github.com/prometheus/prometheus/storage/metric" |
|
"github.com/prometheus/prometheus/web" |
|
"log" |
|
"os" |
|
"os/signal" |
|
"time" |
|
) |
|
|
|
// Commandline flags. |
|
var ( |
|
_ = fmt.Sprintf("") |
|
|
|
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.") |
|
memoryArena = flag.Bool("experimental.useMemoryArena", false, "Use in-memory timeseries arena.") |
|
) |
|
|
|
func main() { |
|
flag.Parse() |
|
conf, err := config.LoadFromFile(*configFile) |
|
if err != nil { |
|
log.Fatalf("Error loading configuration from %s: %v", *configFile, err) |
|
} |
|
|
|
var ( |
|
persistence metric.MetricPersistence |
|
ts metric.Storage |
|
) |
|
|
|
if *memoryArena { |
|
persistence = metric.NewMemorySeriesStorage() |
|
} else { |
|
ts = metric.NewTieredStorage(5000, 5000, 100, time.Second*30, time.Second*1, time.Second*20, *metricsStoragePath) |
|
go ts.Serve() |
|
|
|
// persistence, err = metric.NewLevelDBMetricPersistence(*metricsStoragePath) |
|
// if err != nil { |
|
// log.Fatalf("Error opening storage: %v", err) |
|
// } |
|
} |
|
|
|
go func() { |
|
notifier := make(chan os.Signal) |
|
signal.Notify(notifier, os.Interrupt) |
|
<-notifier |
|
// persistence.Close() |
|
os.Exit(0) |
|
}() |
|
|
|
// defer persistence.Close() |
|
|
|
// Queue depth will need to be exposed |
|
scrapeResults := make(chan format.Result, *scrapeResultsQueueCapacity) |
|
|
|
targetManager := retrieval.NewTargetManager(scrapeResults, *concurrentRetrievalAllowance) |
|
targetManager.AddTargetsFromConfig(conf) |
|
|
|
ruleResults := make(chan *rules.Result, *ruleResultsQueueCapacity) |
|
|
|
ast.SetPersistence(persistence, nil) |
|
ruleManager := rules.NewRuleManager(ruleResults, conf.Global.EvaluationInterval) |
|
err = ruleManager.AddRulesFromConfig(conf) |
|
if err != nil { |
|
log.Fatalf("Error loading rule files: %v", err) |
|
} |
|
|
|
appState := &appstate.ApplicationState{ |
|
Config: conf, |
|
Persistence: persistence, |
|
RuleManager: ruleManager, |
|
TargetManager: targetManager, |
|
} |
|
|
|
web.StartServing(appState) |
|
|
|
// go func() { |
|
// ticker := time.Tick(time.Second) |
|
// for i := 0; i < 120; i++ { |
|
// <-ticker |
|
// if i%10 == 0 { |
|
// fmt.Printf(".") |
|
// } |
|
// } |
|
// fmt.Println() |
|
// //f := model.NewFingerprintFromRowKey("9776005627788788740-g-131-0") |
|
// f := model.NewFingerprintFromRowKey("09923616460706181007-g-131-0") |
|
// v := metric.NewViewRequestBuilder() |
|
// v.GetMetricAtTime(f, time.Now().Add(-120*time.Second)) |
|
|
|
// view, err := ts.MakeView(v, time.Minute) |
|
// fmt.Println(view, err) |
|
// }() |
|
|
|
for { |
|
select { |
|
case scrapeResult := <-scrapeResults: |
|
if scrapeResult.Err == nil { |
|
// f := model.NewFingerprintFromMetric(scrapeResult.Sample.Metric) |
|
// fmt.Println(f) |
|
// persistence.AppendSample(scrapeResult.Sample) |
|
ts.AppendSample(scrapeResult.Sample) |
|
} |
|
|
|
case ruleResult := <-ruleResults: |
|
for _, sample := range ruleResult.Samples { |
|
// XXX: Wart |
|
// persistence.AppendSample(*sample) |
|
ts.AppendSample(*sample) |
|
} |
|
} |
|
} |
|
}
|
|
|