Skip to content

Commit fe20e49

Browse files
author
Christoph Oelmüller
committed
update Changelog for releasing 1.1.0
1 parent ab41250 commit fe20e49

File tree

3 files changed

+60
-4
lines changed

3 files changed

+60
-4
lines changed

CHANGELOG.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,59 @@
1+
## 1.1.0
2+
3+
repeating the breaking changes introduced in 1.1.0rc1:
4+
* [BREAKING] uses the registered exporter port 9114 instead of 9118. If you need to stick to the old port, you can specify the listen port with --web.listen-address
5+
* [BREAKING] commandline flags are now POSIX flags with double dashes --
6+
7+
new changes in 1.1.0:
8+
* [FEATURE] add checksum promu command to Makefile
9+
* [FEATURE] add healthz handler
10+
* [BUGFIX] json parse error if the snapshot json contains failures (#269)
11+
* [BUGFIX] Remove credentials from URL in clusterinfo metrics
12+
* [FEATURE] Add indices_segment_term_vectors_memory_bytes_{primary,total} metrics
13+
* [FEATURE] Add indices_segments_{points,term_vectors,version_map}_memory_in_bytes metrics
14+
* [BUGFIX] Kubernetes yml file fixes
15+
* [FEATURE] Add index_stats_query_cache_caches_total metric
16+
* [FEATURE] Rename query_cache_cache_count metric to query_cache_cache_total
17+
* [BUGFIX] Change type for indices_query_cache_cache_count metric to counter
18+
* [BUGFIX]/ [BREAKING] Add _total prefix to indices_warmer_time_seconds metric
19+
* [FEATURE] Add indices_warmer_{time_seconds,total} metrics
20+
* [BUGFIX] exporter doesn't exit 1 if port is already in use (#241)
21+
* [BUGFIX] parse clusterinfo.build_date as string, not time.Time
22+
* [BUGFIX] Various Documentation Fixes
23+
* [FEATURE] add node_roles metric (#207)
24+
* [FEATURE] Extend nodes metrics. added indices.merges.current_size
25+
build fix: remove unnecessary conversion
26+
* [FEATURE] Extend nodes metrics. added overhead of circuit breakers
27+
* [BUGFIX] fix nodes metrics name indices.query_cache_miss_count, indices.request_cache_miss_count
28+
* [FEATURE] Extend nodes search metrics. added scroll_total, scroll_time
29+
* [FEATURE] Extend indices.indexing nodes metrics. added is_throttled, throttle_time
30+
* [FEATURE]/ [BUGFIX] #212 remove misleading metric
31+
32+
## 1.1.0rc1
33+
34+
* [BREAKING] uses the registered exporter port 9114 instead of 9118. If you need to stick to the old port, you can specify the listen port with --web.listen-address
35+
* [BREAKING] commandline flags are now POSIX flags with double dashes --
36+
* [FEATURE] new collector for snapshot metrics
37+
* [FEATURE] added os memory stats metrics
38+
* [FEATURE] enable querying ES via proxy
39+
* [FEATURE] new collector for cluster settings
40+
* [FEATURE] new collector for indices settings
41+
* [FEATURE] cluster info collector. The collector periodically queries the / endpoints and provides the other collectors with a semi up-to-date cluster label
42+
*
43+
* [FEATURE]/ [BUGFIX] grafana dashboard improvements and fixes
44+
* [BUGFIX] Fixed createTLSConfig function. Return full tls configuration when ca, crt, key and insecure flag are set
45+
*
46+
* [INTERNAL] added code linting to build pipeline
47+
48+
## 1.0.4rc1
49+
50+
* [DOCUMENTATION] documentation updates
51+
* [FEATURE] add more index metrics
52+
* [FEATURE] add filesystem metrics
53+
* [FEATURE] add jvm buffer pool metrics
54+
* [FEATURE] add support for using the exporter behind reverse proxy (URL-prefixing)
55+
* [ENHANCEMENT] add linting to build chain and make project lint clean
56+
157
## 1.0.3rc1
258

359
* [BUGFIX] update prometheus alerting rule example to v2 format

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ https://github.com/justwatchcom/elasticsearch_exporter/releases
1212
#### Docker
1313

1414
```bash
15-
docker pull justwatch/elasticsearch_exporter:1.0.2
16-
docker run --rm -p 9114:9114 justwatch/elasticsearch_exporter:1.0.2
15+
docker pull justwatch/elasticsearch_exporter:1.1.0
16+
docker run --rm -p 9114:9114 justwatch/elasticsearch_exporter:1.1.0
1717
```
1818

1919
Example `docker-compose.yml`:
2020

2121
```yaml
2222
elasticsearch_exporter:
23-
image: justwatch/elasticsearch_exporter:1.0.2
23+
image: justwatch/elasticsearch_exporter:1.1.0
2424
command:
2525
- '-es.uri=http://elasticsearch:9200'
2626
restart: always

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.0rc1
1+
1.1.0

0 commit comments

Comments
 (0)