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-11 09:17:41 +00:00
|
|
|
"context"
|
2017-04-20 09:04:17 +00:00
|
|
|
"errors"
|
|
|
|
|
2023-03-01 12:47:50 +00:00
|
|
|
kingpin "github.com/alecthomas/kingpin/v2"
|
2018-04-11 09:17:41 +00:00
|
|
|
|
2017-04-20 09:04:17 +00:00
|
|
|
"github.com/prometheus/alertmanager/cli/format"
|
|
|
|
)
|
|
|
|
|
2018-04-24 07:35:15 +00:00
|
|
|
const configHelp = `View current config.
|
2017-04-20 09:04:17 +00:00
|
|
|
|
|
|
|
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
|
2018-04-24 07:35:15 +00:00
|
|
|
- Json: Print entire config object as json
|
|
|
|
`
|
|
|
|
|
2024-03-21 11:26:46 +00:00
|
|
|
// configureConfigCmd represents the config command.
|
2018-04-24 07:35:15 +00:00
|
|
|
func configureConfigCmd(app *kingpin.Application) {
|
2018-08-22 14:41:09 +00:00
|
|
|
configCmd := app.Command("config", configHelp)
|
|
|
|
configCmd.Command("show", configHelp).Default().Action(execWithTimeout(queryConfig)).PreAction(requireAlertManagerURL)
|
|
|
|
configureRoutingCmd(configCmd)
|
2017-04-20 09:04:17 +00:00
|
|
|
}
|
|
|
|
|
2018-07-17 07:50:48 +00:00
|
|
|
func queryConfig(ctx context.Context, _ *kingpin.ParseContext) error {
|
2018-08-22 14:41:09 +00:00
|
|
|
status, err := getRemoteAlertmanagerConfigStatus(ctx, alertmanagerURL)
|
2017-04-20 09:04:17 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-04-13 11:34:16 +00:00
|
|
|
formatter, found := format.Formatters[output]
|
2017-04-20 09:04:17 +00:00
|
|
|
if !found {
|
2017-11-12 16:43:48 +00:00
|
|
|
return errors.New("unknown output formatter")
|
2017-04-20 09:04:17 +00:00
|
|
|
}
|
|
|
|
|
2018-04-11 09:17:41 +00:00
|
|
|
return formatter.FormatConfig(status)
|
2017-04-20 09:04:17 +00:00
|
|
|
}
|