chore: remove repetitive words (#3804)

Signed-off-by: youngwendy <clonefetch@outlook.com>
This commit is contained in:
youngwendy 2024-04-26 00:54:53 +08:00 committed by GitHub
parent 530bb3f6b3
commit 72b62dbfea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ func configureAddAlertCmd(cc *kingpin.CmdClause) {
addCmd.Arg("labels", "List of labels to be included with the alert").StringsVar(&a.labels)
addCmd.Flag("generator-url", "Set the URL of the source that generated the alert").StringVar(&a.generatorURL)
addCmd.Flag("start", "Set when the alert should start. RFC3339 format 2006-01-02T15:04:05-07:00").StringVar(&a.start)
addCmd.Flag("end", "Set when the alert should should end. RFC3339 format 2006-01-02T15:04:05-07:00").StringVar(&a.end)
addCmd.Flag("end", "Set when the alert should end. RFC3339 format 2006-01-02T15:04:05-07:00").StringVar(&a.end)
addCmd.Flag("annotation", "Set an annotation to be included with the alert").StringsVar(&a.annotations)
addCmd.Action(execWithTimeout(a.addAlert))
}

View File

@ -13,7 +13,7 @@ query string containing the following will additionally show silenced alerts.
http://alertmanager/#/alerts?silenced=true
```
In order to to show _only_ silenced alerts, update the query string to hide active alerts.
In order to show _only_ silenced alerts, update the query string to hide active alerts.
```
http://alertmanager/#/alerts?silenced=true&active=false
```