mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
cmd/promtool: resolve rule files relative to config file
This commit is contained in:
parent
feb8a03503
commit
7e615dcdf0
|
@ -84,6 +84,10 @@ func checkConfig(t cli.Term, filename string) ([]string, error) {
|
||||||
}
|
}
|
||||||
var ruleFiles []string
|
var ruleFiles []string
|
||||||
for _, rf := range cfg.RuleFiles {
|
for _, rf := range cfg.RuleFiles {
|
||||||
|
if !filepath.IsAbs(rf) {
|
||||||
|
rf = filepath.Join(filepath.Dir(filename), rf)
|
||||||
|
}
|
||||||
|
|
||||||
rfs, err := filepath.Glob(rf)
|
rfs, err := filepath.Glob(rf)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|
Loading…
Reference in a new issue