Skip to content

Commit f84dd15

Browse files
authored
Release v0.15.0 (#686)
* Release v0.15.0 * Bump version. * Update CHANGELOG. * Update to Go 1.9 in circle.yml
1 parent deadfef commit f84dd15

File tree

3 files changed

+43
-5
lines changed

3 files changed

+43
-5
lines changed

CHANGELOG.md

Lines changed: 41 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,44 @@
1-
## master
2-
3-
* [CHANGE] `node_cpu` metrics moved from `stats` to `cpu` collector on linux (enabled by default).
1+
## v0.15.0 / 2017-10-06
2+
3+
**Breaking changes**
4+
5+
This release contains major breaking changes to flag handling.
6+
* The flag library has been changed, all flags now require double-dashs. (`-foo` becomes `--foo`).
7+
* The collector selection flag has been replaced by individual boolean flags.
8+
* The `-collector.procfs` and `-collector.sysfs` flags have been renamed to `--path.procfs` and `--path.sysfs` respectively.
9+
10+
The `ntp` collector has been replaced with a new NTP-based check that is designed to expose the state of a localhost NTP server rather than provide the offset of the node to a remote NTP server. By default the `ntp` collector is now locked to localhost. This is to avoid accidental spamming of public internet NTP pools.
11+
12+
Windows support is now removed, the [wmi_exporter](https://github.com/martinlindhe/wmi_exporter) is recommended as a replacement.
13+
14+
* [CHANGE] `node_cpu` metrics moved from `stats` to `cpu` collector on linux (enabled by default). #548
15+
* [CHANGE] Blacklist systemd scope units #534
16+
* [CHANGE] Remove netbsd/arm #551
17+
* [CHANGE] Remove Windows support #549
18+
* [CHANGE] Enable IPVS collector by default #623
19+
* [CHANGE] Switch to kingpin flags #639
20+
* [CHANGE] Replace --collectors.enabled with per-collector flags #640
21+
* [FEATURE] Add ARP collector for Linux #540
22+
* [FEATURE] Add XFS colector for Linux #568, #575
23+
* [FEATURE] Add qdisc collector for Linux #580
24+
* [FEATURE] Add cpufreq stats for Linux #548
25+
* [FEATURE] Add diskstats for Darwin #593
26+
* [FEATURE] Add bcache collector for Linux #597
27+
* [FEATURE] Add parsing /proc/net/snmp6 file for Linux #615
28+
* [FEATURE] Add timex collector for Linux #664
29+
* [ENHANCEMENT] Include overal health status in smartmon.sh example script #546
30+
* [ENHANCEMENT] Include `guest_nice` in CPU collector #554
31+
* [ENHANCEMENT] Add exec_boot_time for freebsd, dragonfly #550
32+
* [ENHANCEMENT] Get full resolution for node_time #555
33+
* [ENHANCEMENT] infiniband: Multiply port data XMIT/RCV metrics by 4 #579
34+
* [ENHANCEMENT] cpu: Metric 'package_throttles_total' is per package. #657
35+
* [BUGFIX] Fix stale device error metrics #533
36+
* [BUGFIX] edac: Fix typo in node_edac_csrow_uncorrectable_errors_total #564
37+
* [BUGFIX] Use int64 throughout the ZFS collector #653
38+
* [BUGFIX] Silently ignore nonexisting bonding_masters file #569
39+
* [BUGFIX] Change raid0 status line regexp for mdadm collector (bug #618) #619
40+
* [BUGFIX] Ignore wifi collector permission errors #646
41+
* [BUGFIX] Always try to return smartmon_device_info metric #663
442

543
## v0.14.0 / 2017-03-21
644

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.14.0
1+
0.15.0

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ machine:
22
environment:
33
DOCKER_IMAGE_NAME: prom/node-exporter
44
QUAY_IMAGE_NAME: quay.io/prometheus/node-exporter
5-
DOCKER_TEST_IMAGE_NAME: quay.io/prometheus/golang-builder:1.8-base
5+
DOCKER_TEST_IMAGE_NAME: quay.io/prometheus/golang-builder:1.9-base
66
REPO_PATH: github.com/prometheus/node_exporter
77
pre:
88
- sudo curl -L -o /usr/bin/docker 'https://s3-external-1.amazonaws.com/circle-downloads/docker-1.9.1-circleci'

0 commit comments

Comments
 (0)