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
2018-07-17 07:50:48 +00:00
import (
2023-03-01 12:47:50 +00:00
"github.com/alecthomas/kingpin/v2"
2018-07-17 07:50:48 +00:00
)
2018-04-13 11:34:16 +00:00
2024-03-21 11:26:46 +00:00
// configureSilenceCmd represents the silence command.
2018-04-24 07:35:15 +00:00
func configureSilenceCmd ( app * kingpin . Application ) {
silenceCmd := app . Command ( "silence" , "Add, expire or view silences. For more information and additional flags see query help" ) . PreAction ( requireAlertManagerURL )
configureSilenceAddCmd ( silenceCmd )
configureSilenceExpireCmd ( silenceCmd )
configureSilenceImportCmd ( silenceCmd )
configureSilenceQueryCmd ( silenceCmd )
configureSilenceUpdateCmd ( silenceCmd )
2018-04-13 11:34:16 +00:00
}