Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The data sent to the StatsD server tries to be roughly equivalent to the [Indice

| Elasticsearch | Plugin | Release date |
| -------------- | -------------- | ------------ |
| 6.8.0 | 6.8.0.0 | Jun 21, 2019 |
| 6.6.1 | 6.6.1.0 | Mar 11, 2019 |
| 6.5.0 | 6.5.0.0 | Jan 2, 2019 |
| 6.4.3 | 6.4.3.0 | Jan 1, 2019 |
Expand Down Expand Up @@ -85,12 +86,12 @@ The plugin artifacts are published to Maven Central and Github. To install a pre
From Github:

```
./bin/elasticsearch-plugin install https://github.com/Automattic/elasticsearch-statsd-plugin/releases/download/6.6.1.0/elasticsearch-statsd-6.6.1.0.zip
./bin/elasticsearch-plugin install https://github.com/Automattic/elasticsearch-statsd-plugin/releases/download/6.8.0.0/elasticsearch-statsd-6.8.0.0.zip
```

From Maven Central:
```
./bin/elasticsearch-plugin install http://repo1.maven.org/maven2/com/automattic/elasticsearch-statsd/6.6.1.0/elasticsearch-statsd-6.6.1.0.zip
./bin/elasticsearch-plugin install http://repo1.maven.org/maven2/com/automattic/elasticsearch-statsd/6.8.0.0/elasticsearch-statsd-6.8.0.0.zip
```

Change the version to match your ES version. For ES `x.y.z` the version is `x.y.z.0`
Expand All @@ -106,7 +107,7 @@ mvn clean package -Djava.security.policy=src/test/resources/plugin-security-test
Once we have the artifact, install it with the following command:

```
bin/elasticsearch-plugin install file:///absolute/path/to/current/dir/target/releases/elasticsearch-statsd-6.6.1.0.zip
bin/elasticsearch-plugin install file:///absolute/path/to/current/dir/target/releases/elasticsearch-statsd-6.8.0.0.zip
```

## Installation Elasticsearch 5.x
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.automattic</groupId>
<artifactId>elasticsearch-statsd</artifactId>
<version>6.6.1.0</version>
<version>6.8.0.0</version>
<packaging>jar</packaging>

<name>elasticsearch-statsd</name>
Expand Down Expand Up @@ -46,7 +46,7 @@
</developers>

<properties>
<elasticsearch.version>6.6.1</elasticsearch.version>
<elasticsearch.version>6.8.0</elasticsearch.version>
<junit.version>4.12</junit.version>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down