You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
app.Flag("timeout", "Timeout for the executed command").Default("30s").DurationVar(&timeout)
156
157
app.Flag("http.config.file", "HTTP client configuration file for amtool to connect to Alertmanager.").PlaceHolder("<filename>").ExistingFileVar(&httpConfigFile)
157
158
app.Flag("version-check", "Check alertmanager version. Use --no-version-check to disable.").Default("true").BoolVar(&versionCheck)
158
-
app.Flag("enable-feature", fmt.Sprintf("Experimental features to enable. The flag can be repeated to enable multiple features. Valid options: %s", strings.Join(featurecontrol.AllowedFlags, ", "))).Default("").StringVar(&featureFlags)
159
+
app.Flag("enable-feature", fmt.Sprintf("Experimental features to enable, comma separated. Valid options: %s", strings.Join(featurecontrol.AllowedFlags, ", "))).Default("").StringVar(&featureFlags)
Copy file name to clipboardexpand all lines: cmd/alertmanager/main.go
+1-1
Original file line number
Diff line number
Diff line change
@@ -176,7 +176,7 @@ func run() int {
176
176
tlsConfigFile=kingpin.Flag("cluster.tls-config", "[EXPERIMENTAL] Path to config yaml file that can enable mutual TLS within the gossip protocol.").Default("").String()
177
177
allowInsecureAdvertise=kingpin.Flag("cluster.allow-insecure-public-advertise-address-discovery", "[EXPERIMENTAL] Allow alertmanager to discover and listen on a public IP address.").Bool()
178
178
label=kingpin.Flag("cluster.label", "The cluster label is an optional string to include on each packet and stream. It uniquely identifies the cluster and prevents cross-communication issues when sending gossip messages.").Default("").String()
179
-
featureFlags=kingpin.Flag("enable-feature", fmt.Sprintf("Experimental features to enable. The flag can be repeated to enable multiple features. Valid options: %s", strings.Join(featurecontrol.AllowedFlags, ", "))).Default("").String()
179
+
featureFlags=kingpin.Flag("enable-feature", fmt.Sprintf("Comma-separated experimental features to enable. Valid options: %s", strings.Join(featurecontrol.AllowedFlags, ", "))).Default("").String()
Copy file name to clipboardexpand all lines: docs/configuration.md
+22-17
Original file line number
Diff line number
Diff line change
@@ -309,6 +309,7 @@ name: <string>
309
309
time_intervals:
310
310
[ - <time_interval_spec> ... ]
311
311
```
312
+
312
313
#### `<time_interval_spec>`
313
314
314
315
A `time_interval_spec` contains the actual definition for an interval of time. The syntax
@@ -339,9 +340,11 @@ make it easy to represent times that start/end on hour boundaries.
339
340
For example, `start_time: '17:00'` and `end_time: '24:00'` will begin at 17:00 and finish
340
341
immediately before 24:00. They are specified like so:
341
342
342
-
times:
343
-
- start_time: HH:MM
344
-
end_time: HH:MM
343
+
```yaml
344
+
times:
345
+
- start_time: HH:MM
346
+
end_time: HH:MM
347
+
```
345
348
346
349
`weekday_range`: A list of days of the week, where the week begins on Sunday and ends on Saturday.
347
350
Days should be specified by name (e.g. 'Sunday'). For convenience, ranges are also accepted
@@ -367,10 +370,12 @@ example, `'Australia/Sydney'`. The location provides the time zone for the time
367
370
interval. For example, a time interval with a location of `'Australia/Sydney'` that
368
371
contained something like:
369
372
370
-
times:
371
-
- start_time: 09:00
372
-
end_time: 17:00
373
-
weekdays: ['monday:friday']
373
+
```yaml
374
+
times:
375
+
- start_time: 09:00
376
+
end_time: 17:00
377
+
weekdays: ['monday:friday']
378
+
```
374
379
375
380
would include any time that fell between the hours of 9:00AM and 5:00PM, between Monday
376
381
and Friday, using the local time in Sydney, Australia.
@@ -437,7 +442,6 @@ source_matchers:
437
442
# Labels that must have an equal value in the source and target
438
443
# alert for the inhibition to take effect.
439
444
[ equal: '[' <labelname>, ... ']' ]
440
-
441
445
```
442
446
443
447
## Label matchers
@@ -465,7 +469,7 @@ Alertmanager runs in a special mode called fallback mode as its default mode. As
465
469
In fallback mode, configurations are first parsed as UTF-8 matchers, and if incompatible with the UTF-8 parser, are then parsed as classic matchers. If your Alertmanager configuration contains matchers that are incompatible with the UTF-8 parser, Alertmanager will parse them as classic matchers and log a warning. This warning also includes a suggestion on how to change the matchers from classic matchers to UTF-8 matchers. For example:
466
470
467
471
```
468
-
ts=2024-02-11T10:00:00Z caller=parse.go:176 level=warn msg="Alertmanager is moving to a new parser for labels and matchers, and this input is incompatible. Alertmanager has instead parsed the input using the classic matchers parser as a fallback. To make this input compatible with the UTF-8 matchers parser please make sure all regular expressions and values are double-quoted. If you are still seeing this message please open an issue." input="foo=" origin=config err="end of input: expected label value" suggestion="foo=\"\""
472
+
ts=2024-02-11T10:00:00Z caller=parse.go:176 level=warn msg="Alertmanager is moving to a new parser for labels and matchers, and this input is incompatible. Alertmanager has instead parsed the input using the classic matchers parser as a fallback. To make this input compatible with the UTF-8 matchers parser please make sure all regular expressions and values are double-quoted and backslashes are escaped. If you are still seeing this message please open an issue." input="foo=" origin=config err="end of input: expected label value" suggestion="foo=\"\""
469
473
```
470
474
471
475
Here the matcher `foo=` can be made into a valid UTF-8 matcher by double quoting the right hand side of the expression to give `foo=""`. These two matchers are equivalent, however with UTF-8 matchers the right hand side of the matcher is a required field.
@@ -482,7 +486,7 @@ Any occurrences of disagreement should be looked at on a case by case basis as d
482
486
483
487
In UTF-8 strict mode, Alertmanager disables support for classic matchers:
@@ -513,7 +517,7 @@ Just like Alertmanager server, `amtool` will log a warning if the configuration
513
517
```
514
518
amtool check-config config.yml
515
519
Checking 'config.yml'
516
-
level=warn msg="Alertmanager is moving to a new parser for labels and matchers, and this input is incompatible. Alertmanager has instead parsed the input using the classic matchers parser as a fallback. To make this input compatible with the UTF-8 matchers parser please make sure all regular expressions and values are double-quoted. If you are still seeing this message please open an issue." input="foo=" origin=config err="end of input: expected label value" suggestion="foo=\"\""
520
+
level=warn msg="Alertmanager is moving to a new parser for labels and matchers, and this input is incompatible. Alertmanager has instead parsed the input using the classic matchers parser as a fallback. To make this input compatible with the UTF-8 matchers parser please make sure all regular expressions and values are double-quoted and backslashes are escaped. If you are still seeing this message please open an issue." input="foo=" origin=config err="end of input: expected label value" suggestion="foo=\"\""
517
521
level=warn msg="Matchers input has disagreement" input="qux=\"\\xf0\\x9f\\x99\\x82\"\n" origin=config
518
522
SUCCESS
519
523
Found:
@@ -571,9 +575,9 @@ A UTF-8 matcher consists of three tokens:
571
575
- One of `=`, `!=`, `=~`, or `!~`. `=` means equals, `!=` means not equal, `=~` means matches the regular expression and `!~` means doesn't match the regular expression.
572
576
- An unquoted literal or a double-quoted string for the regular expression or label value.
573
577
574
-
Unquoted literals can contain all UTF-8 characters other than the reserved characters. These are whitespace, and all characters in ``` { } ! = ~ , \ " ' ` ```. For example, `foo`, `[a-zA-Z]+`, and `Προμηθεύς` (Prometheus in Greek) are all examples of valid unquoted literals. However, `foo!` is not a valid literal as `!` is a reserved character.
578
+
Unquoted literals can contain all UTF-8 characters other than the reserved characters. The reserved characters include whitespace and all characters in ``` { } ! = ~ , \ " ' ` ```. For example, `foo`, `[a-zA-Z]+`, and `Προμηθεύς` (Prometheus in Greek) are all examples of valid unquoted literals. However, `foo!` is not a valid literal as `!` is a reserved character.
575
579
576
-
Double-quoted strings can contain all UTF-8 characters. Unlike unquoted literals, there are no reserved characters. You can even use UTF-8 code points. For example, `"foo!"`, `"bar,baz"`, `"\"baz qux\""` and `"\xf0\x9f\x99\x82"` are valid double-quoted strings.
580
+
Double-quoted strings can contain all UTF-8 characters. Unlike unquoted literals, there are no reserved characters. However, literal double quotes and backslashes must be escaped with a single backslash. For example, to match the regular expression `\d+` the backslash must be escaped `"\\d+"`. This is because double-quoted strings follow the same rules as Go's [string literals](https://go.dev/ref/spec#String_literals). Double-quoted strings also support UTF-8 code points. For example, `"foo!"`, `"bar,baz"`, `"\"baz qux\""` and `"\xf0\x9f\x99\x82"`.
577
581
578
582
#### Classic matchers
579
583
@@ -715,7 +719,7 @@ pagerduty_configs:
715
719
[ - <pagerduty_config>, ... ]
716
720
pushover_configs:
717
721
[ - <pushover_config>, ... ]
718
-
rocket_configs:
722
+
rocketchat_configs:
719
723
[ - <rocketchat_config>, ... ]
720
724
slack_configs:
721
725
[ - <slack_config>, ... ]
@@ -1347,15 +1351,17 @@ The fields are documented in the [Rocketchat API documentation](https://develope
1347
1351
```
1348
1352
1349
1353
#### `<rocketchat_action_config>`
1354
+
1350
1355
The fields are documented in the [Rocketchat API api models](https://github.com/RocketChat/Rocket.Chat.Go.SDK/blob/master/models/message.go).
1351
1356
1352
1357
```yaml
1353
1358
[ type: <tmpl_string> | ignored, only "button" is supported ]
1354
1359
[ text: <tmpl_string> ]
1355
1360
[ url: <tmpl_string> ]
1356
1361
[ msg: <tmpl_string> ]
1362
+
```
1357
1363
1358
-
### `<slack_config>`
1364
+
#### `<slack_config>`
1359
1365
1360
1366
Slack notifications can be sent via [Incoming webhooks](https://api.slack.com/messaging/webhooks) or [Bot tokens](https://api.slack.com/authentication/token-types).
1361
1367
@@ -1600,7 +1606,6 @@ url_file: <filepath>
1600
1606
# no timeout should be applied.
1601
1607
# NOTE: This will have no effect if set higher than the group_interval.
0 commit comments