2015-06-18 02:13:28 -07:00
|
|
|
// Copyright 2015 The Prometheus Authors
|
|
|
|
// 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 (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
|
2016-05-05 04:46:51 -07:00
|
|
|
"github.com/prometheus/common/version"
|
2015-06-18 02:13:28 -07:00
|
|
|
"github.com/prometheus/prometheus/config"
|
|
|
|
"github.com/prometheus/prometheus/promql"
|
|
|
|
"github.com/prometheus/prometheus/util/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
// CheckConfigCmd validates configuration files.
|
|
|
|
func CheckConfigCmd(t cli.Term, args ...string) int {
|
|
|
|
if len(args) == 0 {
|
|
|
|
t.Infof("usage: promtool check-config <files>")
|
|
|
|
return 2
|
|
|
|
}
|
|
|
|
failed := false
|
|
|
|
|
|
|
|
for _, arg := range args {
|
|
|
|
ruleFiles, err := checkConfig(t, arg)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf(" FAILED: %s", err)
|
|
|
|
failed = true
|
|
|
|
} else {
|
|
|
|
t.Infof(" SUCCESS: %d rule files found", len(ruleFiles))
|
|
|
|
}
|
|
|
|
t.Infof("")
|
|
|
|
|
|
|
|
for _, rf := range ruleFiles {
|
|
|
|
if n, err := checkRules(t, rf); err != nil {
|
|
|
|
t.Errorf(" FAILED: %s", err)
|
|
|
|
failed = true
|
|
|
|
} else {
|
|
|
|
t.Infof(" SUCCESS: %d rules found", n)
|
|
|
|
}
|
|
|
|
t.Infof("")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if failed {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2015-09-09 05:08:05 -07:00
|
|
|
func checkFileExists(fn string) error {
|
|
|
|
// Nothing set, nothing to error on.
|
|
|
|
if fn == "" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
_, err := os.Stat(fn)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-06-18 02:13:28 -07:00
|
|
|
func checkConfig(t cli.Term, filename string) ([]string, error) {
|
|
|
|
t.Infof("Checking %s", filename)
|
|
|
|
|
|
|
|
if stat, err := os.Stat(filename); err != nil {
|
|
|
|
return nil, fmt.Errorf("cannot get file info")
|
|
|
|
} else if stat.IsDir() {
|
|
|
|
return nil, fmt.Errorf("is a directory")
|
|
|
|
}
|
|
|
|
|
2015-08-05 09:30:37 -07:00
|
|
|
cfg, err := config.LoadFile(filename)
|
2015-06-18 02:13:28 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var ruleFiles []string
|
|
|
|
for _, rf := range cfg.RuleFiles {
|
|
|
|
rfs, err := filepath.Glob(rf)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-08-05 09:30:37 -07:00
|
|
|
// If an explicit file was given, error if it is not accessible.
|
|
|
|
if !strings.Contains(rf, "*") {
|
|
|
|
if len(rfs) == 0 {
|
|
|
|
return nil, fmt.Errorf("%q does not point to an existing file", rf)
|
|
|
|
}
|
2015-09-09 05:08:05 -07:00
|
|
|
if err := checkFileExists(rfs[0]); err != nil {
|
2015-08-05 09:30:37 -07:00
|
|
|
return nil, fmt.Errorf("error checking rule file %q: %s", rfs[0], err)
|
|
|
|
}
|
2015-06-18 02:13:28 -07:00
|
|
|
}
|
|
|
|
ruleFiles = append(ruleFiles, rfs...)
|
|
|
|
}
|
|
|
|
|
2015-08-05 09:30:37 -07:00
|
|
|
for _, scfg := range cfg.ScrapeConfigs {
|
2016-11-23 03:41:19 -08:00
|
|
|
if err := checkFileExists(scfg.HTTPClientConfig.BearerTokenFile); err != nil {
|
|
|
|
return nil, fmt.Errorf("error checking bearer token file %q: %s", scfg.HTTPClientConfig.BearerTokenFile, err)
|
2015-08-05 09:30:37 -07:00
|
|
|
}
|
|
|
|
|
2016-11-23 03:41:19 -08:00
|
|
|
if err := checkTLSConfig(scfg.HTTPClientConfig.TLSConfig); err != nil {
|
2015-09-09 05:08:05 -07:00
|
|
|
return nil, err
|
2015-09-06 16:07:44 -07:00
|
|
|
}
|
|
|
|
|
2016-11-23 03:41:19 -08:00
|
|
|
for _, kd := range scfg.ServiceDiscoveryConfig.KubernetesSDConfigs {
|
2015-09-09 05:08:05 -07:00
|
|
|
if err := checkTLSConfig(kd.TLSConfig); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-08-05 09:30:37 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-18 02:13:28 -07:00
|
|
|
return ruleFiles, nil
|
|
|
|
}
|
|
|
|
|
2015-09-09 05:08:05 -07:00
|
|
|
func checkTLSConfig(tlsConfig config.TLSConfig) error {
|
|
|
|
if err := checkFileExists(tlsConfig.CertFile); err != nil {
|
|
|
|
return fmt.Errorf("error checking client cert file %q: %s", tlsConfig.CertFile, err)
|
|
|
|
}
|
|
|
|
if err := checkFileExists(tlsConfig.KeyFile); err != nil {
|
|
|
|
return fmt.Errorf("error checking client key file %q: %s", tlsConfig.KeyFile, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(tlsConfig.CertFile) > 0 && len(tlsConfig.KeyFile) == 0 {
|
|
|
|
return fmt.Errorf("client cert file %q specified without client key file", tlsConfig.CertFile)
|
|
|
|
}
|
|
|
|
if len(tlsConfig.KeyFile) > 0 && len(tlsConfig.CertFile) == 0 {
|
|
|
|
return fmt.Errorf("client key file %q specified without client cert file", tlsConfig.KeyFile)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-06-18 02:13:28 -07:00
|
|
|
// CheckRulesCmd validates rule files.
|
|
|
|
func CheckRulesCmd(t cli.Term, args ...string) int {
|
|
|
|
if len(args) == 0 {
|
|
|
|
t.Infof("usage: promtool check-rules <files>")
|
|
|
|
return 2
|
|
|
|
}
|
|
|
|
failed := false
|
|
|
|
|
|
|
|
for _, arg := range args {
|
|
|
|
if n, err := checkRules(t, arg); err != nil {
|
|
|
|
t.Errorf(" FAILED: %s", err)
|
|
|
|
failed = true
|
|
|
|
} else {
|
|
|
|
t.Infof(" SUCCESS: %d rules found", n)
|
|
|
|
}
|
|
|
|
t.Infof("")
|
|
|
|
}
|
|
|
|
if failed {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func checkRules(t cli.Term, filename string) (int, error) {
|
|
|
|
t.Infof("Checking %s", filename)
|
|
|
|
|
|
|
|
if stat, err := os.Stat(filename); err != nil {
|
|
|
|
return 0, fmt.Errorf("cannot get file info")
|
|
|
|
} else if stat.IsDir() {
|
|
|
|
return 0, fmt.Errorf("is a directory")
|
|
|
|
}
|
|
|
|
|
|
|
|
content, err := ioutil.ReadFile(filename)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
rules, err := promql.ParseStmts(string(content))
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return len(rules), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// VersionCmd prints the binaries version information.
|
|
|
|
func VersionCmd(t cli.Term, _ ...string) int {
|
2016-05-05 04:46:51 -07:00
|
|
|
fmt.Fprintln(os.Stdout, version.Print("promtool"))
|
2015-06-18 02:13:28 -07:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
app := cli.NewApp("promtool")
|
|
|
|
|
|
|
|
app.Register("check-config", &cli.Command{
|
|
|
|
Desc: "validate configuration files for correctness",
|
|
|
|
Run: CheckConfigCmd,
|
|
|
|
})
|
|
|
|
|
|
|
|
app.Register("check-rules", &cli.Command{
|
|
|
|
Desc: "validate rule files for correctness",
|
|
|
|
Run: CheckRulesCmd,
|
|
|
|
})
|
|
|
|
|
|
|
|
app.Register("version", &cli.Command{
|
|
|
|
Desc: "print the version of this binary",
|
|
|
|
Run: VersionCmd,
|
|
|
|
})
|
|
|
|
|
|
|
|
t := cli.BasicTerm(os.Stdout, os.Stderr)
|
|
|
|
os.Exit(app.Run(t, os.Args[1:]...))
|
|
|
|
}
|