aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md44
-rw-r--r--VERSION2
-rw-r--r--circle.yml2
3 files changed, 43 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1244aa6..db655a7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,44 @@
1## master 1## v0.15.0 / 2017-10-06
2 2
3* [CHANGE] `node_cpu` metrics moved from `stats` to `cpu` collector on linux (enabled by default). 3**Breaking changes**
4
5This 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
10The `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
12Windows 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
4 42
5## v0.14.0 / 2017-03-21 43## v0.14.0 / 2017-03-21
6 44
diff --git a/VERSION b/VERSION
index a803cc2..a551051 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
0.14.0 0.15.0
diff --git a/circle.yml b/circle.yml
index 7c0febe..d240dcb 100644
--- a/circle.yml
+++ b/circle.yml
@@ -2,7 +2,7 @@ machine:
2 environment: 2 environment:
3 DOCKER_IMAGE_NAME: prom/node-exporter 3 DOCKER_IMAGE_NAME: prom/node-exporter
4 QUAY_IMAGE_NAME: quay.io/prometheus/node-exporter 4 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
6 REPO_PATH: github.com/prometheus/node_exporter 6 REPO_PATH: github.com/prometheus/node_exporter
7 pre: 7 pre:
8 - sudo curl -L -o /usr/bin/docker 'https://s3-external-1.amazonaws.com/circle-downloads/docker-1.9.1-circleci' 8 - sudo curl -L -o /usr/bin/docker 'https://s3-external-1.amazonaws.com/circle-downloads/docker-1.9.1-circleci'