File tree 4 files changed +9
-9
lines changed
4 files changed +9
-9
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.3.1 | 7.3.1.0 | Sep 18, 2019 |
30
31
| 7.3.0 | 7.3.0.0 | Sep 17, 2019 |
31
32
| 7.2.1 | 7.2.1.0 | Jul 31, 2019 |
32
33
| 7.2.0 | 7.2.0.0 | Jul 12, 2019 |
@@ -134,7 +135,7 @@ It collects all relevant metrics and makes them available to Prometheus via the
134
135
## Install
135
136
136
137
- Since Elasticsearch 7.0.0 :
137
- ` ./bin/elasticsearch-plugin install -b https://github.com/vvanholl/elasticsearch-prometheus-exporter/releases/download/7.3.0 .0/prometheus-exporter-7.3.0 .0.zip `
138
+ ` ./bin/elasticsearch-plugin install -b https://github.com/vvanholl/elasticsearch-prometheus-exporter/releases/download/7.3.1 .0/prometheus-exporter-7.3.1 .0.zip `
138
139
139
140
- Since Elasticsearch 6.0.0 :
140
141
` ./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 @@ -155,10 +155,9 @@ task release() {
155
155
}
156
156
}
157
157
158
- // Fix for https://github.com/elastic/elasticsearch/issues/45073
159
- // TODO(lukas-vlcek): Should be removed for ES v7.3.1 and later.
160
- configurations. all {
161
- resolutionStrategy. dependencySubstitution {
162
- substitute project(' :rest-api-spec' ) with module (" org.elasticsearch:rest-api-spec:${ versions.elasticsearch} " )
163
- }
158
+ // Fix for https://github.com/elastic/elasticsearch/issues/45891
159
+ // TODO(lukas-vlcek): Should be removed for ES v7.3.2 and later.
160
+ configurations. restSpec. withDependencies { dependencies ->
161
+ dependencies. clear()
162
+ dependencies. add(project. dependencies. create(" org.elasticsearch:rest-api-spec:${ es_version} " ))
164
163
}
Original file line number Diff line number Diff line change 1
1
group = org.elasticsearch.plugin.prometheus
2
2
3
- version = 7.3.0 .0
3
+ version = 7.3.1 .0
4
4
5
5
pluginName = prometheus-exporter
6
6
pluginClassname = org.elasticsearch.plugin.prometheus.PrometheusExporterPlugin
Original file line number Diff line number Diff line change 1
1
rootProject. name = " prometheus-exporter"
2
2
3
3
// Fix for https://github.com/elastic/elasticsearch/issues/45073
4
- // TODO(lukas-vlcek): Should be removed for ES v7.3.1 and later.
4
+ // TODO(lukas-vlcek): Should be removed for ES v7.3.2 and later.
5
5
include ' :rest-api-spec'
You can’t perform that action at this time.
0 commit comments