2013-02-07 02:49:04 -08: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.
|
|
|
|
|
2013-01-07 14:24:26 -08:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
2013-04-30 11:20:14 -07:00
|
|
|
"code.google.com/p/goprotobuf/proto"
|
|
|
|
pb "github.com/prometheus/prometheus/config/generated"
|
|
|
|
"io/ioutil"
|
2013-01-07 14:24:26 -08:00
|
|
|
)
|
|
|
|
|
2013-05-15 22:38:31 -07:00
|
|
|
func LoadFromString(configStr string) (Config, error) {
|
2013-04-30 11:20:14 -07:00
|
|
|
configProto := pb.PrometheusConfig{}
|
2013-05-15 22:38:31 -07:00
|
|
|
if err := proto.UnmarshalText(configStr, &configProto); err != nil {
|
|
|
|
return Config{}, err
|
2013-01-07 14:24:26 -08:00
|
|
|
}
|
2013-04-30 11:20:14 -07: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-15 22:38:31 -07:00
|
|
|
|
|
|
|
config := Config{configProto}
|
|
|
|
err := config.Validate()
|
|
|
|
|
|
|
|
return config, err
|
2013-01-07 14:24:26 -08:00
|
|
|
}
|
|
|
|
|
2013-05-15 22:38:31 -07:00
|
|
|
func LoadFromFile(fileName string) (Config, error) {
|
2013-04-30 11:20:14 -07:00
|
|
|
configStr, err := ioutil.ReadFile(fileName)
|
2013-01-07 14:24:26 -08:00
|
|
|
if err != nil {
|
2013-05-15 22:38:31 -07:00
|
|
|
return Config{}, err
|
2013-01-07 14:24:26 -08:00
|
|
|
}
|
2013-01-24 15:21:29 -08:00
|
|
|
|
2013-05-15 22:38:31 -07:00
|
|
|
return LoadFromString(string(configStr))
|
2013-01-07 14:24:26 -08:00
|
|
|
}
|