2017-04-20 09:04:17 +00:00
|
|
|
package cli
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"path"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/prometheus/alertmanager/cli/format"
|
|
|
|
"github.com/prometheus/alertmanager/config"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/spf13/viper"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Config is the response type of alertmanager config endpoint
|
|
|
|
// Duped in cli/format needs to be moved to common/model
|
|
|
|
type Config struct {
|
2017-06-08 11:14:37 +00:00
|
|
|
ConfigYAML string `json:"configYAML"`
|
|
|
|
ConfigJSON config.Config `json:"configJSON"`
|
2017-04-20 09:04:17 +00:00
|
|
|
MeshStatus map[string]interface{} `json:"meshStatus"`
|
|
|
|
VersionInfo map[string]string `json:"versionInfo"`
|
|
|
|
Uptime time.Time `json:"uptime"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type MeshStatus struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
NickName string `json:"nickName"`
|
|
|
|
Peers []PeerStatus `json:"peerStatus"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type PeerStatus struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
NickName string `json:"nickName"`
|
|
|
|
UID uint64 `uid`
|
|
|
|
}
|
|
|
|
|
|
|
|
type alertmanagerStatusResponse struct {
|
|
|
|
Status string `json:"status"`
|
|
|
|
Data Config `json:"data,omitempty"`
|
|
|
|
ErrorType string `json:"errorType,omitempty"`
|
|
|
|
Error string `json:"error,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// alertCmd represents the alert command
|
|
|
|
var configCmd = &cobra.Command{
|
|
|
|
Use: "config",
|
|
|
|
Short: "View the running config",
|
|
|
|
Long: `View current config
|
|
|
|
|
|
|
|
The amount of output is controlled by the output selection flag:
|
|
|
|
- Simple: Print just the running config
|
|
|
|
- Extended: Print the running config as well as uptime and all version info
|
|
|
|
- Json: Print entire config object as json`,
|
|
|
|
RunE: queryConfig,
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
RootCmd.AddCommand(configCmd)
|
|
|
|
}
|
|
|
|
|
|
|
|
func fetchConfig() (Config, error) {
|
|
|
|
configResponse := alertmanagerStatusResponse{}
|
|
|
|
u, err := GetAlertmanagerURL()
|
|
|
|
if err != nil {
|
|
|
|
return Config{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
u.Path = path.Join(u.Path, "/api/v1/status")
|
|
|
|
res, err := http.Get(u.String())
|
|
|
|
if err != nil {
|
|
|
|
return Config{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
2017-05-08 18:25:25 +00:00
|
|
|
err = json.NewDecoder(res.Body).Decode(&configResponse)
|
2017-04-20 09:04:17 +00:00
|
|
|
if err != nil {
|
2017-05-08 18:25:25 +00:00
|
|
|
return configResponse.Data, err
|
2017-04-20 09:04:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if configResponse.Status != "success" {
|
|
|
|
return Config{}, fmt.Errorf("[%s] %s", configResponse.ErrorType, configResponse.Error)
|
|
|
|
}
|
|
|
|
|
|
|
|
return configResponse.Data, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func queryConfig(cmd *cobra.Command, args []string) error {
|
|
|
|
config, err := fetchConfig()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
formatter, found := format.Formatters[viper.GetString("output")]
|
|
|
|
if !found {
|
|
|
|
return errors.New("Unknown output formatter")
|
|
|
|
}
|
|
|
|
|
|
|
|
c := format.Config(config)
|
|
|
|
|
|
|
|
return formatter.FormatConfig(c)
|
|
|
|
}
|