2018-05-14 12:36:24 +00:00
|
|
|
// Copyright 2018 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.
|
|
|
|
|
2017-04-20 09:04:17 +00:00
|
|
|
package cli
|
|
|
|
|
|
|
|
import (
|
2018-04-13 11:34:16 +00:00
|
|
|
"net/url"
|
2017-04-20 09:04:17 +00:00
|
|
|
"os"
|
|
|
|
|
2017-12-22 10:17:13 +00:00
|
|
|
"github.com/prometheus/common/version"
|
2018-04-24 07:35:15 +00:00
|
|
|
"gopkg.in/alecthomas/kingpin.v2"
|
|
|
|
|
|
|
|
"github.com/prometheus/alertmanager/cli/config"
|
|
|
|
"github.com/prometheus/alertmanager/cli/format"
|
2017-04-20 09:04:17 +00:00
|
|
|
)
|
|
|
|
|
2017-12-22 10:17:13 +00:00
|
|
|
var (
|
2018-04-13 11:34:16 +00:00
|
|
|
verbose bool
|
|
|
|
alertmanagerURL *url.URL
|
|
|
|
output string
|
2018-04-24 07:35:15 +00:00
|
|
|
|
|
|
|
configFiles = []string{os.ExpandEnv("$HOME/.config/amtool/config.yml"), "/etc/amtool/config.yml"}
|
|
|
|
legacyFlags = map[string]string{"comment_required": "require-comment"}
|
2017-12-22 10:17:13 +00:00
|
|
|
)
|
2017-04-20 09:04:17 +00:00
|
|
|
|
2018-04-24 07:35:15 +00:00
|
|
|
func requireAlertManagerURL(pc *kingpin.ParseContext) error {
|
|
|
|
// Return without error if any help flag is set.
|
|
|
|
for _, elem := range pc.Elements {
|
|
|
|
f, ok := elem.Clause.(*kingpin.FlagClause)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
name := f.Model().Name
|
|
|
|
if name == "help" || name == "help-long" || name == "help-man" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if alertmanagerURL == nil {
|
|
|
|
kingpin.Fatalf("required flag --alertmanager.url not provided")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-04-13 11:34:16 +00:00
|
|
|
func Execute() {
|
|
|
|
var (
|
2018-04-24 07:35:15 +00:00
|
|
|
app = kingpin.New("amtool", helpRoot).DefaultEnvars()
|
2018-04-13 11:34:16 +00:00
|
|
|
)
|
2017-06-02 20:51:44 +00:00
|
|
|
|
2018-04-13 11:34:16 +00:00
|
|
|
format.InitFormatFlags(app)
|
2017-12-22 10:17:13 +00:00
|
|
|
|
2018-04-13 11:34:16 +00:00
|
|
|
app.Flag("verbose", "Verbose running information").Short('v').BoolVar(&verbose)
|
2018-04-24 07:35:15 +00:00
|
|
|
app.Flag("alertmanager.url", "Alertmanager to talk to").URLVar(&alertmanagerURL)
|
2018-04-13 11:34:16 +00:00
|
|
|
app.Flag("output", "Output formatter (simple, extended, json)").Short('o').Default("simple").EnumVar(&output, "simple", "extended", "json")
|
|
|
|
app.Version(version.Print("amtool"))
|
|
|
|
app.GetFlag("help").Short('h')
|
|
|
|
app.UsageTemplate(kingpin.CompactUsageTemplate)
|
2017-12-22 10:17:13 +00:00
|
|
|
|
2018-04-24 07:35:15 +00:00
|
|
|
resolver, err := config.NewResolver(configFiles, legacyFlags)
|
2018-04-13 11:34:16 +00:00
|
|
|
if err != nil {
|
|
|
|
kingpin.Fatalf("could not load config file: %v\n", err)
|
2017-12-22 10:17:13 +00:00
|
|
|
}
|
|
|
|
|
2018-04-24 07:35:15 +00:00
|
|
|
configureAlertCmd(app)
|
|
|
|
configureSilenceCmd(app)
|
|
|
|
configureCheckConfigCmd(app)
|
|
|
|
configureConfigCmd(app)
|
2018-04-13 11:34:16 +00:00
|
|
|
|
2018-04-24 07:35:15 +00:00
|
|
|
err = resolver.Bind(app, os.Args[1:])
|
2018-04-13 11:34:16 +00:00
|
|
|
if err != nil {
|
|
|
|
kingpin.Fatalf("%v\n", err)
|
2017-12-22 10:17:13 +00:00
|
|
|
}
|
2018-04-13 11:34:16 +00:00
|
|
|
|
2018-04-24 07:35:15 +00:00
|
|
|
_, err = app.Parse(os.Args[1:])
|
|
|
|
if err != nil {
|
|
|
|
kingpin.Fatalf("%v\n", err)
|
|
|
|
}
|
2017-12-22 10:17:13 +00:00
|
|
|
}
|
|
|
|
|
2018-04-13 11:34:16 +00:00
|
|
|
const (
|
2018-04-24 07:35:15 +00:00
|
|
|
helpRoot = `View and modify the current Alertmanager state.
|
2017-12-22 10:17:13 +00:00
|
|
|
|
|
|
|
Config File:
|
|
|
|
The alertmanager tool will read a config file in YAML format from one of two
|
|
|
|
default config locations: $HOME/.config/amtool/config.yml or
|
|
|
|
/etc/amtool/config.yml
|
|
|
|
|
|
|
|
All flags can be given in the config file, but the following are the suited for
|
|
|
|
static configuration:
|
2017-04-20 09:04:17 +00:00
|
|
|
|
|
|
|
alertmanager.url
|
|
|
|
Set a default alertmanager url for each request
|
|
|
|
|
|
|
|
author
|
2017-12-22 10:17:13 +00:00
|
|
|
Set a default author value for new silences. If this argument is not
|
|
|
|
specified then the username will be used
|
2017-04-20 09:04:17 +00:00
|
|
|
|
2017-12-22 10:17:13 +00:00
|
|
|
require-comment
|
|
|
|
Bool, whether to require a comment on silence creation. Defaults to true
|
2017-04-20 09:04:17 +00:00
|
|
|
|
|
|
|
output
|
|
|
|
Set a default output type. Options are (simple, extended, json)
|
|
|
|
|
2017-12-22 10:17:13 +00:00
|
|
|
date.format
|
|
|
|
Sets the output format for dates. Defaults to "2006-01-02 15:04:05 MST"
|
|
|
|
`
|
2018-04-13 11:34:16 +00:00
|
|
|
)
|