Skip to content

Commit e1587e1

Browse files
authored
Merge pull request #281 from vvanholl/es781
Upgrade ES to version 7.8.1 and release version 7.8.1.0
2 parents c6029e8 + 1eeedda commit e1587e1

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ It collects all relevant metrics and makes them available to Prometheus via the
2727

2828
| Elasticsearch | Plugin | Release date |
2929
| -------------- | -------------- | ------------ |
30+
| 7.8.1 | 7.8.1.0 | Aug 10, 2020 |
3031
| 7.8.0 | 7.8.0.0 | Jun 22, 2020 |
3132
| 7.7.1 | 7.7.1.0 | Jun 04, 2020 |
3233
| 7.7.0 | 7.7.0.0 | May 14, 2020 |
@@ -51,7 +52,7 @@ It collects all relevant metrics and makes them available to Prometheus via the
5152

5253
## Install
5354

54-
`./bin/elasticsearch-plugin install -b https://github.com/vvanholl/elasticsearch-prometheus-exporter/releases/download/7.8.0.0/prometheus-exporter-7.8.0.0.zip`
55+
`./bin/elasticsearch-plugin install -b https://github.com/vvanholl/elasticsearch-prometheus-exporter/releases/download/7.8.1.0/prometheus-exporter-7.8.1.0.zip`
5556

5657
**Do not forget to restart the node after the installation!**
5758

build.gradle

+4-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ plugins {
2929
apply plugin: 'java'
3030
apply plugin: 'idea'
3131
apply plugin: 'elasticsearch.esplugin'
32+
apply plugin: 'elasticsearch.rest-resources'
3233

3334
// Uncomment if you want to use: System.out.println("Emergency!");
3435
// Logs are found in build/testcluster/integTest-*/logs/ folder.
@@ -92,7 +93,9 @@ dependencies {
9293
compile "io.prometheus:simpleclient:${versions.prometheus}"
9394
compile "io.prometheus:simpleclient_common:${versions.prometheus}"
9495
compile "org.apache.logging.log4j:log4j-api:${versions.log4j}"
95-
testCompile "junit:junit:${versions.junit}"
96+
testCompile (group: 'junit', name: 'junit', version: "${versions.junit}") {
97+
exclude group:'org.hamcrest' //also included in ES test framework
98+
}
9699
releaseJars "${project.group}:${project.name}:${project.version}"
97100
}
98101

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
group = org.elasticsearch.plugin.prometheus
22

3-
version = 7.8.0.1-SNAPSHOT
3+
version = 7.8.1.0
44

55
pluginName = prometheus-exporter
66
pluginClassname = org.elasticsearch.plugin.prometheus.PrometheusExporterPlugin

0 commit comments

Comments
 (0)