2015-01-21 19:07:45 +00:00
|
|
|
// Copyright 2013 The Prometheus Authors
|
2013-02-07 10:49:04 +00: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.
|
|
|
|
|
2013-01-07 22:24:26 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
2014-12-10 15:16:49 +00:00
|
|
|
"io/ioutil"
|
|
|
|
|
2015-02-13 19:24:17 +00:00
|
|
|
"github.com/golang/protobuf/proto"
|
2014-12-10 16:46:56 +00:00
|
|
|
|
2013-04-30 18:20:14 +00:00
|
|
|
pb "github.com/prometheus/prometheus/config/generated"
|
2013-01-07 22:24:26 +00:00
|
|
|
)
|
|
|
|
|
2014-12-10 15:16:49 +00:00
|
|
|
// LoadFromString returns a config parsed from the provided string.
|
2013-05-16 05:38:31 +00:00
|
|
|
func LoadFromString(configStr string) (Config, error) {
|
2013-04-30 18:20:14 +00:00
|
|
|
configProto := pb.PrometheusConfig{}
|
2013-05-16 05:38:31 +00:00
|
|
|
if err := proto.UnmarshalText(configStr, &configProto); err != nil {
|
|
|
|
return Config{}, err
|
2013-01-07 22:24:26 +00:00
|
|
|
}
|
2013-04-30 18:20:14 +00:00
|
|
|
if configProto.Global == nil {
|
|
|
|
configProto.Global = &pb.GlobalConfig{}
|
|
|
|
}
|
|
|
|
for _, job := range configProto.Job {
|
|
|
|
if job.ScrapeInterval == nil {
|
|
|
|
job.ScrapeInterval = proto.String(configProto.Global.GetScrapeInterval())
|
|
|
|
}
|
|
|
|
}
|
2013-05-16 05:38:31 +00:00
|
|
|
|
|
|
|
config := Config{configProto}
|
|
|
|
err := config.Validate()
|
|
|
|
|
|
|
|
return config, err
|
2013-01-07 22:24:26 +00:00
|
|
|
}
|
|
|
|
|
2014-12-10 16:46:56 +00:00
|
|
|
// LoadFromFile returns a config parsed from the file of the provided name.
|
2013-05-16 05:38:31 +00:00
|
|
|
func LoadFromFile(fileName string) (Config, error) {
|
2013-04-30 18:20:14 +00:00
|
|
|
configStr, err := ioutil.ReadFile(fileName)
|
2013-01-07 22:24:26 +00:00
|
|
|
if err != nil {
|
2013-05-16 05:38:31 +00:00
|
|
|
return Config{}, err
|
2013-01-07 22:24:26 +00:00
|
|
|
}
|
2013-01-24 23:21:29 +00:00
|
|
|
|
2013-05-16 05:38:31 +00:00
|
|
|
return LoadFromString(string(configStr))
|
2013-01-07 22:24:26 +00:00
|
|
|
}
|