File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
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.8.1 | 7.8.1.0 | Aug 10, 2020 |
30
31
| 7.8.0 | 7.8.0.0 | Jun 22, 2020 |
31
32
| 7.7.1 | 7.7.1.0 | Jun 04, 2020 |
32
33
| 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
51
52
52
53
## Install
53
54
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 `
55
56
56
57
** Do not forget to restart the node after the installation!**
57
58
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ plugins {
29
29
apply plugin : ' java'
30
30
apply plugin : ' idea'
31
31
apply plugin : ' elasticsearch.esplugin'
32
+ apply plugin : ' elasticsearch.rest-resources'
32
33
33
34
// Uncomment if you want to use: System.out.println("Emergency!");
34
35
// Logs are found in build/testcluster/integTest-*/logs/ folder.
@@ -92,7 +93,9 @@ dependencies {
92
93
compile " io.prometheus:simpleclient:${ versions.prometheus} "
93
94
compile " io.prometheus:simpleclient_common:${ versions.prometheus} "
94
95
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
+ }
96
99
releaseJars " ${ project.group} :${ project.name} :${ project.version} "
97
100
}
98
101
Original file line number Diff line number Diff line change 1
1
group = org.elasticsearch.plugin.prometheus
2
2
3
- version = 7.8.0.1-SNAPSHOT
3
+ version = 7.8.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