mirror of
https://github.com/prometheus/alertmanager
synced 2025-01-01 02:52:06 +00:00
b2c656a071
Fixes #721 I was using the RunE method of cobra.Command which does things with an error returned from a function. I doesn't seem possible to keep it from printing usage every time, so I've make a wrapper to use the other function.
35 lines
948 B
Go
35 lines
948 B
Go
package cli
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
|
|
"github.com/prometheus/alertmanager/types"
|
|
)
|
|
|
|
//var labels []string
|
|
|
|
type alertmanagerSilenceResponse struct {
|
|
Status string `json:"status"`
|
|
Data []types.Silence `json:"data,omitempty"`
|
|
ErrorType string `json:"errorType,omitempty"`
|
|
Error string `json:"error,omitempty"`
|
|
}
|
|
|
|
// silenceCmd represents the silence command
|
|
var silenceCmd = &cobra.Command{
|
|
Use: "silence",
|
|
Short: "Manage silences",
|
|
Long: `Add, expire or view silences. For more information and additional flags see query help`,
|
|
Run: CommandWrapper(query),
|
|
}
|
|
|
|
func init() {
|
|
RootCmd.AddCommand(silenceCmd)
|
|
silenceCmd.PersistentFlags().BoolP("quiet", "q", false, "Only show silence ids")
|
|
viper.BindPFlag("quiet", silenceCmd.PersistentFlags().Lookup("quiet"))
|
|
silenceCmd.AddCommand(addCmd)
|
|
silenceCmd.AddCommand(expireCmd)
|
|
silenceCmd.AddCommand(queryCmd)
|
|
}
|