Skip to content

Commit be358d8

Browse files
spalgerspalger
authored andcommitted
[es] upgrade to master
1 parent 797c709 commit be358d8

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Kibana is an open source ([Apache Licensed](https://github.com/elastic/kibana/bl
44

55
## Requirements
66

7-
- Elasticsearch version 2.2.0 or later
7+
- Elasticsearch master
88
- Kibana binary package
99

1010
## Installation

docs/setup.asciidoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
You can set up Kibana and start exploring your Elasticsearch indices in minutes.
44
All you need is:
55

6-
* Elasticsearch 2.1 or later
6+
* Elasticsearch master
77
* A modern web browser - http://www.elastic.co/subscriptions/matrix#matrix_browsers[Supported Browsers].
88
* Information about your Elasticsearch installation:
99
** URL of the Elasticsearch instance you want to connect to.
@@ -82,8 +82,8 @@ simply be the name of a single index.
8282
reads the index mapping to list all of the fields that contain a timestamp. If your index doesn't have time-based data,
8383
disable the *Index contains time-based events* option.
8484
+
85-
WARNING: Using event times to create index names is *deprecated* in this release of Kibana. Support for this functionality
86-
will be removed entirely in the next major Kibana release. Elasticsearch 2.1 includes sophisticated date parsing APIs that
85+
WARNING: Using event times to create index names is *deprecated* in this release of Kibana. Support for this functionality
86+
will be removed entirely in the next major Kibana release. Elasticsearch 2.1 includes sophisticated date parsing APIs that
8787
Kibana uses to determine date information, removing the need to specify dates in the index pattern name.
8888
+
8989
. Click *Create* to add the index pattern. This first pattern is automatically configured as the default.

src/plugins/elasticsearch/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module.exports = function (kibana) {
2424
key: Joi.string()
2525
}).default(),
2626
apiVersion: Joi.string().default('2.0'),
27-
engineVersion: Joi.string().valid('^2.1.0').default('^2.1.0')
27+
engineVersion: Joi.string().valid('^3.0.0').default('^3.0.0')
2828
}).default();
2929
},
3030

tasks/config/esvm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module.exports = function (grunt) {
66

77
return {
88
options: {
9-
branch: '2.1',
9+
branch: 'master',
1010
fresh: !grunt.option('esvm-no-fresh'),
1111
config: {
1212
network: {

0 commit comments

Comments
 (0)