mirror of
https://github.com/prometheus/alertmanager
synced 2025-01-01 02:52:06 +00:00
3aab66ec3a
* Implement alertmanager cli tool 'amtool' The primary goal of an alertmanager tool is to provide a cli interface for the prometheus alertmanager. My vision for this tool has two parts: - Silence management (query, add, delete) - Alert management (query, maybe more in future?) Resolves: #567
18 lines
287 B
Go
18 lines
287 B
Go
package main
|
|
|
|
import (
|
|
"github.com/spf13/cobra/doc"
|
|
|
|
"github.com/prometheus/alertmanager/cli"
|
|
)
|
|
|
|
func main() {
|
|
cli.RootCmd.GenBashCompletionFile("amtool_completion.sh")
|
|
header := &doc.GenManHeader{
|
|
Title: "amtool",
|
|
Section: "1",
|
|
}
|
|
|
|
doc.GenManTree(cli.RootCmd, header, ".")
|
|
}
|