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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,15 @@
1
+
## 2.32.0-rc.0 / 2021-12-01
2
+
3
+
This list of changes is relative to [v2.32.0-beta.0](https://github.com/prometheus/prometheus/releases/tag/v2.32.0-beta.0), which was a special 2.32 beta release to pre-publish the Prometheus Agent features.
4
+
5
+
*[FEATURE] TSDB: Add support for forwarding exemplars in Agent mode. #9664
6
+
*[FEATURE] UI: Adapt web UI for Prometheus Agent mode. #9851
7
+
*[ENHANCEMENT] Linode SD: Tune API request page sizes. #9779
8
+
*[BUGFIX] TSDB: Fix panic when checkpoint directory is empty. #9687
9
+
*[BUGFIX] TSDB: Fix panic, out of order chunks, and race warning during WAL replay. #9856
10
+
*[BUGFIX] UI: Correctly render links for targets with IPv6 addresses that contain a Zone ID. #9853
11
+
*[BUGFIX] Promtool: Fix checking of `authorization.credentials_file` and `bearer_token_file` fields. #9883
12
+
1
13
## 2.32.0-beta.0 / 2021-11-16
2
14
3
15
This beta release introduces the Prometheus Agent, a new mode of operation for
Copy file name to clipboardExpand all lines: cmd/promtool/main.go
+47-29Lines changed: 47 additions & 29 deletions
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,7 @@ func main() {
73
73
"config-files",
74
74
"The config files to check.",
75
75
).Required().ExistingFiles()
76
+
checkConfigSyntaxOnly:=checkConfigCmd.Flag("syntax-only", "Only check the config file syntax, ignoring file and content validation referenced in the config").Bool()
76
77
77
78
checkWebConfigCmd:=checkCmd.Command("web-config", "Check if the web config files are valid or not.")
0 commit comments