marvel shows empty dashboard and log error messagev

2014-08-10 Thread Rui Li
marvel shows empty dashboard 
and the log file error message is below: 

[2014-08-09 09:00:58,741][ERROR][marvel.agent.exporter] [Super Stars] 
could not connect to any configured elasticsearch instances: 
[localhost:9200] 
[2014-08-09 09:00:58,784][ERROR][marvel.agent.exporter] [Super Stars] 
error connecting to [localhost:9200] 
java.net.ConnectException: Connection refused 
at java.net.PlainSocketImpl.socketConnect(Native Method) 
at 
java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) 
at 
java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200)
 
at 
java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) 
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) 
at java.net.Socket.connect(Socket.java:579) 
at sun.net.NetworkClient.doConnect(NetworkClient.java:175) 
at sun.net.www.http.HttpClient.openServer(HttpClient.java:432) 
at sun.net.www.http.HttpClient.openServer(HttpClient.java:527) 
at sun.net.www.http.HttpClient.(HttpClient.java:211) 
at sun.net.www.http.HttpClient.New(HttpClient.java:308) 
at sun.net.www.http.HttpClient.New(HttpClient.java:326) 
at 
sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:996)
 
at 
sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:932)
 
at 
sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:850) 
at 
org.elasticsearch.marvel.agent.exporter.ESExporter.openConnection(ESExporter.java:325)
 
at 
org.elasticsearch.marvel.agent.exporter.ESExporter.openConnection(ESExporter.java:295)
 
at 
org.elasticsearch.marvel.agent.exporter.ESExporter.checkAndUploadIndexTemplate(ESExporter.java:384)
 
at 
org.elasticsearch.marvel.agent.exporter.ESExporter.openExportingConnection(ESExporter.java:174)
 
at 
org.elasticsearch.marvel.agent.exporter.ESExporter.exportIndicesStats(ESExporter.java:144)
 
at 
org.elasticsearch.marvel.agent.AgentService$ExportingWorker.exportIndicesStats(AgentService.java:277)
 
at 
org.elasticsearch.marvel.agent.AgentService$ExportingWorker.run(AgentService.java:245)
 
at java.lang.Thread.run(Thread.java:744) 





header plugin works fine

<https://lh5.googleusercontent.com/-pfNpRhSAT6g/U-f2QoHDOMI/ABc/CUna0UkasJM/s1600/Selection_018.png>


-- 
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/96afc766-08ef-4576-9af9-21c35320701c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: marvel shows empty dashboard

2014-02-28 Thread Craig McLean
On Sunday, 2 February 2014 18:02:04 UTC, Boaz Leskes wrote:
>
> [loads of great stuff snipped]
>>
>
Just in case it helps anyone else out there, I was suffering with blank 
Marvel dashboards (logstash 1.3.3 with ES 1.0.1) and it turned out to be a 
permissions problem on the marvel plugin directory. We use a umask of 027 
and as such the 'elasticsearch' user couldn't load the plugin when ES 
started. This is pretty easily spotted in the logs, where the plugins run 
announced "loaded [], sites []" rather than "loaded [marvel], sites 
[marvel]", which is what you *should* see.
Anyhoo a chown -R of the plugins directory to match the user running ES, 
and a cluster restart, and all is now well with the world.

Cheers!
C.

-- 
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/94b0cac7-1dcb-4055-b96d-c70f266afa15%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: marvel shows empty dashboard

2014-02-02 Thread Boaz Leskes
It looks like you have dynamic mappings disabled - most likely via the 
following line in the elasticsearch.yml file:

index.mapper.dynamic: false

You will need to override it for marvel indices which rely on this 
functionality. To do so (assuming you don't want to remove that line from 
the elasticsearch.yml) add the following index template:
curl -XPUT "http://HOST:PORT/_template/custom_marvel"; -d'
{
"template": ".marvel*",
"order": 1,
"settings": {
"mapper.dynamic": true
}
}'

After the template is added, you'd need to delete today's index so it will 
be recreated using the new template:
curl -XDELETE "http://HOST:PORT/.marvel-2014.02.02";

There is no need to restart nodes. Once the index is re-created the error 
should go away (should take ~5 sec)



On Sunday, February 2, 2014 4:38:57 PM UTC+1, Ron Sher wrote:
>
> Getting somewhere...
>
> Changed the hosts and now I get the following:
> type[cluster_stats] missing: trying to auto create mapping, but dynamic 
> mapping is disabled
>
>
> On Sun, Feb 2, 2014 at 5:26 PM, Boaz Leskes 
> > wrote:
>
>> It looks like marvel can't store the data on localhost:9200. The most 
>> common reason is running on another port. Another option is that ES is not 
>> bound on localhost or that http access is turned off (in which case marvel 
>> won't work). 
>>
>>  Can you verify you can connect ES via the terminal while on the machine 
>> itself? If needed you can change the host & port marvel where sends data 
>> to. See 
>> http://www.elasticsearch.org/guide/en/marvel/current/index.html#stats-export 
>>
>>
>> On Sun, Feb 2, 2014 at 3:23 PM, Ron Sher 
>> > wrote:
>>
>>> The beginning of the log looks like:
>>> [2014-02-02 15:38:56,003][INFO ][node ] [hades3] 
>>> version[0.90.10], pid[20219], build[0a5781f/2014-01-10T10:18:37Z]
>>> [2014-02-02 15:38:56,004][INFO ][node ] [hades3] 
>>> initializing ... 
>>> [2014-02-02 15:38:56,027][INFO ][plugins  ] [hades3] 
>>> loaded [marvel], sites [marvel, head]
>>> [2014-02-02 15:39:01,302][INFO ][node ] [hades3] 
>>> initialized
>>> [2014-02-02 15:39:01,302][INFO ][node ] [hades3] 
>>> starting ... 
>>> [2014-02-02 15:39:01,410][INFO ][transport] [hades3] 
>>> bound_address {inet[/0:0:0:0:0:0:0:0:9300]}, publish_address {inet[/
>>> 192.168.10.148:9300]}
>>> [2014-02-02 15:39:06,408][ERROR][marvel.agent.exporter] error 
>>> sending data
>>>  java.io.FileNotFoundException: http://localhost:9200/_bulk 
>>>  
>>> atsun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1623)
>>> at org.elasticsearch.marvel.agent.exporter.ESExporter.
>>> sendCloseExportingConnection(ESExporter.java:232)
>>> at org.elasticsearch.marvel.agent.exporter.ESExporter.
>>> exportXContent(ESExporter.java:252)
>>> at org.elasticsearch.marvel.agent.exporter.ESExporter.
>>> exportNodeStats(ESExporter.java:134)
>>> at org.elasticsearch.marvel.agent.AgentService$ExportingWorker.
>>> exportNodeStats(AgentService.java:274)
>>> at org.elasticsearch.marvel.agent.AgentService$ExportingWorker.
>>> run(AgentService.java:174)
>>> at java.lang.Thread.run(Thread.java:724)
>>>  
>>>  
>>>
>>> On Sun, Feb 2, 2014 at 3:43 PM, Ron Sher 
>>> > wrote:
>>>
 I've noticed that I didn't have a logging.yml (was called logging.xml 
 instead).
 Changed that and then I see:

  [2014-02-02 15:42:19,824][ERROR][marvel.agent.exporter] error 
 sending data
  java.io.FileNotFoundException: http://localhost:9200/_bulk 
 
 atsun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1623)
 at org.elasticsearch.marvel.agent.exporter.ESExporter.
 sendCloseExportingConnection(ESExporter.java:232)
 at org.elasticsearch.marvel.agent.exporter.ESExporter.
 exportXContent(ESExporter.java:252)
 at org.elasticsearch.marvel.agent.exporter.ESExporter.
 exportClusterStats(ESExporter.java:172)
 at org.elasticsearch.marvel.agent.AgentService$ExportingWorker.
 exportClusterStats(AgentService.java:214)
 at org.elasticsearch.marvel.agent.AgentService$ExportingWorker.
 run(AgentService.java:180)
 at java.lang.Thread.run(Thread.java:724)
  

 What now?
   

 On Sun, Feb 2, 2014 at 11:29 AM, Ron Sher 
 > wrote:

> This is what I see in the log after the restart:
> STATUS | wrapper  | 2014/02/02 11:26:54 |   Copyright (C) 1999-2011 
> Tanuki Software, Ltd. All Rights Reserved.
> STATUS | wrapper  | 2014/02/02 11:26:54 | 
> http://wrapper.tanukisoftware.com 
> STATUS | wrapper  | 2014/02/02 11:26:54 |
> WARN   | wrapper  | 2014/02/02 11:26:54 | Encountered an invalid 
> numerical value for configuration property 
> wrapper.java.initmemory=%ES_HEAP_SIZE%. 
>  Res

Re: marvel shows empty dashboard

2014-02-02 Thread Ron Sher
Getting somewhere...

Changed the hosts and now I get the following:
type[cluster_stats] missing: trying to auto create mapping, but dynamic
mapping is disabled


On Sun, Feb 2, 2014 at 5:26 PM, Boaz Leskes  wrote:

> It looks like marvel can't store the data on localhost:9200. The most
> common reason is running on another port. Another option is that ES is not
> bound on localhost or that http access is turned off (in which case marvel
> won't work).
>
>  Can you verify you can connect ES via the terminal while on the machine
> itself? If needed you can change the host & port marvel where sends data
> to. See
> http://www.elasticsearch.org/guide/en/marvel/current/index.html#stats-export
>
>
> On Sun, Feb 2, 2014 at 3:23 PM, Ron Sher  wrote:
>
>> The beginning of the log looks like:
>> [2014-02-02 15:38:56,003][INFO ][node ] [hades3]
>> version[0.90.10], pid[20219], build[0a5781f/2014-01-10T10:18:37Z]
>> [2014-02-02 15:38:56,004][INFO ][node ] [hades3]
>> initializing ...
>> [2014-02-02 15:38:56,027][INFO ][plugins  ] [hades3]
>> loaded [marvel], sites [marvel, head]
>> [2014-02-02 15:39:01,302][INFO ][node ] [hades3]
>> initialized
>> [2014-02-02 15:39:01,302][INFO ][node ] [hades3]
>> starting ...
>> [2014-02-02 15:39:01,410][INFO ][transport] [hades3]
>> bound_address {inet[/0:0:0:0:0:0:0:0:9300]}, publish_address {inet[/
>> 192.168.10.148:9300]}
>> [2014-02-02 15:39:06,408][ERROR][marvel.agent.exporter] error
>> sending data
>>  java.io.FileNotFoundException: http://localhost:9200/_bulk
>>  
>> atsun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1623)
>> at org.elasticsearch.marvel.agent.exporter.ESExporter.
>> sendCloseExportingConnection(ESExporter.java:232)
>> at org.elasticsearch.marvel.agent.exporter.ESExporter.
>> exportXContent(ESExporter.java:252)
>> at org.elasticsearch.marvel.agent.exporter.ESExporter.
>> exportNodeStats(ESExporter.java:134)
>> at org.elasticsearch.marvel.agent.AgentService$ExportingWorker.
>> exportNodeStats(AgentService.java:274)
>> at org.elasticsearch.marvel.agent.AgentService$ExportingWorker.
>> run(AgentService.java:174)
>> at java.lang.Thread.run(Thread.java:724)
>>
>>
>>
>> On Sun, Feb 2, 2014 at 3:43 PM, Ron Sher  wrote:
>>
>>> I've noticed that I didn't have a logging.yml (was called logging.xml
>>> instead).
>>> Changed that and then I see:
>>>
>>>  [2014-02-02 15:42:19,824][ERROR][marvel.agent.exporter] error
>>> sending data
>>>  java.io.FileNotFoundException: http://localhost:9200/_bulk
>>> 
>>> atsun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1623)
>>> at org.elasticsearch.marvel.agent.exporter.ESExporter.
>>> sendCloseExportingConnection(ESExporter.java:232)
>>> at org.elasticsearch.marvel.agent.exporter.ESExporter.
>>> exportXContent(ESExporter.java:252)
>>> at org.elasticsearch.marvel.agent.exporter.ESExporter.
>>> exportClusterStats(ESExporter.java:172)
>>> at org.elasticsearch.marvel.agent.AgentService$ExportingWorker.
>>> exportClusterStats(AgentService.java:214)
>>> at org.elasticsearch.marvel.agent.AgentService$ExportingWorker.
>>> run(AgentService.java:180)
>>> at java.lang.Thread.run(Thread.java:724)
>>>
>>>
>>> What now?
>>>
>>>
>>> On Sun, Feb 2, 2014 at 11:29 AM, Ron Sher  wrote:
>>>
 This is what I see in the log after the restart:
 STATUS | wrapper  | 2014/02/02 11:26:54 |   Copyright (C) 1999-2011
 Tanuki Software, Ltd. All Rights Reserved.
 STATUS | wrapper  | 2014/02/02 11:26:54 |
 http://wrapper.tanukisoftware.com
 STATUS | wrapper  | 2014/02/02 11:26:54 |
 WARN   | wrapper  | 2014/02/02 11:26:54 | Encountered an invalid
 numerical value for configuration property 
 wrapper.java.initmemory=%ES_HEAP_SIZE%.
  Resolving to 0.
 WARN   | wrapper  | 2014/02/02 11:26:54 | Encountered an invalid
 numerical value for configuration property 
 wrapper.java.maxmemory=%ES_HEAP_SIZE%.
  Resolving to 0.
 STATUS | wrapper  | 2014/02/02 11:26:54 | Launching a JVM...
 INFO   | jvm 1| 2014/02/02 11:26:55 | WrapperManager:
 Initializing...
 INFO   | jvm 1| 2014/02/02 11:27:01 | log4j:WARN No appenders
 could be found for logger (node).
 INFO   | jvm 1| 2014/02/02 11:27:01 | log4j:WARN Please initialize
 the log4j system properly.
 INFO   | jvm 1| 2014/02/02 11:27:01 | log4j:WARN See
 http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.



 On Sun, Feb 2, 2014 at 10:05 AM, Boaz Leskes wrote:

> OK, interesting.
>
> Can you check the logs on one of the nodes to if there are any errors?
> also please double check that when the node started it logged a line
> similar to the following (containing marvel in the l

Re: marvel shows empty dashboard

2014-02-02 Thread Boaz Leskes
It looks like marvel can't store the data on localhost:9200. The most common 
reason is running on another port. Another option is that ES is not bound on 
localhost or that http access is turned off (in which case marvel won't work). 



Can you verify you can connect ES via the terminal while on the machine itself? 
If needed you can change the host & port marvel where sends data to. See 
http://www.elasticsearch.org/guide/en/marvel/current/index.html#stats-export

On Sun, Feb 2, 2014 at 3:23 PM, Ron Sher  wrote:

> The beginning of the log looks like:
> [2014-02-02 15:38:56,003][INFO ][node ] [hades3] version
> [0.90.10], pid[20219], build[0a5781f/2014-01-10T10:18:37Z]
> [2014-02-02 15:38:56,004][INFO ][node ] [hades3]
> initializing ...
> [2014-02-02 15:38:56,027][INFO ][plugins  ] [hades3] loaded
> [marvel], sites [marvel, head]
> [2014-02-02 15:39:01,302][INFO ][node ] [hades3]
> initialized
> [2014-02-02 15:39:01,302][INFO ][node ] [hades3]
> starting ...
> [2014-02-02 15:39:01,410][INFO ][transport] [hades3]
> bound_address {inet[/0:0:0:0:0:0:0:0:9300]}, publish_address {inet[/
> 192.168.10.148:9300]}
> [2014-02-02 15:39:06,408][ERROR][marvel.agent.exporter] error sending
> data
> java.io.FileNotFoundException: http://localhost:9200/_bulk
> 
> atsun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1623)
> at org.elasticsearch.marvel.agent.exporter.ESExporter.
> sendCloseExportingConnection(ESExporter.java:232)
> at org.elasticsearch.marvel.agent.exporter.ESExporter.exportXContent
> (ESExporter.java:252)
> at org.elasticsearch.marvel.agent.exporter.ESExporter.
> exportNodeStats(ESExporter.java:134)
> at org.elasticsearch.marvel.agent.AgentService$ExportingWorker.
> exportNodeStats(AgentService.java:274)
> at org.elasticsearch.marvel.agent.AgentService$ExportingWorker.run(
> AgentService.java:174)
> at java.lang.Thread.run(Thread.java:724)
> On Sun, Feb 2, 2014 at 3:43 PM, Ron Sher  wrote:
>> I've noticed that I didn't have a logging.yml (was called logging.xml
>> instead).
>> Changed that and then I see:
>>
>> [2014-02-02 15:42:19,824][ERROR][marvel.agent.exporter] error sending
>> data
>> java.io.FileNotFoundException: http://localhost:9200/_bulk
>> 
>> atsun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1623)
>> at org.elasticsearch.marvel.agent.exporter.ESExporter.
>> sendCloseExportingConnection(ESExporter.java:232)
>> at org.elasticsearch.marvel.agent.exporter.ESExporter.
>> exportXContent(ESExporter.java:252)
>> at org.elasticsearch.marvel.agent.exporter.ESExporter.
>> exportClusterStats(ESExporter.java:172)
>> at org.elasticsearch.marvel.agent.AgentService$ExportingWorker.
>> exportClusterStats(AgentService.java:214)
>> at org.elasticsearch.marvel.agent.AgentService$ExportingWorker.run
>> (AgentService.java:180)
>> at java.lang.Thread.run(Thread.java:724)
>>
>>
>> What now?
>>
>>
>> On Sun, Feb 2, 2014 at 11:29 AM, Ron Sher  wrote:
>>
>>> This is what I see in the log after the restart:
>>> STATUS | wrapper  | 2014/02/02 11:26:54 |   Copyright (C) 1999-2011
>>> Tanuki Software, Ltd. All Rights Reserved.
>>> STATUS | wrapper  | 2014/02/02 11:26:54 |
>>> http://wrapper.tanukisoftware.com
>>> STATUS | wrapper  | 2014/02/02 11:26:54 |
>>> WARN   | wrapper  | 2014/02/02 11:26:54 | Encountered an invalid
>>> numerical value for configuration property 
>>> wrapper.java.initmemory=%ES_HEAP_SIZE%.
>>>  Resolving to 0.
>>> WARN   | wrapper  | 2014/02/02 11:26:54 | Encountered an invalid
>>> numerical value for configuration property 
>>> wrapper.java.maxmemory=%ES_HEAP_SIZE%.
>>>  Resolving to 0.
>>> STATUS | wrapper  | 2014/02/02 11:26:54 | Launching a JVM...
>>> INFO   | jvm 1| 2014/02/02 11:26:55 | WrapperManager: Initializing...
>>> INFO   | jvm 1| 2014/02/02 11:27:01 | log4j:WARN No appenders could
>>> be found for logger (node).
>>> INFO   | jvm 1| 2014/02/02 11:27:01 | log4j:WARN Please initialize
>>> the log4j system properly.
>>> INFO   | jvm 1| 2014/02/02 11:27:01 | log4j:WARN See
>>> http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
>>>
>>>
>>>
>>> On Sun, Feb 2, 2014 at 10:05 AM, Boaz Leskes  wrote:
>>>
 OK, interesting.

 Can you check the logs on one of the nodes to if there are any errors?
 also please double check that when the node started it logged a line
 similar to the following (containing marvel in the list after loaded):

 [2014-02-02 09:03:48,043][INFO ][plugins  ] 
 [Stonewall]loaded
 [marvel], sites [marvel]



 start a node (one is enough)


 On Sunday, February 2, 2014 8:50:47 AM UTC+1, Ron Sher wrote:

> again, using 0.90.10.
> This is what I did:
> bin/plug

Re: marvel shows empty dashboard

2014-02-02 Thread Ron Sher
The beginning of the log looks like:
[2014-02-02 15:38:56,003][INFO ][node ] [hades3] version
[0.90.10], pid[20219], build[0a5781f/2014-01-10T10:18:37Z]
[2014-02-02 15:38:56,004][INFO ][node ] [hades3]
initializing ...
[2014-02-02 15:38:56,027][INFO ][plugins  ] [hades3] loaded
[marvel], sites [marvel, head]
[2014-02-02 15:39:01,302][INFO ][node ] [hades3]
initialized
[2014-02-02 15:39:01,302][INFO ][node ] [hades3]
starting ...
[2014-02-02 15:39:01,410][INFO ][transport] [hades3]
bound_address {inet[/0:0:0:0:0:0:0:0:9300]}, publish_address {inet[/
192.168.10.148:9300]}
[2014-02-02 15:39:06,408][ERROR][marvel.agent.exporter] error sending
data
java.io.FileNotFoundException: http://localhost:9200/_bulk

atsun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1623)
at org.elasticsearch.marvel.agent.exporter.ESExporter.
sendCloseExportingConnection(ESExporter.java:232)
at org.elasticsearch.marvel.agent.exporter.ESExporter.exportXContent
(ESExporter.java:252)
at org.elasticsearch.marvel.agent.exporter.ESExporter.
exportNodeStats(ESExporter.java:134)
at org.elasticsearch.marvel.agent.AgentService$ExportingWorker.
exportNodeStats(AgentService.java:274)
at org.elasticsearch.marvel.agent.AgentService$ExportingWorker.run(
AgentService.java:174)
at java.lang.Thread.run(Thread.java:724)



On Sun, Feb 2, 2014 at 3:43 PM, Ron Sher  wrote:

> I've noticed that I didn't have a logging.yml (was called logging.xml
> instead).
> Changed that and then I see:
>
> [2014-02-02 15:42:19,824][ERROR][marvel.agent.exporter] error sending
> data
> java.io.FileNotFoundException: http://localhost:9200/_bulk
> 
> atsun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1623)
> at org.elasticsearch.marvel.agent.exporter.ESExporter.
> sendCloseExportingConnection(ESExporter.java:232)
> at org.elasticsearch.marvel.agent.exporter.ESExporter.
> exportXContent(ESExporter.java:252)
> at org.elasticsearch.marvel.agent.exporter.ESExporter.
> exportClusterStats(ESExporter.java:172)
> at org.elasticsearch.marvel.agent.AgentService$ExportingWorker.
> exportClusterStats(AgentService.java:214)
> at org.elasticsearch.marvel.agent.AgentService$ExportingWorker.run
> (AgentService.java:180)
> at java.lang.Thread.run(Thread.java:724)
>
>
> What now?
>
>
> On Sun, Feb 2, 2014 at 11:29 AM, Ron Sher  wrote:
>
>> This is what I see in the log after the restart:
>> STATUS | wrapper  | 2014/02/02 11:26:54 |   Copyright (C) 1999-2011
>> Tanuki Software, Ltd. All Rights Reserved.
>> STATUS | wrapper  | 2014/02/02 11:26:54 |
>> http://wrapper.tanukisoftware.com
>> STATUS | wrapper  | 2014/02/02 11:26:54 |
>> WARN   | wrapper  | 2014/02/02 11:26:54 | Encountered an invalid
>> numerical value for configuration property 
>> wrapper.java.initmemory=%ES_HEAP_SIZE%.
>>  Resolving to 0.
>> WARN   | wrapper  | 2014/02/02 11:26:54 | Encountered an invalid
>> numerical value for configuration property 
>> wrapper.java.maxmemory=%ES_HEAP_SIZE%.
>>  Resolving to 0.
>> STATUS | wrapper  | 2014/02/02 11:26:54 | Launching a JVM...
>> INFO   | jvm 1| 2014/02/02 11:26:55 | WrapperManager: Initializing...
>> INFO   | jvm 1| 2014/02/02 11:27:01 | log4j:WARN No appenders could
>> be found for logger (node).
>> INFO   | jvm 1| 2014/02/02 11:27:01 | log4j:WARN Please initialize
>> the log4j system properly.
>> INFO   | jvm 1| 2014/02/02 11:27:01 | log4j:WARN See
>> http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
>>
>>
>>
>> On Sun, Feb 2, 2014 at 10:05 AM, Boaz Leskes  wrote:
>>
>>> OK, interesting.
>>>
>>> Can you check the logs on one of the nodes to if there are any errors?
>>> also please double check that when the node started it logged a line
>>> similar to the following (containing marvel in the list after loaded):
>>>
>>> [2014-02-02 09:03:48,043][INFO ][plugins  ] 
>>> [Stonewall]loaded
>>> [marvel], sites [marvel]
>>>
>>>
>>>
>>> start a node (one is enough)
>>>
>>>
>>> On Sunday, February 2, 2014 8:50:47 AM UTC+1, Ron Sher wrote:
>>>
 again, using 0.90.10.
 This is what I did:
 bin/plugin -i elasticsearch/marvel/latest
  /etc/init.d/elasticsearch restart

 Did the same on a different cluster - still doesn't work.


 On Sun, Feb 2, 2014 at 9:45 AM, Boaz Leskes  wrote:

> Hi Ron,
>
> It looks like no data is sent. What version of ES are you running? Did
> you restart tES after installing the plugin?
>
> Regards,
> Boaz
>
>
> On Sun, Feb 2, 2014 at 8:27 AM, Ron Sher  wrote:
>
>> Tony,
>> What do you mean by ?
>>
>>  Indeed I've added marvel to an already running cluster and no data
>> is shown in the dashboard and I don't see any marvel ind

Re: marvel shows empty dashboard

2014-02-02 Thread Ron Sher
I've noticed that I didn't have a logging.yml (was called logging.xml
instead).
Changed that and then I see:

[2014-02-02 15:42:19,824][ERROR][marvel.agent.exporter] error sending
data
java.io.FileNotFoundException: http://localhost:9200/_bulk

atsun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1623)
at org.elasticsearch.marvel.agent.exporter.ESExporter.
sendCloseExportingConnection(ESExporter.java:232)
at org.elasticsearch.marvel.agent.exporter.ESExporter.exportXContent
(ESExporter.java:252)
at org.elasticsearch.marvel.agent.exporter.ESExporter.
exportClusterStats(ESExporter.java:172)
at org.elasticsearch.marvel.agent.AgentService$ExportingWorker.
exportClusterStats(AgentService.java:214)
at org.elasticsearch.marvel.agent.AgentService$ExportingWorker.run(
AgentService.java:180)
at java.lang.Thread.run(Thread.java:724)


What now?


On Sun, Feb 2, 2014 at 11:29 AM, Ron Sher  wrote:

> This is what I see in the log after the restart:
> STATUS | wrapper  | 2014/02/02 11:26:54 |   Copyright (C) 1999-2011 Tanuki
> Software, Ltd. All Rights Reserved.
> STATUS | wrapper  | 2014/02/02 11:26:54 |
> http://wrapper.tanukisoftware.com
> STATUS | wrapper  | 2014/02/02 11:26:54 |
> WARN   | wrapper  | 2014/02/02 11:26:54 | Encountered an invalid numerical
> value for configuration property wrapper.java.initmemory=%ES_HEAP_SIZE%.
>  Resolving to 0.
> WARN   | wrapper  | 2014/02/02 11:26:54 | Encountered an invalid numerical
> value for configuration property wrapper.java.maxmemory=%ES_HEAP_SIZE%.
>  Resolving to 0.
> STATUS | wrapper  | 2014/02/02 11:26:54 | Launching a JVM...
> INFO   | jvm 1| 2014/02/02 11:26:55 | WrapperManager: Initializing...
> INFO   | jvm 1| 2014/02/02 11:27:01 | log4j:WARN No appenders could
> be found for logger (node).
> INFO   | jvm 1| 2014/02/02 11:27:01 | log4j:WARN Please initialize
> the log4j system properly.
> INFO   | jvm 1| 2014/02/02 11:27:01 | log4j:WARN See
> http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
>
>
>
> On Sun, Feb 2, 2014 at 10:05 AM, Boaz Leskes  wrote:
>
>> OK, interesting.
>>
>> Can you check the logs on one of the nodes to if there are any errors?
>> also please double check that when the node started it logged a line
>> similar to the following (containing marvel in the list after loaded):
>>
>> [2014-02-02 09:03:48,043][INFO ][plugins  ] [Stonewall]loaded
>> [marvel], sites [marvel]
>>
>>
>>
>> start a node (one is enough)
>>
>>
>> On Sunday, February 2, 2014 8:50:47 AM UTC+1, Ron Sher wrote:
>>
>>> again, using 0.90.10.
>>> This is what I did:
>>> bin/plugin -i elasticsearch/marvel/latest
>>>  /etc/init.d/elasticsearch restart
>>>
>>> Did the same on a different cluster - still doesn't work.
>>>
>>>
>>> On Sun, Feb 2, 2014 at 9:45 AM, Boaz Leskes  wrote:
>>>
 Hi Ron,

 It looks like no data is sent. What version of ES are you running? Did
 you restart tES after installing the plugin?

 Regards,
 Boaz


 On Sun, Feb 2, 2014 at 8:27 AM, Ron Sher  wrote:

> Tony,
> What do you mean by ?
>
>  Indeed I've added marvel to an already running cluster and no data
> is shown in the dashboard and I don't see any marvel index
>
> Ron
>
>
> On Fri, Jan 31, 2014 at 12:47 AM, Tony Su  wrote:
>
>>  Just a FYI
>> I just installed Marvel and I noticed you need  for Marvel
>> to start collecting and displaying data, even about itself.
>> If your machines are all previously setup and data already in place,
>> I don't know if you'd read anything.
>> Other thing I noticed is that  ES nodes have to be the same
>> version.
>> So, for example if Marvel is pointing to an odd-ball ES node, there
>> would not be any activity with any other ES node so would be blank.
>>
>> And, I assume that after changing ES versions you restarted the ES
>> services on every node? Otherwise you're still stuck on the previous
>> version.
>>
>> HTH,
>> Tony
>>
>>
>>
>> On Thursday, January 30, 2014 11:24:11 AM UTC-8, Brad Jordan wrote:
>>
>>> I keep getting this alert: *No results* There were no results
>>> because no indices were found that match your selected time span.
>>>
>>> -Brad
>>>
>>> On Thursday, January 30, 2014 12:23:04 PM UTC-7, Brad Jordan wrote:

 Upgraded my cluster to 0.9.10 and still get a blank Marvel
 dashboard...

 I have about 30 indexes which all have data starting on about
 1/20/2014 going back to 5/01/2013. Bigdesk and the Head plugin have no
 problems seeing that nodes, shards, indexes. Is there an additional 
 step
 I'm missing?

 -Brad

 On Thursday, January 30, 2014 10:48:04 AM UTC-7, Brad Jordan wrote:
>
> Thanks!
>
>>

Re: marvel shows empty dashboard

2014-02-02 Thread Ron Sher
This is what I see in the log after the restart:
STATUS | wrapper  | 2014/02/02 11:26:54 |   Copyright (C) 1999-2011 Tanuki
Software, Ltd. All Rights Reserved.
STATUS | wrapper  | 2014/02/02 11:26:54 |
http://wrapper.tanukisoftware.com
STATUS | wrapper  | 2014/02/02 11:26:54 |
WARN   | wrapper  | 2014/02/02 11:26:54 | Encountered an invalid numerical
value for configuration property wrapper.java.initmemory=%ES_HEAP_SIZE%.
 Resolving to 0.
WARN   | wrapper  | 2014/02/02 11:26:54 | Encountered an invalid numerical
value for configuration property wrapper.java.maxmemory=%ES_HEAP_SIZE%.
 Resolving to 0.
STATUS | wrapper  | 2014/02/02 11:26:54 | Launching a JVM...
INFO   | jvm 1| 2014/02/02 11:26:55 | WrapperManager: Initializing...
INFO   | jvm 1| 2014/02/02 11:27:01 | log4j:WARN No appenders could be
found for logger (node).
INFO   | jvm 1| 2014/02/02 11:27:01 | log4j:WARN Please initialize the
log4j system properly.
INFO   | jvm 1| 2014/02/02 11:27:01 | log4j:WARN See
http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.



On Sun, Feb 2, 2014 at 10:05 AM, Boaz Leskes  wrote:

> OK, interesting.
>
> Can you check the logs on one of the nodes to if there are any errors?
> also please double check that when the node started it logged a line
> similar to the following (containing marvel in the list after loaded):
>
> [2014-02-02 09:03:48,043][INFO ][plugins  ] [Stonewall]loaded
> [marvel], sites [marvel]
>
>
>
> start a node (one is enough)
>
>
> On Sunday, February 2, 2014 8:50:47 AM UTC+1, Ron Sher wrote:
>
>> again, using 0.90.10.
>> This is what I did:
>> bin/plugin -i elasticsearch/marvel/latest
>>  /etc/init.d/elasticsearch restart
>>
>> Did the same on a different cluster - still doesn't work.
>>
>>
>> On Sun, Feb 2, 2014 at 9:45 AM, Boaz Leskes  wrote:
>>
>>> Hi Ron,
>>>
>>> It looks like no data is sent. What version of ES are you running? Did
>>> you restart tES after installing the plugin?
>>>
>>> Regards,
>>> Boaz
>>>
>>>
>>> On Sun, Feb 2, 2014 at 8:27 AM, Ron Sher  wrote:
>>>
 Tony,
 What do you mean by ?

  Indeed I've added marvel to an already running cluster and no data is
 shown in the dashboard and I don't see any marvel index

 Ron


 On Fri, Jan 31, 2014 at 12:47 AM, Tony Su  wrote:

>  Just a FYI
> I just installed Marvel and I noticed you need  for Marvel
> to start collecting and displaying data, even about itself.
> If your machines are all previously setup and data already in place, I
> don't know if you'd read anything.
> Other thing I noticed is that  ES nodes have to be the same
> version.
> So, for example if Marvel is pointing to an odd-ball ES node, there
> would not be any activity with any other ES node so would be blank.
>
> And, I assume that after changing ES versions you restarted the ES
> services on every node? Otherwise you're still stuck on the previous
> version.
>
> HTH,
> Tony
>
>
>
> On Thursday, January 30, 2014 11:24:11 AM UTC-8, Brad Jordan wrote:
>
>> I keep getting this alert: *No results* There were no results
>> because no indices were found that match your selected time span.
>>
>> -Brad
>>
>> On Thursday, January 30, 2014 12:23:04 PM UTC-7, Brad Jordan wrote:
>>>
>>> Upgraded my cluster to 0.9.10 and still get a blank Marvel
>>> dashboard...
>>>
>>> I have about 30 indexes which all have data starting on about
>>> 1/20/2014 going back to 5/01/2013. Bigdesk and the Head plugin have no
>>> problems seeing that nodes, shards, indexes. Is there an additional step
>>> I'm missing?
>>>
>>> -Brad
>>>
>>> On Thursday, January 30, 2014 10:48:04 AM UTC-7, Brad Jordan wrote:

 Thanks!


 On Thursday, January 30, 2014 10:43:35 AM UTC-7, Boaz Leskes wrote:
>
> Hi brad,
>
> You should upgrade to 0.90.10. 0.90.7 is not supported by marvel.
>
> Cheers,
> Boaz
>
>
> On Thu, Jan 30, 2014 at 6:39 PM, Brad Jordan 
> wrote:
>
>> I also have the same issue. I'm running elasticsearch-0.90.7. I
>> installed the plugin, bounced the cluster and Marvel is just blank. 
>> Is
>> there a config I'm missing?
>>
>> -Brad
>>
>> On Thursday, January 30, 2014 5:22:03 AM UTC-7, Ron Sher wrote:
>>>
>>> Hey,
>>>
>>> Just tried installing the plugin.
>>> Installation was easy (bin/plugin -i elasticsearch/marvel/latest
>>>  followed by a restart) by then the plugin shows an empty
>>> dashboard.
>>>
>>> Am I missing something?\
>>>
>>> Thanks,
>>> Ron
>>>
>>>--
>> You received this message because you are subscribed to a topic
>

Re: marvel shows empty dashboard

2014-02-02 Thread Boaz Leskes
OK, interesting. 

Can you check the logs on one of the nodes to if there are any errors? also 
please double check that when the node started it logged a line similar to 
the following (containing marvel in the list after loaded):

[2014-02-02 09:03:48,043][INFO ][plugins  ] [Stonewall]loaded 
[marvel], sites [marvel]



start a node (one is enough)

On Sunday, February 2, 2014 8:50:47 AM UTC+1, Ron Sher wrote:
>
> again, using 0.90.10.
> This is what I did:
> bin/plugin -i elasticsearch/marvel/latest
>  /etc/init.d/elasticsearch restart
>
> Did the same on a different cluster - still doesn't work.
>
>
> On Sun, Feb 2, 2014 at 9:45 AM, Boaz Leskes 
> > wrote:
>
>> Hi Ron,
>>
>> It looks like no data is sent. What version of ES are you running? Did 
>> you restart tES after installing the plugin?
>>
>> Regards,
>> Boaz
>>
>>
>> On Sun, Feb 2, 2014 at 8:27 AM, Ron Sher 
>> > wrote:
>>
>>> Tony,
>>> What do you mean by ? 
>>>
>>>  Indeed I've added marvel to an already running cluster and no data is 
>>> shown in the dashboard and I don't see any marvel index
>>>
>>> Ron
>>>  
>>>
>>> On Fri, Jan 31, 2014 at 12:47 AM, Tony Su 
>>> > wrote:
>>>
  Just a FYI
 I just installed Marvel and I noticed you need  for Marvel to 
 start collecting and displaying data, even about itself.
 If your machines are all previously setup and data already in place, I 
 don't know if you'd read anything.
 Other thing I noticed is that  ES nodes have to be the same 
 version.
 So, for example if Marvel is pointing to an odd-ball ES node, there 
 would not be any activity with any other ES node so would be blank.
  
 And, I assume that after changing ES versions you restarted the ES 
 services on every node? Otherwise you're still stuck on the previous 
 version.
  
 HTH,
 Tony
   
  
  
 On Thursday, January 30, 2014 11:24:11 AM UTC-8, Brad Jordan wrote:

> I keep getting this alert: *No results* There were no results because 
> no indices were found that match your selected time span.
>
> -Brad
>
> On Thursday, January 30, 2014 12:23:04 PM UTC-7, Brad Jordan wrote:
>>
>> Upgraded my cluster to 0.9.10 and still get a blank Marvel 
>> dashboard... 
>>
>> I have about 30 indexes which all have data starting on about 
>> 1/20/2014 going back to 5/01/2013. Bigdesk and the Head plugin have no 
>> problems seeing that nodes, shards, indexes. Is there an additional step 
>> I'm missing?
>>
>> -Brad
>>
>> On Thursday, January 30, 2014 10:48:04 AM UTC-7, Brad Jordan wrote:
>>>
>>> Thanks!
>>>
>>>
>>> On Thursday, January 30, 2014 10:43:35 AM UTC-7, Boaz Leskes wrote:

 Hi brad,

 You should upgrade to 0.90.10. 0.90.7 is not supported by marvel.

 Cheers,
 Boaz


 On Thu, Jan 30, 2014 at 6:39 PM, Brad Jordan wrote:

> I also have the same issue. I'm running elasticsearch-0.90.7. I 
> installed the plugin, bounced the cluster and Marvel is just blank. 
> Is 
> there a config I'm missing?
>
> -Brad
>
> On Thursday, January 30, 2014 5:22:03 AM UTC-7, Ron Sher wrote:
>>
>> Hey,
>>
>> Just tried installing the plugin.
>> Installation was easy (bin/plugin -i elasticsearch/marvel/latest 
>> followed 
>> by a restart) by then the plugin shows an empty dashboard.
>>
>> Am I missing something?\
>>
>> Thanks,
>> Ron
>>
>>-- 
> You received this message because you are subscribed to a topic in 
> the Google Groups "elasticsearch" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/elasticsearch/UPBMKvxwwM8/unsubscribe.
> To unsubscribe from this group and all its topics, send an email 
> to elasticsearc...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/elasticsearch/4dcf998b-
> 89fe-4f07-bb2d-a036cd567c66%40googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
  
-- 
 You received this message because you are subscribed to a topic in the 
 Google Groups "elasticsearch" group.
 To unsubscribe from this topic, visit 
 https://groups.google.com/d/topic/elasticsearch/UPBMKvxwwM8/unsubscribe
 .
 To unsubscribe from this group and all its topics, send an email to 
 elasticsearc...@googlegroups.com .
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/elasticsearch/43083c5a-bc16-4f01-8450-15402e82d798%40googlegroups.com
 .
  
 For more options, visit https://groups.google.com/groups/opt_out.
  
>>>  
>>>  -

Re: marvel shows empty dashboard

2014-02-01 Thread Ron Sher
again, using 0.90.10.
This is what I did:
bin/plugin -i elasticsearch/marvel/latest
 /etc/init.d/elasticsearch restart

Did the same on a different cluster - still doesn't work.


On Sun, Feb 2, 2014 at 9:45 AM, Boaz Leskes  wrote:

> Hi Ron,
>
> It looks like no data is sent. What version of ES are you running? Did you
> restart tES after installing the plugin?
>
> Regards,
> Boaz
>
>
> On Sun, Feb 2, 2014 at 8:27 AM, Ron Sher  wrote:
>
>> Tony,
>> What do you mean by ?
>>
>>  Indeed I've added marvel to an already running cluster and no data is
>> shown in the dashboard and I don't see any marvel index
>>
>> Ron
>>
>>
>> On Fri, Jan 31, 2014 at 12:47 AM, Tony Su  wrote:
>>
>>>  Just a FYI
>>> I just installed Marvel and I noticed you need  for Marvel to
>>> start collecting and displaying data, even about itself.
>>> If your machines are all previously setup and data already in place, I
>>> don't know if you'd read anything.
>>> Other thing I noticed is that  ES nodes have to be the same version.
>>> So, for example if Marvel is pointing to an odd-ball ES node, there
>>> would not be any activity with any other ES node so would be blank.
>>>
>>> And, I assume that after changing ES versions you restarted the ES
>>> services on every node? Otherwise you're still stuck on the previous
>>> version.
>>>
>>> HTH,
>>> Tony
>>>
>>>
>>>
>>> On Thursday, January 30, 2014 11:24:11 AM UTC-8, Brad Jordan wrote:
>>>
 I keep getting this alert: *No results* There were no results because
 no indices were found that match your selected time span.

 -Brad

 On Thursday, January 30, 2014 12:23:04 PM UTC-7, Brad Jordan wrote:
>
> Upgraded my cluster to 0.9.10 and still get a blank Marvel
> dashboard...
>
> I have about 30 indexes which all have data starting on about
> 1/20/2014 going back to 5/01/2013. Bigdesk and the Head plugin have no
> problems seeing that nodes, shards, indexes. Is there an additional step
> I'm missing?
>
> -Brad
>
> On Thursday, January 30, 2014 10:48:04 AM UTC-7, Brad Jordan wrote:
>>
>> Thanks!
>>
>>
>> On Thursday, January 30, 2014 10:43:35 AM UTC-7, Boaz Leskes wrote:
>>>
>>> Hi brad,
>>>
>>> You should upgrade to 0.90.10. 0.90.7 is not supported by marvel.
>>>
>>> Cheers,
>>> Boaz
>>>
>>>
>>> On Thu, Jan 30, 2014 at 6:39 PM, Brad Jordan wrote:
>>>
 I also have the same issue. I'm running elasticsearch-0.90.7. I
 installed the plugin, bounced the cluster and Marvel is just blank. Is
 there a config I'm missing?

 -Brad

 On Thursday, January 30, 2014 5:22:03 AM UTC-7, Ron Sher wrote:
>
> Hey,
>
> Just tried installing the plugin.
> Installation was easy (bin/plugin -i elasticsearch/marvel/latest 
> followed
> by a restart) by then the plugin shows an empty dashboard.
>
> Am I missing something?\
>
> Thanks,
> Ron
>
>--
 You received this message because you are subscribed to a topic in
 the Google Groups "elasticsearch" group.
 To unsubscribe from this topic, visit https://groups.google.com/d/
 topic/elasticsearch/UPBMKvxwwM8/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 elasticsearc...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/elasticsearch/4dcf998b-
 89fe-4f07-bb2d-a036cd567c66%40googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.

>>>
>>>--
>>> You received this message because you are subscribed to a topic in the
>>> Google Groups "elasticsearch" group.
>>> To unsubscribe from this topic, visit
>>> https://groups.google.com/d/topic/elasticsearch/UPBMKvxwwM8/unsubscribe.
>>> To unsubscribe from this group and all its topics, send an email to
>>> elasticsearch+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/elasticsearch/43083c5a-bc16-4f01-8450-15402e82d798%40googlegroups.com
>>> .
>>>
>>> For more options, visit https://groups.google.com/groups/opt_out.
>>>
>>
>>  --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "elasticsearch" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/elasticsearch/UPBMKvxwwM8/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to
>> elasticsearch+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/elasticsearch/CAKHuyJr7%3Deh-s85HrwTjmKJ7wTcezU4aiSQG6P8vC2zFd2OD-w%40mail.gmail.com
>> .
>>
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>
>  --
> You received this message because you are s

Re: marvel shows empty dashboard

2014-02-01 Thread Boaz Leskes
Hi Ron,


It looks like no data is sent. What version of ES are you running? Did you 
restart tES after installing the plugin?




Regards,

Boaz

On Sun, Feb 2, 2014 at 8:27 AM, Ron Sher  wrote:

> Tony,
> What do you mean by ?
> Indeed I've added marvel to an already running cluster and no data is shown
> in the dashboard and I don't see any marvel index
> Ron
> On Fri, Jan 31, 2014 at 12:47 AM, Tony Su  wrote:
>> Just a FYI
>> I just installed Marvel and I noticed you need  for Marvel to
>> start collecting and displaying data, even about itself.
>> If your machines are all previously setup and data already in place, I
>> don't know if you'd read anything.
>> Other thing I noticed is that  ES nodes have to be the same version.
>> So, for example if Marvel is pointing to an odd-ball ES node, there would
>> not be any activity with any other ES node so would be blank.
>>
>> And, I assume that after changing ES versions you restarted the ES
>> services on every node? Otherwise you're still stuck on the previous
>> version.
>>
>> HTH,
>> Tony
>>
>>
>>
>> On Thursday, January 30, 2014 11:24:11 AM UTC-8, Brad Jordan wrote:
>>
>>> I keep getting this alert: *No results* There were no results because no
>>> indices were found that match your selected time span.
>>>
>>> -Brad
>>>
>>> On Thursday, January 30, 2014 12:23:04 PM UTC-7, Brad Jordan wrote:

 Upgraded my cluster to 0.9.10 and still get a blank Marvel dashboard...

 I have about 30 indexes which all have data starting on about 1/20/2014
 going back to 5/01/2013. Bigdesk and the Head plugin have no problems
 seeing that nodes, shards, indexes. Is there an additional step I'm 
 missing?

 -Brad

 On Thursday, January 30, 2014 10:48:04 AM UTC-7, Brad Jordan wrote:
>
> Thanks!
>
>
> On Thursday, January 30, 2014 10:43:35 AM UTC-7, Boaz Leskes wrote:
>>
>> Hi brad,
>>
>> You should upgrade to 0.90.10. 0.90.7 is not supported by marvel.
>>
>> Cheers,
>> Boaz
>>
>>
>> On Thu, Jan 30, 2014 at 6:39 PM, Brad Jordan wrote:
>>
>>> I also have the same issue. I'm running elasticsearch-0.90.7. I
>>> installed the plugin, bounced the cluster and Marvel is just blank. Is
>>> there a config I'm missing?
>>>
>>> -Brad
>>>
>>> On Thursday, January 30, 2014 5:22:03 AM UTC-7, Ron Sher wrote:

 Hey,

 Just tried installing the plugin.
 Installation was easy (bin/plugin -i elasticsearch/marvel/latest 
 followed
 by a restart) by then the plugin shows an empty dashboard.

 Am I missing something?\

 Thanks,
 Ron

   --
>>> You received this message because you are subscribed to a topic in
>>> the Google Groups "elasticsearch" group.
>>> To unsubscribe from this topic, visit https://groups.google.com/d/
>>> topic/elasticsearch/UPBMKvxwwM8/unsubscribe.
>>> To unsubscribe from this group and all its topics, send an email to
>>> elasticsearc...@googlegroups.com.
>>> To view this discussion on the web visit https://groups.google.com/d/
>>> msgid/elasticsearch/4dcf998b-89fe-4f07-bb2d-a036cd567c66%
>>> 40googlegroups.com.
>>> For more options, visit https://groups.google.com/groups/opt_out.
>>>
>>
>>  --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "elasticsearch" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/elasticsearch/UPBMKvxwwM8/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to
>> elasticsearch+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/elasticsearch/43083c5a-bc16-4f01-8450-15402e82d798%40googlegroups.com
>> .
>>
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
> -- 
> You received this message because you are subscribed to a topic in the Google 
> Groups "elasticsearch" group.
> To unsubscribe from this topic, visit 
> https://groups.google.com/d/topic/elasticsearch/UPBMKvxwwM8/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to 
> elasticsearch+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/elasticsearch/CAKHuyJr7%3Deh-s85HrwTjmKJ7wTcezU4aiSQG6P8vC2zFd2OD-w%40mail.gmail.com.
> For more options, visit https://groups.google.com/groups/opt_out.

-- 
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/1391327120065.1c3e15a9%40Nodemailer.
For more options, visit https://groups.google.com/groups/opt_out.


Re: marvel shows empty dashboard

2014-02-01 Thread Ron Sher
Tony,
What do you mean by ?

Indeed I've added marvel to an already running cluster and no data is shown
in the dashboard and I don't see any marvel index

Ron


On Fri, Jan 31, 2014 at 12:47 AM, Tony Su  wrote:

> Just a FYI
> I just installed Marvel and I noticed you need  for Marvel to
> start collecting and displaying data, even about itself.
> If your machines are all previously setup and data already in place, I
> don't know if you'd read anything.
> Other thing I noticed is that  ES nodes have to be the same version.
> So, for example if Marvel is pointing to an odd-ball ES node, there would
> not be any activity with any other ES node so would be blank.
>
> And, I assume that after changing ES versions you restarted the ES
> services on every node? Otherwise you're still stuck on the previous
> version.
>
> HTH,
> Tony
>
>
>
> On Thursday, January 30, 2014 11:24:11 AM UTC-8, Brad Jordan wrote:
>
>> I keep getting this alert: *No results* There were no results because no
>> indices were found that match your selected time span.
>>
>> -Brad
>>
>> On Thursday, January 30, 2014 12:23:04 PM UTC-7, Brad Jordan wrote:
>>>
>>> Upgraded my cluster to 0.9.10 and still get a blank Marvel dashboard...
>>>
>>> I have about 30 indexes which all have data starting on about 1/20/2014
>>> going back to 5/01/2013. Bigdesk and the Head plugin have no problems
>>> seeing that nodes, shards, indexes. Is there an additional step I'm missing?
>>>
>>> -Brad
>>>
>>> On Thursday, January 30, 2014 10:48:04 AM UTC-7, Brad Jordan wrote:

 Thanks!


 On Thursday, January 30, 2014 10:43:35 AM UTC-7, Boaz Leskes wrote:
>
> Hi brad,
>
> You should upgrade to 0.90.10. 0.90.7 is not supported by marvel.
>
> Cheers,
> Boaz
>
>
> On Thu, Jan 30, 2014 at 6:39 PM, Brad Jordan wrote:
>
>> I also have the same issue. I'm running elasticsearch-0.90.7. I
>> installed the plugin, bounced the cluster and Marvel is just blank. Is
>> there a config I'm missing?
>>
>> -Brad
>>
>> On Thursday, January 30, 2014 5:22:03 AM UTC-7, Ron Sher wrote:
>>>
>>> Hey,
>>>
>>> Just tried installing the plugin.
>>> Installation was easy (bin/plugin -i elasticsearch/marvel/latest 
>>> followed
>>> by a restart) by then the plugin shows an empty dashboard.
>>>
>>> Am I missing something?\
>>>
>>> Thanks,
>>> Ron
>>>
>>>   --
>> You received this message because you are subscribed to a topic in
>> the Google Groups "elasticsearch" group.
>> To unsubscribe from this topic, visit https://groups.google.com/d/
>> topic/elasticsearch/UPBMKvxwwM8/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to
>> elasticsearc...@googlegroups.com.
>> To view this discussion on the web visit https://groups.google.com/d/
>> msgid/elasticsearch/4dcf998b-89fe-4f07-bb2d-a036cd567c66%
>> 40googlegroups.com.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>
>  --
> You received this message because you are subscribed to a topic in the
> Google Groups "elasticsearch" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/elasticsearch/UPBMKvxwwM8/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> elasticsearch+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/elasticsearch/43083c5a-bc16-4f01-8450-15402e82d798%40googlegroups.com
> .
>
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
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/CAKHuyJr7%3Deh-s85HrwTjmKJ7wTcezU4aiSQG6P8vC2zFd2OD-w%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: marvel shows empty dashboard

2014-02-01 Thread Ron Sher
I don't see any indices of marve:

ron@ron-VirtualBox:~$ curl -XGET "http://hades3:1/.marvel*/_stats?
clear&store"
curl: (7) couldn't connect to host
ron@ron-VirtualBox:~$ curl -XGET "http://hades3:9200/.marvel*/_stats?
clear&store"
{"error":"IndexMissingException[[.marvel*] missing]","status":404}


On Fri, Jan 31, 2014 at 10:31 AM, Boaz Leskes  wrote:

> Hi Tony,
>
> Marvel starts collecting stats 5 seconds after the node starts. If that's
> not happening for you, something else is wrong (an let's please open
> another thread on it, this one is already all over the place ;) ).
>
> As to ES version - with the exception of a rolling upgrade you are highly
> recommended to keep the versions of all nodes the same. This goes for both
> ES versions and the Java version you use. This is necessary to guaranty the
> correct behavior of the cluster.
>
> Cheers,
> Boaz
>
>
> On Thursday, January 30, 2014 11:47:36 PM UTC+1, Tony Su wrote:
>>
>> Just a FYI
>> I just installed Marvel and I noticed you need  for Marvel to
>> start collecting and displaying data, even about itself.
>> If your machines are all previously setup and data already in place, I
>> don't know if you'd read anything.
>> Other thing I noticed is that  ES nodes have to be the same version.
>> So, for example if Marvel is pointing to an odd-ball ES node, there would
>> not be any activity with any other ES node so would be blank.
>>
>> And, I assume that after changing ES versions you restarted the ES
>> services on every node? Otherwise you're still stuck on the previous
>> version.
>>
>> HTH,
>> Tony
>>
>>
>>
>> On Thursday, January 30, 2014 11:24:11 AM UTC-8, Brad Jordan wrote:
>>
>>> I keep getting this alert: *No results* There were no results because
>>> no indices were found that match your selected time span.
>>>
>>> -Brad
>>>
>>> On Thursday, January 30, 2014 12:23:04 PM UTC-7, Brad Jordan wrote:

 Upgraded my cluster to 0.9.10 and still get a blank Marvel dashboard...

 I have about 30 indexes which all have data starting on about 1/20/2014
 going back to 5/01/2013. Bigdesk and the Head plugin have no problems
 seeing that nodes, shards, indexes. Is there an additional step I'm 
 missing?

 -Brad

 On Thursday, January 30, 2014 10:48:04 AM UTC-7, Brad Jordan wrote:
>
> Thanks!
>
>
> On Thursday, January 30, 2014 10:43:35 AM UTC-7, Boaz Leskes wrote:
>>
>> Hi brad,
>>
>> You should upgrade to 0.90.10. 0.90.7 is not supported by marvel.
>>
>> Cheers,
>> Boaz
>>
>>
>> On Thu, Jan 30, 2014 at 6:39 PM, Brad Jordan wrote:
>>
>>> I also have the same issue. I'm running elasticsearch-0.90.7. I
>>> installed the plugin, bounced the cluster and Marvel is just blank. Is
>>> there a config I'm missing?
>>>
>>> -Brad
>>>
>>> On Thursday, January 30, 2014 5:22:03 AM UTC-7, Ron Sher wrote:

 Hey,

 Just tried installing the plugin.
 Installation was easy (bin/plugin -i elasticsearch/marvel/latest 
 followed
 by a restart) by then the plugin shows an empty dashboard.

 Am I missing something?\

 Thanks,
 Ron

   --
>>> You received this message because you are subscribed to a topic in
>>> the Google Groups "elasticsearch" group.
>>> To unsubscribe from this topic, visit https://groups.google.com/d/
>>> topic/elasticsearch/UPBMKvxwwM8/unsubscribe.
>>> To unsubscribe from this group and all its topics, send an email to
>>> elasticsearc...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/elasticsearch/4dcf998b-
>>> 89fe-4f07-bb2d-a036cd567c66%40googlegroups.com.
>>> For more options, visit https://groups.google.com/groups/opt_out.
>>>
>>
>>  --
> You received this message because you are subscribed to a topic in the
> Google Groups "elasticsearch" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/elasticsearch/UPBMKvxwwM8/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> elasticsearch+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/elasticsearch/d55bddb3-f7d4-4247-ab26-6d7007486eac%40googlegroups.com
> .
>
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
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/CAKHuyJpBsioPKLDXUcfiu_o6yHVa0_4cWVTU65g5WB6gXrD7PQ%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: marvel shows empty dashboard

2014-01-31 Thread Boaz Leskes
Hi Tony,

Marvel starts collecting stats 5 seconds after the node starts. If that's 
not happening for you, something else is wrong (an let's please open 
another thread on it, this one is already all over the place ;) ).

As to ES version - with the exception of a rolling upgrade you are highly 
recommended to keep the versions of all nodes the same. This goes for both 
ES versions and the Java version you use. This is necessary to guaranty the 
correct behavior of the cluster.

Cheers,
Boaz

On Thursday, January 30, 2014 11:47:36 PM UTC+1, Tony Su wrote:
>
> Just a FYI
> I just installed Marvel and I noticed you need  for Marvel to 
> start collecting and displaying data, even about itself.
> If your machines are all previously setup and data already in place, I 
> don't know if you'd read anything.
> Other thing I noticed is that  ES nodes have to be the same version.
> So, for example if Marvel is pointing to an odd-ball ES node, there would 
> not be any activity with any other ES node so would be blank.
>  
> And, I assume that after changing ES versions you restarted the ES 
> services on every node? Otherwise you're still stuck on the previous 
> version.
>  
> HTH,
> Tony
>  
>  
>
> On Thursday, January 30, 2014 11:24:11 AM UTC-8, Brad Jordan wrote:
>
>> I keep getting this alert: *No results* There were no results because no 
>> indices were found that match your selected time span.
>>
>> -Brad
>>
>> On Thursday, January 30, 2014 12:23:04 PM UTC-7, Brad Jordan wrote:
>>>
>>> Upgraded my cluster to 0.9.10 and still get a blank Marvel dashboard... 
>>>
>>> I have about 30 indexes which all have data starting on about 1/20/2014 
>>> going back to 5/01/2013. Bigdesk and the Head plugin have no problems 
>>> seeing that nodes, shards, indexes. Is there an additional step I'm missing?
>>>
>>> -Brad
>>>
>>> On Thursday, January 30, 2014 10:48:04 AM UTC-7, Brad Jordan wrote:

 Thanks!


 On Thursday, January 30, 2014 10:43:35 AM UTC-7, Boaz Leskes wrote:
>
> Hi brad,
>
> You should upgrade to 0.90.10. 0.90.7 is not supported by marvel.
>
> Cheers,
> Boaz
>
>
> On Thu, Jan 30, 2014 at 6:39 PM, Brad Jordan wrote:
>
>> I also have the same issue. I'm running elasticsearch-0.90.7. I 
>> installed the plugin, bounced the cluster and Marvel is just blank. Is 
>> there a config I'm missing?
>>
>> -Brad
>>
>> On Thursday, January 30, 2014 5:22:03 AM UTC-7, Ron Sher wrote:
>>>
>>> Hey,
>>>
>>> Just tried installing the plugin.
>>> Installation was easy (bin/plugin -i elasticsearch/marvel/latest 
>>> followed 
>>> by a restart) by then the plugin shows an empty dashboard.
>>>
>>> Am I missing something?\
>>>
>>> Thanks,
>>> Ron
>>>
>>>   -- 
>> You received this message because you are subscribed to a topic in 
>> the Google Groups "elasticsearch" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/elasticsearch/UPBMKvxwwM8/unsubscribe
>> .
>> To unsubscribe from this group and all its topics, send an email to 
>> elasticsearc...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/elasticsearch/4dcf998b-89fe-4f07-bb2d-a036cd567c66%40googlegroups.com
>> .
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>
>

-- 
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/d55bddb3-f7d4-4247-ab26-6d7007486eac%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: marvel shows empty dashboard

2014-01-30 Thread Brad Jordan
I actually READ the install instructions this time! You have to install it 
on all your nodes AND bounce the cluster. After that it worked like a 
charm! 

Thanks,
Brad

On Thursday, January 30, 2014 12:24:11 PM UTC-7, Brad Jordan wrote:
>
> I keep getting this alert: *No results* There were no results because no 
> indices were found that match your selected time span.
>
> -Brad
>
> On Thursday, January 30, 2014 12:23:04 PM UTC-7, Brad Jordan wrote:
>>
>> Upgraded my cluster to 0.9.10 and still get a blank Marvel dashboard... 
>>
>> I have about 30 indexes which all have data starting on about 1/20/2014 
>> going back to 5/01/2013. Bigdesk and the Head plugin have no problems 
>> seeing that nodes, shards, indexes. Is there an additional step I'm missing?
>>
>> -Brad
>>
>> On Thursday, January 30, 2014 10:48:04 AM UTC-7, Brad Jordan wrote:
>>>
>>> Thanks!
>>>
>>>
>>> On Thursday, January 30, 2014 10:43:35 AM UTC-7, Boaz Leskes wrote:

 Hi brad,

 You should upgrade to 0.90.10. 0.90.7 is not supported by marvel.

 Cheers,
 Boaz


 On Thu, Jan 30, 2014 at 6:39 PM, Brad Jordan wrote:

> I also have the same issue. I'm running elasticsearch-0.90.7. I 
> installed the plugin, bounced the cluster and Marvel is just blank. Is 
> there a config I'm missing?
>
> -Brad
>
> On Thursday, January 30, 2014 5:22:03 AM UTC-7, Ron Sher wrote:
>>
>> Hey,
>>
>> Just tried installing the plugin.
>> Installation was easy (bin/plugin -i elasticsearch/marvel/latest 
>> followed 
>> by a restart) by then the plugin shows an empty dashboard.
>>
>> Am I missing something?\
>>
>> Thanks,
>> Ron
>>
>>   -- 
> You received this message because you are subscribed to a topic in the 
> Google Groups "elasticsearch" group.
> To unsubscribe from this topic, visit 
> https://groups.google.com/d/topic/elasticsearch/UPBMKvxwwM8/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to 
> elasticsearc...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/elasticsearch/4dcf998b-89fe-4f07-bb2d-a036cd567c66%40googlegroups.com
> .
> For more options, visit https://groups.google.com/groups/opt_out.
>



-- 
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/e93b74be-7bfc-4893-8531-40cb3c8002e5%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: marvel shows empty dashboard

2014-01-30 Thread Tony Su
Just a FYI
I just installed Marvel and I noticed you need  for Marvel to 
start collecting and displaying data, even about itself.
If your machines are all previously setup and data already in place, I 
don't know if you'd read anything.
Other thing I noticed is that  ES nodes have to be the same version.
So, for example if Marvel is pointing to an odd-ball ES node, there would 
not be any activity with any other ES node so would be blank.
 
And, I assume that after changing ES versions you restarted the ES services 
on every node? Otherwise you're still stuck on the previous version.
 
HTH,
Tony
 
 

On Thursday, January 30, 2014 11:24:11 AM UTC-8, Brad Jordan wrote:

> I keep getting this alert: *No results* There were no results because no 
> indices were found that match your selected time span.
>
> -Brad
>
> On Thursday, January 30, 2014 12:23:04 PM UTC-7, Brad Jordan wrote:
>>
>> Upgraded my cluster to 0.9.10 and still get a blank Marvel dashboard... 
>>
>> I have about 30 indexes which all have data starting on about 1/20/2014 
>> going back to 5/01/2013. Bigdesk and the Head plugin have no problems 
>> seeing that nodes, shards, indexes. Is there an additional step I'm missing?
>>
>> -Brad
>>
>> On Thursday, January 30, 2014 10:48:04 AM UTC-7, Brad Jordan wrote:
>>>
>>> Thanks!
>>>
>>>
>>> On Thursday, January 30, 2014 10:43:35 AM UTC-7, Boaz Leskes wrote:

 Hi brad,

 You should upgrade to 0.90.10. 0.90.7 is not supported by marvel.

 Cheers,
 Boaz


 On Thu, Jan 30, 2014 at 6:39 PM, Brad Jordan wrote:

> I also have the same issue. I'm running elasticsearch-0.90.7. I 
> installed the plugin, bounced the cluster and Marvel is just blank. Is 
> there a config I'm missing?
>
> -Brad
>
> On Thursday, January 30, 2014 5:22:03 AM UTC-7, Ron Sher wrote:
>>
>> Hey,
>>
>> Just tried installing the plugin.
>> Installation was easy (bin/plugin -i elasticsearch/marvel/latest 
>> followed 
>> by a restart) by then the plugin shows an empty dashboard.
>>
>> Am I missing something?\
>>
>> Thanks,
>> Ron
>>
>>   -- 
> You received this message because you are subscribed to a topic in the 
> Google Groups "elasticsearch" group.
> To unsubscribe from this topic, visit 
> https://groups.google.com/d/topic/elasticsearch/UPBMKvxwwM8/unsubscribe
> .
> To unsubscribe from this group and all its topics, send an email to 
> elasticsearc...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/elasticsearch/4dcf998b-89fe-4f07-bb2d-a036cd567c66%40googlegroups.com
> .
> For more options, visit https://groups.google.com/groups/opt_out.
>



-- 
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/43083c5a-bc16-4f01-8450-15402e82d798%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: marvel shows empty dashboard

2014-01-30 Thread Boaz Leskes
Can you check if you have indices named .marvel-* ?

The easiest way to check would be:

curl -XGET "http://localhost:1/.marvel*/_stats?clear&store";

You should get an entry for every index.



On Thu, Jan 30, 2014 at 8:24 PM, Brad Jordan  wrote:

> I keep getting this alert: *No results* There were no results because no
> indices were found that match your selected time span.
>
> -Brad
>
>
> On Thursday, January 30, 2014 12:23:04 PM UTC-7, Brad Jordan wrote:
>>
>> Upgraded my cluster to 0.9.10 and still get a blank Marvel dashboard...
>>
>> I have about 30 indexes which all have data starting on about 1/20/2014
>> going back to 5/01/2013. Bigdesk and the Head plugin have no problems
>> seeing that nodes, shards, indexes. Is there an additional step I'm missing?
>>
>> -Brad
>>
>> On Thursday, January 30, 2014 10:48:04 AM UTC-7, Brad Jordan wrote:
>>>
>>> Thanks!
>>>
>>>
>>> On Thursday, January 30, 2014 10:43:35 AM UTC-7, Boaz Leskes wrote:

 Hi brad,

  You should upgrade to 0.90.10. 0.90.7 is not supported by marvel.

 Cheers,
 Boaz


 On Thu, Jan 30, 2014 at 6:39 PM, Brad Jordan wrote:

> I also have the same issue. I'm running elasticsearch-0.90.7. I
> installed the plugin, bounced the cluster and Marvel is just blank. Is
> there a config I'm missing?
>
> -Brad
>
> On Thursday, January 30, 2014 5:22:03 AM UTC-7, Ron Sher wrote:
>>
>> Hey,
>>
>>  Just tried installing the plugin.
>> Installation was easy (bin/plugin -i elasticsearch/marvel/latest followed
>> by a restart) by then the plugin shows an empty dashboard.
>>
>> Am I missing something?\
>>
>> Thanks,
>> Ron
>>
>>   --
> You received this message because you are subscribed to a topic in the
> Google Groups "elasticsearch" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/elasticsearch/UPBMKvxwwM8/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> elasticsearc...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/elasticsearch/4dcf998b-89fe-4f07-bb2d-a036cd567c66%
> 40googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>

  --
> You received this message because you are subscribed to a topic in the
> Google Groups "elasticsearch" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/elasticsearch/UPBMKvxwwM8/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> elasticsearch+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/elasticsearch/b7a84d31-97b8-4eb7-809a-59f494240ed3%40googlegroups.com
> .
>
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
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/CAKzwz0o0dp4y35QoV4KUS91oh8oit1rQFWb_rX%3Do4TmYCR6tPQ%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: marvel shows empty dashboard

2014-01-30 Thread Brad Jordan
I keep getting this alert: *No results* There were no results because no 
indices were found that match your selected time span.

-Brad

On Thursday, January 30, 2014 12:23:04 PM UTC-7, Brad Jordan wrote:
>
> Upgraded my cluster to 0.9.10 and still get a blank Marvel dashboard... 
>
> I have about 30 indexes which all have data starting on about 1/20/2014 
> going back to 5/01/2013. Bigdesk and the Head plugin have no problems 
> seeing that nodes, shards, indexes. Is there an additional step I'm missing?
>
> -Brad
>
> On Thursday, January 30, 2014 10:48:04 AM UTC-7, Brad Jordan wrote:
>>
>> Thanks!
>>
>>
>> On Thursday, January 30, 2014 10:43:35 AM UTC-7, Boaz Leskes wrote:
>>>
>>> Hi brad,
>>>
>>> You should upgrade to 0.90.10. 0.90.7 is not supported by marvel.
>>>
>>> Cheers,
>>> Boaz
>>>
>>>
>>> On Thu, Jan 30, 2014 at 6:39 PM, Brad Jordan  wrote:
>>>
 I also have the same issue. I'm running elasticsearch-0.90.7. I 
 installed the plugin, bounced the cluster and Marvel is just blank. Is 
 there a config I'm missing?

 -Brad

 On Thursday, January 30, 2014 5:22:03 AM UTC-7, Ron Sher wrote:
>
> Hey,
>
> Just tried installing the plugin.
> Installation was easy (bin/plugin -i elasticsearch/marvel/latest followed 
> by a restart) by then the plugin shows an empty dashboard.
>
> Am I missing something?\
>
> Thanks,
> Ron
>
>   -- 
 You received this message because you are subscribed to a topic in the 
 Google Groups "elasticsearch" group.
 To unsubscribe from this topic, visit 
 https://groups.google.com/d/topic/elasticsearch/UPBMKvxwwM8/unsubscribe
 .
 To unsubscribe from this group and all its topics, send an email to 
 elasticsearc...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/elasticsearch/4dcf998b-89fe-4f07-bb2d-a036cd567c66%40googlegroups.com
 .
 For more options, visit https://groups.google.com/groups/opt_out.

>>>
>>>

-- 
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/b7a84d31-97b8-4eb7-809a-59f494240ed3%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: marvel shows empty dashboard

2014-01-30 Thread Brad Jordan
Upgraded my cluster to 0.9.10 and still get a blank Marvel dashboard... 

I have about 30 indexes which all have data starting on about 1/20/2014 
going back to 5/01/2013. Bigdesk and the Head plugin have no problems 
seeing that nodes, shards, indexes. Is there an additional step I'm missing?

-Brad

On Thursday, January 30, 2014 10:48:04 AM UTC-7, Brad Jordan wrote:
>
> Thanks!
>
>
> On Thursday, January 30, 2014 10:43:35 AM UTC-7, Boaz Leskes wrote:
>>
>> Hi brad,
>>
>> You should upgrade to 0.90.10. 0.90.7 is not supported by marvel.
>>
>> Cheers,
>> Boaz
>>
>>
>> On Thu, Jan 30, 2014 at 6:39 PM, Brad Jordan  wrote:
>>
>>> I also have the same issue. I'm running elasticsearch-0.90.7. I 
>>> installed the plugin, bounced the cluster and Marvel is just blank. Is 
>>> there a config I'm missing?
>>>
>>> -Brad
>>>
>>> On Thursday, January 30, 2014 5:22:03 AM UTC-7, Ron Sher wrote:

 Hey,

 Just tried installing the plugin.
 Installation was easy (bin/plugin -i elasticsearch/marvel/latest followed 
 by a restart) by then the plugin shows an empty dashboard.

 Am I missing something?\

 Thanks,
 Ron

   -- 
>>> You received this message because you are subscribed to a topic in the 
>>> Google Groups "elasticsearch" group.
>>> To unsubscribe from this topic, visit 
>>> https://groups.google.com/d/topic/elasticsearch/UPBMKvxwwM8/unsubscribe.
>>> To unsubscribe from this group and all its topics, send an email to 
>>> elasticsearc...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/elasticsearch/4dcf998b-89fe-4f07-bb2d-a036cd567c66%40googlegroups.com
>>> .
>>> For more options, visit https://groups.google.com/groups/opt_out.
>>>
>>
>>

-- 
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/02f05ff6-2523-4eb1-a1e0-9bd9a65f8673%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: marvel shows empty dashboard

2014-01-30 Thread Brad Jordan
Thanks!


On Thursday, January 30, 2014 10:43:35 AM UTC-7, Boaz Leskes wrote:
>
> Hi brad,
>
> You should upgrade to 0.90.10. 0.90.7 is not supported by marvel.
>
> Cheers,
> Boaz
>
>
> On Thu, Jan 30, 2014 at 6:39 PM, Brad Jordan 
> > wrote:
>
>> I also have the same issue. I'm running elasticsearch-0.90.7. I installed 
>> the plugin, bounced the cluster and Marvel is just blank. Is there a config 
>> I'm missing?
>>
>> -Brad
>>
>> On Thursday, January 30, 2014 5:22:03 AM UTC-7, Ron Sher wrote:
>>>
>>> Hey,
>>>
>>> Just tried installing the plugin.
>>> Installation was easy (bin/plugin -i elasticsearch/marvel/latest followed 
>>> by a restart) by then the plugin shows an empty dashboard.
>>>
>>> Am I missing something?\
>>>
>>> Thanks,
>>> Ron
>>>
>>>   -- 
>> You received this message because you are subscribed to a topic in the 
>> Google Groups "elasticsearch" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/elasticsearch/UPBMKvxwwM8/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to 
>> elasticsearc...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/elasticsearch/4dcf998b-89fe-4f07-bb2d-a036cd567c66%40googlegroups.com
>> .
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>
>

-- 
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/6466dbb6-084f-4fb5-bffc-14beeaf3cff5%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: marvel shows empty dashboard

2014-01-30 Thread Boaz Leskes
Hi brad,


You should upgrade to 0.90.10. 0.90.7 is not supported by marvel.




Cheers,

Boaz

On Thu, Jan 30, 2014 at 6:39 PM, Brad Jordan 
wrote:

> I also have the same issue. I'm running elasticsearch-0.90.7. I installed 
> the plugin, bounced the cluster and Marvel is just blank. Is there a config 
> I'm missing?
> -Brad
> On Thursday, January 30, 2014 5:22:03 AM UTC-7, Ron Sher wrote:
>>
>> Hey,
>>
>> Just tried installing the plugin.
>> Installation was easy (bin/plugin -i elasticsearch/marvel/latest followed 
>> by a restart) by then the plugin shows an empty dashboard.
>>
>> Am I missing something?\
>>
>> Thanks,
>> Ron
>>
>>
> -- 
> You received this message because you are subscribed to a topic in the Google 
> Groups "elasticsearch" group.
> To unsubscribe from this topic, visit 
> https://groups.google.com/d/topic/elasticsearch/UPBMKvxwwM8/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to 
> elasticsearch+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/elasticsearch/4dcf998b-89fe-4f07-bb2d-a036cd567c66%40googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.

-- 
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/1391103815201.ae900fa6%40Nodemailer.
For more options, visit https://groups.google.com/groups/opt_out.


Re: marvel shows empty dashboard

2014-01-30 Thread Brad Jordan
I also have the same issue. I'm running elasticsearch-0.90.7. I installed 
the plugin, bounced the cluster and Marvel is just blank. Is there a config 
I'm missing?

-Brad

On Thursday, January 30, 2014 5:22:03 AM UTC-7, Ron Sher wrote:
>
> Hey,
>
> Just tried installing the plugin.
> Installation was easy (bin/plugin -i elasticsearch/marvel/latest followed 
> by a restart) by then the plugin shows an empty dashboard.
>
> Am I missing something?\
>
> Thanks,
> Ron
>
>

-- 
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/4dcf998b-89fe-4f07-bb2d-a036cd567c66%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: marvel shows empty dashboard

2014-01-30 Thread Ron Sher
We have 0.90.10


On Thu, Jan 30, 2014 at 2:41 PM, DH  wrote:

> Hello,
> I had the same problem.
> For me, It was because I didn't pay attention enough.
> What is your version of ES? You need to have a 90.9 or higher. On my
> former 0.90.5, the pugin was detected but showed nothing.
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "elasticsearch" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/elasticsearch/UPBMKvxwwM8/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> elasticsearch+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/elasticsearch/d852c6a9-2bd4-428f-a36a-7f3458537e81%40googlegroups.com
> .
>
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
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/CAKHuyJphzG4%3D4%2B8NYedR6%2BLCXwuYPioyLKMXsGfLw5majuG%2BqA%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: marvel shows empty dashboard

2014-01-30 Thread DH
Hello,
I had the same problem.
For me, It was because I didn't pay attention enough. 
What is your version of ES? You need to have a 90.9 or higher. On my 
former 0.90.5, the pugin was detected but showed nothing.

-- 
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/d852c6a9-2bd4-428f-a36a-7f3458537e81%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: marvel shows empty dashboard

2014-01-30 Thread Boaz Leskes
Hi Ron,

I assume you waited a bit for the data to be collected and indexed? 

Please post a screenshot + url of what you see and we'd look further. 

Cheers,
Boaz

On Thursday, January 30, 2014 1:22:03 PM UTC+1, Ron Sher wrote:
>
> Hey,
>
> Just tried installing the plugin.
> Installation was easy (bin/plugin -i elasticsearch/marvel/latest followed 
> by a restart) by then the plugin shows an empty dashboard.
>
> Am I missing something?\
>
> Thanks,
> Ron
>
>

-- 
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/0ef3a4ce-c191-474b-8ae1-fb021b65255e%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


marvel shows empty dashboard

2014-01-30 Thread Ron Sher
Hey,

Just tried installing the plugin.
Installation was easy (bin/plugin -i elasticsearch/marvel/latest followed 
by a restart) by then the plugin shows an empty dashboard.

Am I missing something?\

Thanks,
Ron

-- 
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/4d0f4f2e-f824-408f-bff1-d4d79aec470c%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.