File tree 3 files changed +5
-14
lines changed
3 files changed +5
-14
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ It collects all relevant metrics and makes them available to Prometheus via the
27
27
28
28
| Elasticsearch | Plugin | Release date |
29
29
| -------------- | -------------- | ------------ |
30
+ | 7.5.1 | 7.5.1.0 | Jan 21, 2020 |
30
31
| 7.5.0 | 7.5.0.0 | Jan 16, 2020 |
31
32
| 7.4.2 | 7.4.2.0 | Jan 13, 2020 |
32
33
| 7.4.1 | 7.4.1.0 | Jan 13, 2020 |
@@ -143,7 +144,7 @@ It collects all relevant metrics and makes them available to Prometheus via the
143
144
## Install
144
145
145
146
- Since Elasticsearch 7.0.0 :
146
- ` ./bin/elasticsearch-plugin install -b https://github.com/vvanholl/elasticsearch-prometheus-exporter/releases/download/7.5.0 .0/prometheus-exporter-7.5.0 .0.zip `
147
+ ` ./bin/elasticsearch-plugin install -b https://github.com/vvanholl/elasticsearch-prometheus-exporter/releases/download/7.5.1 .0/prometheus-exporter-7.5.1 .0.zip `
147
148
148
149
- Since Elasticsearch 6.0.0 :
149
150
` ./bin/elasticsearch-plugin install -b https://github.com/vvanholl/elasticsearch-prometheus-exporter/releases/download/6.8.0.0/prometheus-exporter-6.8.0.0.zip `
Original file line number Diff line number Diff line change @@ -36,18 +36,8 @@ apply plugin: 'java'
36
36
apply plugin : ' idea'
37
37
apply plugin : ' elasticsearch.esplugin'
38
38
39
- // ------ TODO(lukas-vlcek): Hack needed for ES 7.5.0 release ------
40
- // Remove this before release 7.5.1
41
- // See https://github.com/elastic/elasticsearch/issues/49787#issuecomment-562704640
42
- configurations. whenObjectAdded { c ->
43
- if (c. name == ' elasticsearch_7.5.0_integ_test_zip_null' ) {
44
- project. dependencies. add(' elasticsearch_7.5.0_integ_test_zip_null' , ' org.elasticsearch.distribution.integ-test-zip:elasticsearch:7.5.0@zip' )
45
- }
46
- }
47
- // ------
48
-
49
39
// Uncomment if you want to use: System.out.println("Emergency!");
50
- // Logs are found in build/cluster/integTestCluster*/cwd/run.log
40
+ // Logs are found in build/testcluster/integTest-*/logs/ folder.
51
41
// forbiddenApis {
52
42
// ignoreFailures = true
53
43
// }
@@ -85,7 +75,7 @@ repositories {
85
75
ext {
86
76
versions = [
87
77
" elasticsearch" : es_version,
88
- " prometheus" : " 0.6 .0" ,
78
+ " prometheus" : " 0.8 .0" ,
89
79
" log4j" : " 2.11.1" ,
90
80
" junit" : " 4.12"
91
81
]
Original file line number Diff line number Diff line change 1
1
group = org.elasticsearch.plugin.prometheus
2
2
3
- version = 7.5.0.1-SNAPSHOT
3
+ version = 7.5.1.0
4
4
5
5
pluginName = prometheus-exporter
6
6
pluginClassname = org.elasticsearch.plugin.prometheus.PrometheusExporterPlugin
You can’t perform that action at this time.
0 commit comments