Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(elastic): update to elasticsearch 7.16.1 #8379

Merged
1 commit merged into from Dec 14, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions exporters/elasticsearch-exporter/docker-compose.yml
Expand Up @@ -2,7 +2,7 @@ version: '3'

services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.12.1
image: docker.elastic.co/elasticsearch/elasticsearch:7.16.1
ports:
- "9200:9200"
- "9300:9300"
Expand All @@ -12,7 +12,7 @@ services:
- ES_JAVA_OPTS=-Xmx750m -Xms750m

kibana:
image: docker.elastic.co/kibana/kibana:7.12.1
image: docker.elastic.co/kibana/kibana:7.16.1
ports:
- "5601:5601"
links:
Expand Down
Expand Up @@ -42,11 +42,11 @@
import org.elasticsearch.client.ResponseException;
import org.elasticsearch.client.RestClient;
import org.elasticsearch.client.RestClientBuilder;
import org.elasticsearch.common.xcontent.DeprecationHandler;
import org.elasticsearch.common.xcontent.NamedXContentRegistry;
import org.elasticsearch.common.xcontent.XContent;
import org.elasticsearch.common.xcontent.XContentParser;
import org.elasticsearch.common.xcontent.XContentType;
import org.elasticsearch.xcontent.DeprecationHandler;
import org.elasticsearch.xcontent.NamedXContentRegistry;
import org.elasticsearch.xcontent.XContent;
import org.elasticsearch.xcontent.XContentParser;
import org.elasticsearch.xcontent.XContentType;
import org.slf4j.Logger;

public class ElasticsearchClient {
Expand Down
2 changes: 1 addition & 1 deletion parent/pom.xml
Expand Up @@ -46,7 +46,7 @@
<version.commons-math>3.6.1</version.commons-math>
<version.commons-codec>1.15</version.commons-codec>
<version.docker-java-api>3.2.8</version.docker-java-api>
<version.elasticsearch>7.13.2</version.elasticsearch>
<version.elasticsearch>7.16.1</version.elasticsearch>
<version.error-prone>2.7.1</version.error-prone>
<version.grpc>1.42.0</version.grpc>
<version.gson>2.8.9</version.gson>
Expand Down