Re: This version of Kibana requires at least Elasticsearch 1.4.0.Beta1 but using 1.4.1

2014-12-04 Thread Stefan Meisner Larsen
I had the same problem when I accidentially joined in cluster with a 
collegue who was using an older version of elasticsearch.
Changed the cluster name and everything worked perfectly ;-)

/Stefan

Den torsdag den 4. december 2014 08.01.09 UTC+1 skrev David Montgomery:
>
>
> I added the below to elasticsearch.ymk config.  Still kibana provides the 
> same error
>
> http.cors.enabled: true
> http.cors.allow-origin: http://monitor-development-east.test.com:5601
>
> For those at elastiseaerch..can you provide me color on what my be going 
> on?  
>
> Thanks
>
>
>
>
>
>
>
> On Thursday, December 4, 2014 7:53:50 AM UTC+8, David Montgomery wrote:
>>
>> Hi,
>>
>>  have no agents as of yet.  Just logstash server with the below config
>>
>> input {
>>   redis {
>> host => "<%=@redis_host%>"
>> data_type => "list"
>> key => "logstash"
>> codec => json
>>   }
>> }
>>
>> output {
>> stdout { }
>> elasticsearch { 
>> host => "<%=node[:ipaddress]%>" 
>> }
>> }
>>
>> On Thursday, December 4, 2014 6:19:36 AM UTC+8, Jack Judge wrote:
>>>
>>> This tripped me up too.
>>>
>>> Are your logstash agents using the elasticsearch output ? If so, they'll 
>>> be running the embedded version of ES that comes with Logstash, and that's 
>>> the version that's stopping kibana from working. Basically *any* ES node 
>>> that connects to your cluster in any form must be 1.4.x
>>> My solution was to change the logstash output to elasticsearch_http
>>>
>>> JJ
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/5dad34dc-fe0f-4ab4-86bb-a33571fc434c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: This version of Kibana requires at least Elasticsearch 1.4.0.Beta1 but using 1.4.1

2014-12-03 Thread David Montgomery

I added the below to elasticsearch.ymk config.  Still kibana provides the 
same error

http.cors.enabled: true
http.cors.allow-origin: http://monitor-development-east.test.com:5601

For those at elastiseaerch..can you provide me color on what my be going 
on?  

Thanks







On Thursday, December 4, 2014 7:53:50 AM UTC+8, David Montgomery wrote:
>
> Hi,
>
>  have no agents as of yet.  Just logstash server with the below config
>
> input {
>   redis {
> host => "<%=@redis_host%>"
> data_type => "list"
> key => "logstash"
> codec => json
>   }
> }
>
> output {
> stdout { }
> elasticsearch { 
> host => "<%=node[:ipaddress]%>" 
> }
> }
>
> On Thursday, December 4, 2014 6:19:36 AM UTC+8, Jack Judge wrote:
>>
>> This tripped me up too.
>>
>> Are your logstash agents using the elasticsearch output ? If so, they'll 
>> be running the embedded version of ES that comes with Logstash, and that's 
>> the version that's stopping kibana from working. Basically *any* ES node 
>> that connects to your cluster in any form must be 1.4.x
>> My solution was to change the logstash output to elasticsearch_http
>>
>> JJ
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/caf7c2cf-3a02-4b31-8d3c-1b2c9ce52ed2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: This version of Kibana requires at least Elasticsearch 1.4.0.Beta1 but using 1.4.1

2014-12-03 Thread Mark Walkom
You still need to set the protocol to either HTTP or transport though.

On 4 December 2014 at 10:53, David Montgomery 
wrote:

> Hi,
>
>  have no agents as of yet.  Just logstash server with the below config
>
> input {
>   redis {
> host => "<%=@redis_host%>"
> data_type => "list"
> key => "logstash"
> codec => json
>   }
> }
>
> output {
> stdout { }
> elasticsearch {
> host => "<%=node[:ipaddress]%>"
> }
> }
>
> On Thursday, December 4, 2014 6:19:36 AM UTC+8, Jack Judge wrote:
>>
>> This tripped me up too.
>>
>> Are your logstash agents using the elasticsearch output ? If so, they'll
>> be running the embedded version of ES that comes with Logstash, and that's
>> the version that's stopping kibana from working. Basically *any* ES node
>> that connects to your cluster in any form must be 1.4.x
>> My solution was to change the logstash output to elasticsearch_http
>>
>> JJ
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "elasticsearch" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to elasticsearch+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/elasticsearch/1980ac96-edef-4df6-8ec5-38671718fafc%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/CAEYi1X9X0LKydXear5FwjhFTttGG6xPUr0HqSU2egcciAEVG%2BQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: This version of Kibana requires at least Elasticsearch 1.4.0.Beta1 but using 1.4.1

2014-12-03 Thread David Montgomery
Hi,

 have no agents as of yet.  Just logstash server with the below config

input {
  redis {
host => "<%=@redis_host%>"
data_type => "list"
key => "logstash"
codec => json
  }
}

output {
stdout { }
elasticsearch { 
host => "<%=node[:ipaddress]%>" 
}
}

On Thursday, December 4, 2014 6:19:36 AM UTC+8, Jack Judge wrote:
>
> This tripped me up too.
>
> Are your logstash agents using the elasticsearch output ? If so, they'll 
> be running the embedded version of ES that comes with Logstash, and that's 
> the version that's stopping kibana from working. Basically *any* ES node 
> that connects to your cluster in any form must be 1.4.x
> My solution was to change the logstash output to elasticsearch_http
>
> JJ
>

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/1980ac96-edef-4df6-8ec5-38671718fafc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: This version of Kibana requires at least Elasticsearch 1.4.0.Beta1 but using 1.4.1

2014-12-03 Thread Itamar Syn-Hershko
https://github.com/elasticsearch/kibana/issues/1637

--

Itamar Syn-Hershko
http://code972.com | @synhershko 
Freelance Developer & Consultant
Author of RavenDB in Action 

On Thu, Dec 4, 2014 at 1:49 AM, David Montgomery 
wrote:

> I am kibana 4.0.0-BETA2
>
> On Wednesday, December 3, 2014 7:30:03 PM UTC+8, Mark Walkom wrote:
>>
>> What version of Kibana?
>>
>> On 3 December 2014 at 21:48, David Montgomery 
>> wrote:
>>
>>> Hi,
>>>
>>>
>>> This version of Kibana requires at least Elasticsearch 1.4.0.Beta1
>>>
>>> SetupError@http://monitor-development-east.test.com:
>>> 5601/index.js?_b=3998:42905:51
>>> checkEsVersion/<@http://monitor-development-east.test.
>>> com:5601/index.js?_b=3998:43091:14
>>> qFactory/defer/deferred.promise.then/wrappedCallback@h
>>> ttp://monitor-development-east.test.com:5601/index.js?_b=3998:20764:15
>>> qFactory/ref/<.then/<@http://monitor-development-east.test.
>>> com:5601/index.js?_b=3998:20850:11
>>> $RootScopeProvider/this.$get>> monitor-development-east.test.com:5601/index.js?_b=3998:21893:9
>>> $RootScopeProvider/this.$get>> /monitor-development-east.test.com:5601/index.js?_b=3998:21705:15
>>> $RootScopeProvider/this.$get>> monitor-development-east.test.com:5601/index.js?_b=3998:21997:13
>>> done@http://monitor-development-east.test.com:
>>> 5601/index.js?_b=3998:17570:34
>>> completeRequest@http://monitor-development-east.test.
>>> com:5601/index.js?_b=3998:17784:7
>>> createHttpBackend/>> monitor-development-east.test.com:5601/index.js?_b=3998:17727:1
>>>
>>> I am using 1.4.1.  Clearly kibana is not working.  Why?
>>>
>>>
>>>
>>> Here is my ES server
>>> {
>>>   "status" : 200,
>>>   "name" : "Controller",
>>>   "cluster_name" : "elasticsearch",
>>>   "version" : {
>>> "number" : "1.4.1",
>>> "build_hash" : "89d3241d670db65f994242c8e8383b169779e2d4",
>>> "build_timestamp" : "2014-11-26T15:49:29Z",
>>> "build_snapshot" : false,
>>> "lucene_version" : "4.10.2"
>>>   },
>>>   "tagline" : "You Know, for Search"
>>> }
>>>
>>>
>>> Thaks
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "elasticsearch" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to elasticsearc...@googlegroups.com.
>>> To view this discussion on the web visit https://groups.google.com/d/
>>> msgid/elasticsearch/CACF%2B8roTzNMtt5FJGQqGQSUQBaMXvVSP
>>> s4phpcLDCbM-Baek0g%40mail.gmail.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>  --
> You received this message because you are subscribed to the Google Groups
> "elasticsearch" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to elasticsearch+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/elasticsearch/35e05f7f-4275-4a15-bfca-518afc4e1cc7%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/CAHTr4Zu7x9Ouaa2YMttO%3D-h1R5LvZAZFFbwGDACB5qgZ6r8ZEQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: This version of Kibana requires at least Elasticsearch 1.4.0.Beta1 but using 1.4.1

2014-12-03 Thread David Montgomery
I am kibana 4.0.0-BETA2

On Wednesday, December 3, 2014 7:30:03 PM UTC+8, Mark Walkom wrote:
>
> What version of Kibana?
>
> On 3 December 2014 at 21:48, David Montgomery  > wrote:
>
>> Hi,
>>
>>
>> This version of Kibana requires at least Elasticsearch 1.4.0.Beta1
>>
>> SetupError@
>> http://monitor-development-east.test.com:5601/index.js?_b=3998:42905:51
>> checkEsVersion/<@
>> http://monitor-development-east.test.com:5601/index.js?_b=3998:43091:14
>> qFactory/defer/deferred.promise.then/wrappedCallback@
>> http://monitor-development-east.test.com:5601/index.js?_b=3998:20764:15
>> qFactory/ref/<.then/<@
>> http://monitor-development-east.test.com:5601/index.js?_b=3998:20850:11
>> $RootScopeProvider/this.$get> http://monitor-development-east.test.com:5601/index.js?_b=3998:21893:9
>> $RootScopeProvider/this.$get> http://monitor-development-east.test.com:5601/index.js?_b=3998:21705:15
>> $RootScopeProvider/this.$get> http://monitor-development-east.test.com:5601/index.js?_b=3998:21997:13
>> done@
>> http://monitor-development-east.test.com:5601/index.js?_b=3998:17570:34
>> completeRequest@
>> http://monitor-development-east.test.com:5601/index.js?_b=3998:17784:7
>> createHttpBackend/> http://monitor-development-east.test.com:5601/index.js?_b=3998:17727:1
>>
>> I am using 1.4.1.  Clearly kibana is not working.  Why?
>>
>>
>>
>> Here is my ES server
>> {
>>   "status" : 200,
>>   "name" : "Controller",
>>   "cluster_name" : "elasticsearch",
>>   "version" : {
>> "number" : "1.4.1",
>> "build_hash" : "89d3241d670db65f994242c8e8383b169779e2d4",
>> "build_timestamp" : "2014-11-26T15:49:29Z",
>> "build_snapshot" : false,
>> "lucene_version" : "4.10.2"
>>   },
>>   "tagline" : "You Know, for Search"
>> }
>>
>>
>> Thaks
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "elasticsearch" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to elasticsearc...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/elasticsearch/CACF%2B8roTzNMtt5FJGQqGQSUQBaMXvVSPs4phpcLDCbM-Baek0g%40mail.gmail.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/35e05f7f-4275-4a15-bfca-518afc4e1cc7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: This version of Kibana requires at least Elasticsearch 1.4.0.Beta1 but using 1.4.1

2014-12-03 Thread Jack Judge
This tripped me up too.

Are your logstash agents using the elasticsearch output ? If so, they'll be 
running the embedded version of ES that comes with Logstash, and that's the 
version that's stopping kibana from working. Basically *any* ES node that 
connects to your cluster in any form must be 1.4.x
My solution was to change the logstash output to elasticsearch_http

JJ

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/05d2a7af-501d-473a-aff1-14b661fe79e1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: This version of Kibana requires at least Elasticsearch 1.4.0.Beta1 but using 1.4.1

2014-12-03 Thread Mark Walkom
What version of Kibana?

On 3 December 2014 at 21:48, David Montgomery 
wrote:

> Hi,
>
>
> This version of Kibana requires at least Elasticsearch 1.4.0.Beta1
>
> SetupError@
> http://monitor-development-east.test.com:5601/index.js?_b=3998:42905:51
> checkEsVersion/<@
> http://monitor-development-east.test.com:5601/index.js?_b=3998:43091:14
> qFactory/defer/deferred.promise.then/wrappedCallback@
> http://monitor-development-east.test.com:5601/index.js?_b=3998:20764:15
> qFactory/ref/<.then/<@
> http://monitor-development-east.test.com:5601/index.js?_b=3998:20850:11
> $RootScopeProvider/this.$get http://monitor-development-east.test.com:5601/index.js?_b=3998:21893:9
> $RootScopeProvider/this.$get http://monitor-development-east.test.com:5601/index.js?_b=3998:21705:15
> $RootScopeProvider/this.$get http://monitor-development-east.test.com:5601/index.js?_b=3998:21997:13
> done@
> http://monitor-development-east.test.com:5601/index.js?_b=3998:17570:34
> completeRequest@
> http://monitor-development-east.test.com:5601/index.js?_b=3998:17784:7
> createHttpBackend/ http://monitor-development-east.test.com:5601/index.js?_b=3998:17727:1
>
> I am using 1.4.1.  Clearly kibana is not working.  Why?
>
>
>
> Here is my ES server
> {
>   "status" : 200,
>   "name" : "Controller",
>   "cluster_name" : "elasticsearch",
>   "version" : {
> "number" : "1.4.1",
> "build_hash" : "89d3241d670db65f994242c8e8383b169779e2d4",
> "build_timestamp" : "2014-11-26T15:49:29Z",
> "build_snapshot" : false,
> "lucene_version" : "4.10.2"
>   },
>   "tagline" : "You Know, for Search"
> }
>
>
> Thaks
>
> --
> You received this message because you are subscribed to the Google Groups
> "elasticsearch" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to elasticsearch+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/elasticsearch/CACF%2B8roTzNMtt5FJGQqGQSUQBaMXvVSPs4phpcLDCbM-Baek0g%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/CAEYi1X-_8Bxt6aT5Hed1cn-Wf%2BY5mAcVbMDbrNrV%2Be4ANTEJLg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: This version of Kibana requires at least Elasticsearch 1.4.0.Beta1 but using 1.4.1

2014-12-03 Thread David Montgomery
PS

I installed 1.4.0.Beta1

{
  "status" : 200,
  "name" : "Discus",
  "cluster_name" : "elasticsearch",
  "version" : {
"number" : "1.4.0.Beta1",
"build_hash" : "1f25669f3299b0680b266c3acaece43774fb59ae",
"build_timestamp" : "2014-10-01T14:58:15Z",
"build_snapshot" : false,
"lucene_version" : "4.10.1"
  },
  "tagline" : "You Know, for Search"
}




Wow... get the same error.  Is kibana not stable?




On Wed, Dec 3, 2014 at 6:48 PM, David Montgomery 
wrote:

> Hi,
>
>
> This version of Kibana requires at least Elasticsearch 1.4.0.Beta1
>
> SetupError@
> http://monitor-development-east.test.com:5601/index.js?_b=3998:42905:51
> checkEsVersion/<@
> http://monitor-development-east.test.com:5601/index.js?_b=3998:43091:14
> qFactory/defer/deferred.promise.then/wrappedCallback@
> http://monitor-development-east.test.com:5601/index.js?_b=3998:20764:15
> qFactory/ref/<.then/<@
> http://monitor-development-east.test.com:5601/index.js?_b=3998:20850:11
> $RootScopeProvider/this.$get http://monitor-development-east.test.com:5601/index.js?_b=3998:21893:9
> $RootScopeProvider/this.$get http://monitor-development-east.test.com:5601/index.js?_b=3998:21705:15
> $RootScopeProvider/this.$get http://monitor-development-east.test.com:5601/index.js?_b=3998:21997:13
> done@
> http://monitor-development-east.test.com:5601/index.js?_b=3998:17570:34
> completeRequest@
> http://monitor-development-east.test.com:5601/index.js?_b=3998:17784:7
> createHttpBackend/ http://monitor-development-east.test.com:5601/index.js?_b=3998:17727:1
>
> I am using 1.4.1.  Clearly kibana is not working.  Why?
>
>
>
> Here is my ES server
> {
>   "status" : 200,
>   "name" : "Controller",
>   "cluster_name" : "elasticsearch",
>   "version" : {
> "number" : "1.4.1",
> "build_hash" : "89d3241d670db65f994242c8e8383b169779e2d4",
> "build_timestamp" : "2014-11-26T15:49:29Z",
> "build_snapshot" : false,
> "lucene_version" : "4.10.2"
>   },
>   "tagline" : "You Know, for Search"
> }
>
>
> Thaks
>

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/CACF%2B8rrM_h6-WjLHMwHLdt78j71ZarhRj433jsvRkgtBkRXQZg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


This version of Kibana requires at least Elasticsearch 1.4.0.Beta1 but using 1.4.1

2014-12-03 Thread David Montgomery
Hi,


This version of Kibana requires at least Elasticsearch 1.4.0.Beta1

SetupError@
http://monitor-development-east.test.com:5601/index.js?_b=3998:42905:51
checkEsVersion/<@
http://monitor-development-east.test.com:5601/index.js?_b=3998:43091:14
qFactory/defer/deferred.promise.then/wrappedCallback@
http://monitor-development-east.test.com:5601/index.js?_b=3998:20764:15
qFactory/ref/<.then/<@
http://monitor-development-east.test.com:5601/index.js?_b=3998:20850:11
$RootScopeProvider/this.$gethttp://monitor-development-east.test.com:5601/index.js?_b=3998:21893:9
$RootScopeProvider/this.$gethttp://monitor-development-east.test.com:5601/index.js?_b=3998:21705:15
$RootScopeProvider/this.$gethttp://monitor-development-east.test.com:5601/index.js?_b=3998:21997:13
done@http://monitor-development-east.test.com:5601/index.js?_b=3998:17570:34
completeRequest@
http://monitor-development-east.test.com:5601/index.js?_b=3998:17784:7
createHttpBackend/http://monitor-development-east.test.com:5601/index.js?_b=3998:17727:1

I am using 1.4.1.  Clearly kibana is not working.  Why?



Here is my ES server
{
  "status" : 200,
  "name" : "Controller",
  "cluster_name" : "elasticsearch",
  "version" : {
"number" : "1.4.1",
"build_hash" : "89d3241d670db65f994242c8e8383b169779e2d4",
"build_timestamp" : "2014-11-26T15:49:29Z",
"build_snapshot" : false,
"lucene_version" : "4.10.2"
  },
  "tagline" : "You Know, for Search"
}


Thaks

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/CACF%2B8roTzNMtt5FJGQqGQSUQBaMXvVSPs4phpcLDCbM-Baek0g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.