Skip to content

Commit 492cc61

Browse files
authored
Merge pull request #261 from lukas-vlcek/release_7.6.1
Release 7.6.1
2 parents f521f1f + 945503b commit 492cc61

File tree

6 files changed

+21
-259
lines changed

6 files changed

+21
-259
lines changed

.gitlab-ci.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
image: "gradle:6.1.1-jdk13"
1+
image: "gradle:6.2.1-jdk13"
2+
# Please sync gradle version with README.md
23

34
variables:
45
GRADLE_OPTS: "-Dorg.gradle.daemon=false"

README.md

+9-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.6.1 | 7.6.1.0 | Mar 30, 2020 |
3031
| 7.6.0 | 7.6.0.0 | Feb 12, 2020 |
3132
| 7.5.2 | 7.5.2.0 | Jan 25, 2020 |
3233
| 7.5.1 | 7.5.1.0 | Jan 21, 2020 |
@@ -146,7 +147,7 @@ It collects all relevant metrics and makes them available to Prometheus via the
146147
## Install
147148

148149
- Since Elasticsearch 7.0.0 :
149-
`./bin/elasticsearch-plugin install -b https://github.com/vvanholl/elasticsearch-prometheus-exporter/releases/download/7.6.0.0/prometheus-exporter-7.6.0.0.zip`
150+
`./bin/elasticsearch-plugin install -b https://github.com/vvanholl/elasticsearch-prometheus-exporter/releases/download/7.6.1.0/prometheus-exporter-7.6.1.0.zip`
150151

151152
- Since Elasticsearch 6.0.0 :
152153
`./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`
@@ -254,6 +255,13 @@ Project contains [integration tests](src/test/resources/rest-api-spec) implement
254255
[rest layer](https://github.com/elastic/elasticsearch/blob/master/TESTING.asciidoc#testing-the-rest-layer)
255256
framework.
256257

258+
To run everything similar to the gitlab pipeline you can do:
259+
```
260+
docker run -v $(pwd):/home/gradle gradle:6.2.1-jdk13 su gradle -c 'gradle check'
261+
```
262+
NOTE: Please keep version in sync with .gitlab-ci.yml
263+
264+
257265
Complete test suite is run using:
258266
```
259267
gradle clean check

build.gradle

+9
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,17 @@ esplugin {
105105
classname pluginClassname
106106
}
107107

108+
// Remove in 7.6.2
109+
// https://github.com/spinscale/elasticsearch-ingest-langdetect/blob/c619173300113f26411a0bc42da8e41c8d4d72a5/build.gradle#L26
110+
restResources {
111+
restApi {
112+
includeCore '*'
113+
}
114+
}
115+
108116
testClusters.integTest {
109117
numberOfNodes = 2
118+
110119
// There does not seem to be any easy way how to setup custom cluster name.
111120

112121
// This worked in ES 7.4.x, but now results in:

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.6.0.1-SNAPSHOT
3+
version = 7.6.1.0
44

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

gradlew

-172
This file was deleted.

gradlew.bat

-84
This file was deleted.

0 commit comments

Comments
 (0)