Skip to content

Commit c5f20b8

Browse files
Merge pull request #4299 from prometheus/grobinson/v0.28.1
Prepare Release 0.28.1
2 parents 4ce04fb + 53ba378 commit c5f20b8

25 files changed

+202
-65
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
runs-on: ubuntu-latest
2222
strategy:
2323
matrix:
24-
thread: [ 0, 1, 2 ]
24+
thread: [0, 1, 2]
2525
steps:
2626
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
27-
- uses: prometheus/promci@3cb0c3871f223bd5ce1226995bd52ffb314798b6 # v0.1.0
27+
- uses: prometheus/promci@c3c93a50d581b928af720f0134b2b2dad32a6c41 # v0.4.6
2828
- uses: ./.github/promci/actions/build
2929
with:
3030
promu_opts: "-p linux/amd64 -p windows/amd64 -p linux/arm64 -p darwin/amd64 -p darwin/arm64 -p linux/386"
@@ -40,7 +40,7 @@ jobs:
4040
image: quay.io/prometheus/golang-builder:1.23-base
4141
steps:
4242
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
43-
- uses: prometheus/promci@3cb0c3871f223bd5ce1226995bd52ffb314798b6 # v0.1.0
43+
- uses: prometheus/promci@c3c93a50d581b928af720f0134b2b2dad32a6c41 # v0.4.6
4444
- uses: ./.github/promci/actions/setup_environment
4545
- run: make
4646
- run: git diff --exit-code

.github/workflows/publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
thread: [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 ]
17+
thread: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
1818
needs: ci
1919
steps:
2020
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
21-
- uses: prometheus/promci@3cb0c3871f223bd5ce1226995bd52ffb314798b6 # v0.1.0
21+
- uses: prometheus/promci@c3c93a50d581b928af720f0134b2b2dad32a6c41 # v0.4.6
2222
- uses: ./.github/promci/actions/build
2323
with:
2424
parallelism: 12
@@ -29,7 +29,7 @@ jobs:
2929
needs: build
3030
steps:
3131
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
32-
- uses: prometheus/promci@3cb0c3871f223bd5ce1226995bd52ffb314798b6 # v0.1.0
32+
- uses: prometheus/promci@c3c93a50d581b928af720f0134b2b2dad32a6c41 # v0.4.6
3333
- uses: ./.github/promci/actions/publish_main
3434
with:
3535
docker_hub_login: ${{ secrets.docker_hub_login }}

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
thread: [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 ]
17+
thread: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
1818
needs: ci
1919
steps:
2020
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
21-
- uses: prometheus/promci@3cb0c3871f223bd5ce1226995bd52ffb314798b6 # v0.1.0
21+
- uses: prometheus/promci@c3c93a50d581b928af720f0134b2b2dad32a6c41 # v0.4.6
2222
- uses: ./.github/promci/actions/build
2323
with:
2424
parallelism: 12
@@ -29,7 +29,7 @@ jobs:
2929
needs: build
3030
steps:
3131
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
32-
- uses: prometheus/promci@3cb0c3871f223bd5ce1226995bd52ffb314798b6 # v0.1.0
32+
- uses: prometheus/promci@c3c93a50d581b928af720f0134b2b2dad32a6c41 # v0.4.6
3333
- uses: ./.github/promci/actions/publish_release
3434
with:
3535
docker_hub_login: ${{ secrets.docker_hub_login }}

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 0.28.1 / 2025-03-07
2+
3+
* [ENHANCEMENT] Improved performance of inhibition rules when using Equal labels. #4119
4+
* [ENHANCEMENT] Improve the documentation on escaping in UTF-8 matchers. #4157
5+
* [ENHANCEMENT] Update alertmanager_config_hash metric help to document the hash is not cryptographically strong. #4157
6+
* [BUGFIX] Fix panic in amtool when using `--verbose`. #4218
7+
* [BUGFIX] Fix templating of channel field for Rocket.Chat. #4220
8+
* [BUGFIX] Fix `rocketchat_configs` written as `rocket_configs` in docs. #4217
9+
* [BUGFIX] Fix usage for `--enable-feature` flag. #4214
10+
* [BUGFIX] Trim whitespace from OpsGenie API Key. #4195
11+
* [BUGFIX] Fix Jira project template not rendered when searching for existing issues. #4291
12+
* [BUGFIX] Fix subtle bug in JSON/YAML encoding of inhibition rules that would cause Equal labels to be omitted. #4292
13+
* [BUGFIX] Fix header for `slack_configs` in docs. #4247
14+
* [BUGFIX] Fix weight and wrap of Microsoft Teams notifications. #4222
15+
* [BUGFIX] Fix format of YAML examples in configuration.md. #4207
16+
117
## 0.28.0 / 2025-01-15
218

319
* [CHANGE] Templating errors in the SNS integration now return an error. #3531 #3879

cli/root.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ var (
5252
func initMatchersCompat(_ *kingpin.ParseContext) error {
5353
promslogConfig := &promslog.Config{Writer: os.Stdout}
5454
if verbose {
55+
promslogConfig.Level = &promslog.AllowedLevel{}
5556
_ = promslogConfig.Level.Set("debug")
5657
}
5758
logger := promslog.New(promslogConfig)
@@ -155,7 +156,7 @@ func Execute() {
155156
app.Flag("timeout", "Timeout for the executed command").Default("30s").DurationVar(&timeout)
156157
app.Flag("http.config.file", "HTTP client configuration file for amtool to connect to Alertmanager.").PlaceHolder("<filename>").ExistingFileVar(&httpConfigFile)
157158
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)
159160

160161
app.Version(version.Print("amtool"))
161162
app.GetFlag("help").Short('h')

cmd/alertmanager/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ func run() int {
176176
tlsConfigFile = kingpin.Flag("cluster.tls-config", "[EXPERIMENTAL] Path to config yaml file that can enable mutual TLS within the gossip protocol.").Default("").String()
177177
allowInsecureAdvertise = kingpin.Flag("cluster.allow-insecure-public-advertise-address-discovery", "[EXPERIMENTAL] Allow alertmanager to discover and listen on a public IP address.").Bool()
178178
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()
180180
)
181181

182182
promslogflag.AddFlags(kingpin.CommandLine, &promslogConfig)

config/config.go

+2-7
Original file line numberDiff line numberDiff line change
@@ -968,11 +968,7 @@ type InhibitRule struct {
968968
TargetMatchers Matchers `yaml:"target_matchers,omitempty" json:"target_matchers,omitempty"`
969969
// A set of labels that must be equal between the source and target alert
970970
// for them to be a match.
971-
Equal model.LabelNames `yaml:"-" json:"-"`
972-
// EqualStr allows us to validate the label depending on whether UTF-8 is
973-
// enabled or disabled. It should be removed when Alertmanager is updated
974-
// to use the validation modes in recent versions of prometheus/common.
975-
EqualStr []string `yaml:"equal,omitempty" json:"equal,omitempty"`
971+
Equal []string `yaml:"equal,omitempty" json:"equal,omitempty"`
976972
}
977973

978974
// UnmarshalYAML implements the yaml.Unmarshaler interface for InhibitRule.
@@ -994,12 +990,11 @@ func (r *InhibitRule) UnmarshalYAML(unmarshal func(interface{}) error) error {
994990
}
995991
}
996992

997-
for _, l := range r.EqualStr {
993+
for _, l := range r.Equal {
998994
labelName := model.LabelName(l)
999995
if !compat.IsValidLabelName(labelName) {
1000996
return fmt.Errorf("invalid label name %q in equal list", l)
1001997
}
1002-
r.Equal = append(r.Equal, labelName)
1003998
}
1004999

10051000
return nil

config/config_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -1461,7 +1461,7 @@ func TestInhibitRuleEqual(t *testing.T) {
14611461
// The inhibition rule should have the expected equal labels.
14621462
require.Len(t, c.InhibitRules, 1)
14631463
r := c.InhibitRules[0]
1464-
require.Equal(t, model.LabelNames{"qux", "corge"}, r.Equal)
1464+
require.Equal(t, []string{"qux", "corge"}, r.Equal)
14651465

14661466
// Should not be able to load configuration with UTF-8 in equals list.
14671467
_, err = LoadFile("testdata/conf.inhibit-equal-utf8.yml")
@@ -1484,7 +1484,7 @@ func TestInhibitRuleEqual(t *testing.T) {
14841484
// The inhibition rule should have the expected equal labels.
14851485
require.Len(t, c.InhibitRules, 1)
14861486
r = c.InhibitRules[0]
1487-
require.Equal(t, model.LabelNames{"qux", "corge"}, r.Equal)
1487+
require.Equal(t, []string{"qux", "corge"}, r.Equal)
14881488

14891489
// Should also be able to load configuration with UTF-8 in equals list.
14901490
c, err = LoadFile("testdata/conf.inhibit-equal-utf8.yml")
@@ -1493,5 +1493,5 @@ func TestInhibitRuleEqual(t *testing.T) {
14931493
// The inhibition rule should have the expected equal labels.
14941494
require.Len(t, c.InhibitRules, 1)
14951495
r = c.InhibitRules[0]
1496-
require.Equal(t, model.LabelNames{"qux🙂", "corge"}, r.Equal)
1496+
require.Equal(t, []string{"qux🙂", "corge"}, r.Equal)
14971497
}

config/coordinator.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func NewCoordinator(configFilePath string, r prometheus.Registerer, l *slog.Logg
5555
func (c *Coordinator) registerMetrics(r prometheus.Registerer) {
5656
configHash := prometheus.NewGauge(prometheus.GaugeOpts{
5757
Name: "alertmanager_config_hash",
58-
Help: "Hash of the currently loaded alertmanager configuration.",
58+
Help: "Hash of the currently loaded alertmanager configuration. Note that this is not a cryptographically strong hash.",
5959
})
6060
configSuccess := prometheus.NewGauge(prometheus.GaugeOpts{
6161
Name: "alertmanager_config_last_reload_successful",

config/notifiers.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424

2525
commoncfg "github.com/prometheus/common/config"
2626
"github.com/prometheus/common/model"
27-
"github.com/prometheus/common/sigv4"
27+
"github.com/prometheus/sigv4"
2828
)
2929

3030
var (

docs/configuration.md

+22-17
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,7 @@ name: <string>
309309
time_intervals:
310310
[ - <time_interval_spec> ... ]
311311
```
312+
312313
#### `<time_interval_spec>`
313314

314315
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.
339340
For example, `start_time: '17:00'` and `end_time: '24:00'` will begin at 17:00 and finish
340341
immediately before 24:00. They are specified like so:
341342

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+
```
345348

346349
`weekday_range`: A list of days of the week, where the week begins on Sunday and ends on Saturday.
347350
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
367370
interval. For example, a time interval with a location of `'Australia/Sydney'` that
368371
contained something like:
369372

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+
```
374379

375380
would include any time that fell between the hours of 9:00AM and 5:00PM, between Monday
376381
and Friday, using the local time in Sydney, Australia.
@@ -437,7 +442,6 @@ source_matchers:
437442
# Labels that must have an equal value in the source and target
438443
# alert for the inhibition to take effect.
439444
[ equal: '[' <labelname>, ... ']' ]
440-
441445
```
442446

443447
## Label matchers
@@ -465,7 +469,7 @@ Alertmanager runs in a special mode called fallback mode as its default mode. As
465469
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:
466470

467471
```
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=\"\""
469473
```
470474

471475
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
482486

483487
In UTF-8 strict mode, Alertmanager disables support for classic matchers:
484488

485-
```
489+
```bash
486490
alertmanager --config.file=config.yml --enable-feature="utf8-strict-mode"
487491
```
488492

@@ -498,7 +502,7 @@ UTF-8 strict mode will be the default mode of Alertmanager at the end of the tra
498502

499503
Classic mode is equivalent to Alertmanager versions 0.26.0 and older:
500504

501-
```
505+
```bash
502506
alertmanager --config.file=config.yml --enable-feature="classic-mode"
503507
```
504508

@@ -513,7 +517,7 @@ Just like Alertmanager server, `amtool` will log a warning if the configuration
513517
```
514518
amtool check-config config.yml
515519
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=\"\""
517521
level=warn msg="Matchers input has disagreement" input="qux=\"\\xf0\\x9f\\x99\\x82\"\n" origin=config
518522
SUCCESS
519523
Found:
@@ -571,9 +575,9 @@ A UTF-8 matcher consists of three tokens:
571575
- One of `=`, `!=`, `=~`, or `!~`. `=` means equals, `!=` means not equal, `=~` means matches the regular expression and `!~` means doesn't match the regular expression.
572576
- An unquoted literal or a double-quoted string for the regular expression or label value.
573577

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.
575579

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"`.
577581

578582
#### Classic matchers
579583

@@ -715,7 +719,7 @@ pagerduty_configs:
715719
[ - <pagerduty_config>, ... ]
716720
pushover_configs:
717721
[ - <pushover_config>, ... ]
718-
rocket_configs:
722+
rocketchat_configs:
719723
[ - <rocketchat_config>, ... ]
720724
slack_configs:
721725
[ - <slack_config>, ... ]
@@ -1347,15 +1351,17 @@ The fields are documented in the [Rocketchat API documentation](https://develope
13471351
```
13481352

13491353
#### `<rocketchat_action_config>`
1354+
13501355
The fields are documented in the [Rocketchat API api models](https://github.com/RocketChat/Rocket.Chat.Go.SDK/blob/master/models/message.go).
13511356

13521357
```yaml
13531358
[ type: <tmpl_string> | ignored, only "button" is supported ]
13541359
[ text: <tmpl_string> ]
13551360
[ url: <tmpl_string> ]
13561361
[ msg: <tmpl_string> ]
1362+
```
13571363

1358-
### `<slack_config>`
1364+
#### `<slack_config>`
13591365

13601366
Slack notifications can be sent via [Incoming webhooks](https://api.slack.com/messaging/webhooks) or [Bot tokens](https://api.slack.com/authentication/token-types).
13611367

@@ -1600,7 +1606,6 @@ url_file: <filepath>
16001606
# no timeout should be applied.
16011607
# NOTE: This will have no effect if set higher than the group_interval.
16021608
[ timeout: <duration> | default = 0s ]
1603-
16041609
```
16051610

16061611
The Alertmanager

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ require (
3232
github.com/prometheus/client_golang v1.20.5
3333
github.com/prometheus/common v0.61.0
3434
github.com/prometheus/common/assets v0.2.0
35-
github.com/prometheus/common/sigv4 v0.1.0
3635
github.com/prometheus/exporter-toolkit v0.13.2
36+
github.com/prometheus/sigv4 v0.1.0
3737
github.com/rs/cors v1.11.1
3838
github.com/shurcooL/httpfs v0.0.0-20230704072500-f1e31cf0ba5c
3939
github.com/shurcooL/vfsgen v0.0.0-20230704071429-0000e147ea92

0 commit comments

Comments
 (0)