Merge pull request #2505 from ArthurSens/master
Amtool and Alertmanager binaries print to stdout
This commit is contained in:
commit
0fef08028b
|
@ -89,7 +89,7 @@ func NewAlertmanagerClient(amURL *url.URL) *client.Alertmanager {
|
|||
// Execute is the main function for the amtool command
|
||||
func Execute() {
|
||||
var (
|
||||
app = kingpin.New("amtool", helpRoot)
|
||||
app = kingpin.New("amtool", helpRoot).UsageWriter(os.Stdout)
|
||||
)
|
||||
|
||||
format.InitFormatFlags(app)
|
||||
|
|
|
@ -210,6 +210,7 @@ func run() int {
|
|||
)
|
||||
|
||||
promlogflag.AddFlags(kingpin.CommandLine, &promlogConfig)
|
||||
kingpin.CommandLine.UsageWriter(os.Stdout)
|
||||
|
||||
kingpin.Version(version.Print("alertmanager"))
|
||||
kingpin.CommandLine.GetFlag("help").Short('h')
|
||||
|
|
Loading…
Reference in New Issue