Skip to content

Commit ef7c058

Browse files
authored
Release 1.0.0-rc.0 (prometheus#1614)
Update CHANGELOG/VERSION for 1.0.0-rc.0 release. * Add a note about new https settings to top-level README. * Mark --web.config flag as experimental. Signed-off-by: Ben Kochie <[email protected]>
1 parent c4183f9 commit ef7c058

File tree

4 files changed

+39
-7
lines changed

4 files changed

+39
-7
lines changed

CHANGELOG.md

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
## master / unreleased
22

3+
* [CHANGE]
4+
* [FEATURE]
5+
* [ENHANCEMENT]
6+
* [BUGFIX]
7+
8+
## 1.0.0-rc.0 / 2020-02-20
9+
310
### **Breaking changes**
411

512
* The netdev collector CLI argument `--collector.netdev.ignored-devices` was renamed to `--collector.netdev.device-blacklist` in order to conform with the systemd collector. #1279
@@ -16,32 +23,46 @@
1623

1724
* [ENHANCEMENT] Add `--collector.perf.cpus` to allow setting the CPU list for perf stats.
1825
* [CHANGE] Add `--collector.netdev.device-whitelist`. #1279
26+
* [CHANGE] Ignore iso9600 filesystem on Linux #1355
1927
* [CHANGE] Refactor mdadm collector #1403
2028
* [CHANGE] Add `mountaddr` label to NFS metrics. #1417
21-
* [CHANGE] Don't count empty collectors as success. #...
29+
* [CHANGE] Don't count empty collectors as success. #1613
2230
* [FEATURE] New flag to disable default collectors #1276
31+
* [FEATURE] Add experimental TLS support #1277
32+
* [FEATURE] Add collector for Power Supply Class #1280
2333
* [FEATURE] Add new schedstat collector #1389
34+
* [FEATURE] Add FreeBSD zfs support #1394
2435
* [FEATURE] Add uname support for Darwin and OpenBSD #1433
2536
* [FEATURE] Add new metric node_cpu_info #1489
2637
* [FEATURE] Add new thermal_zone collector #1425
2738
* [FEATURE] Add new cooling_device metrics to thermal zone collector #1445
28-
* [FEATURE] Add new softnet collector #1576
29-
* [FEATURE] Add RAPL collector #1523
30-
* [FEATURE] Add Btrfs collector #1512
3139
* [FEATURE] Add swap usage on darwin #1508
40+
* [FEATURE] Add Btrfs collector #1512
41+
* [FEATURE] Add RAPL collector #1523
42+
* [FEATURE] Add new softnet collector #1576
43+
* [ENHANCEMENT] Log pid when there is a problem reading the process stats #1341
3244
* [ENHANCEMENT] Collect InfiniBand port state and physical state #1357
3345
* [ENHANCEMENT] Include additional XFS runtime statistics. #1423
3446
* [ENHANCEMENT] Report non-fatal collection errors in the exporter metric. #1439
3547
* [ENHANCEMENT] Expose IPVS firewall mark as a label #1455
3648
* [ENHANCEMENT] Add check for systemd version before attempting to query certain metrics. #1413
49+
* [ENHANCEMENT] Add a flag to adjust mount timeout #1486
3750
* [ENHANCEMENT] Add new counters for flush requests in Linux 5.5 #1548
51+
* [ENHANCEMENT] Add metrics and tests for UDP receive and send buffer errors #1534
3852
* [ENHANCEMENT] The sockstat collector now exposes IPv6 statistics in addition to the existing IPv4 support. #1552
39-
* [ENHANCEMENT] Add unix socket support for supervisord collector #262
53+
* [ENHANCEMENT] Add infiniband info metric #1563
54+
* [ENHANCEMENT] Add unix socket support for supervisord collector #1592
55+
* [ENHANCEMENT] Implement loadavg on all BSDs without cgo #1584
56+
* [BUGFIX] Read /proc/net files with a single read syscall #1380
4057
* [BUGFIX] Renamed label `state` to `name` on `node_systemd_service_restart_total`. #1393
4158
* [BUGFIX] Fix netdev nil reference on Darwin #1414
4259
* [BUGFIX] Strip path.rootfs from mountpoint labels #1421
60+
* [BUGFIX] Fix seconds reported by schedstat #1426
4361
* [BUGFIX] Fix empty string in path.rootfs #1464
4462
* [BUGFIX] Fix typo in cpufreq metric names #1510
63+
* [BUGFIX] Read /proc/stat in one syscall #1538
64+
* [BUGFIX] Fix OpenBSD cache memory information #1542
65+
* [BUGFIX] Refactor textfile collector to avoid looping defer #1549
4566
* [BUGFIX] Fix network speed math #1580
4667

4768
## 0.18.1 / 2019-06-04

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,17 @@ To see all available configuration flags:
178178

179179
make test
180180

181+
## TLS endpoint
182+
183+
** EXPERIMENTAL **
184+
185+
The exporter supports TLS via a new web configuration file.
186+
187+
```console
188+
./node_exporter --web.config=web-config.yml
189+
```
190+
191+
See the [https package](https/README.md) for more details.
181192

182193
## Using Docker
183194
The `node_exporter` is designed to monitor the host system. It's not recommended

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.18.1
1+
1.0.0-rc.0

node_exporter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ func main() {
159159
).Default("false").Bool()
160160
configFile = kingpin.Flag(
161161
"web.config",
162-
"Path to config yaml file that can enable TLS or authentication.",
162+
"[EXPERIMENTAL] Path to config yaml file that can enable TLS or authentication.",
163163
).Default("").String()
164164
)
165165

0 commit comments

Comments
 (0)