Live charts and statistics for Elasticsearch cluster.
###NOTE: This bigdesk fork branch supports elasticsearch 2.0 + by adding plugin-descriptor.properties file to build a _site type plugin without 5 charts (OS cpu, OS load, process cpu, file system read and write ) but es 3.0 will discard _site plugin feature, please DO NOT use it in the future.
Live charts and statistics for Elasticsearch cluster.
| Bigdesk | Elasticsearch |
|---|---|
| 2.5.0 | 1.3.0 ... 1.3.x |
| 2.4.1 (2.4.0) | 1.0.0.RC1 ... 1.2.x |
| n/a | 1.0.0.Beta1 ... 1.0.0.Beta2 |
| 2.2.3 | 0.90.10 ... 0.90.x |
| 2.2.2 (2.2.1) | 0.90.0 ... 0.90.9 |
| 2.1.0 | 0.20.0 ... 0.20.x |
| 2.0.0 | 0.19.0 ... 0.20.x |
| 1.0.0 | 0.17.0 ... 0.18.x |
1.3.x and later by switching from JSONP to XHR (thanks to @hmarcelino).y-axis (thanks to @slingler)1.0.0.RC1 and later.1.0.0.Beta1 and 1.0.0.Beta2 for now.0.90.10 and above in 0.90.x. (Main changes introduced in #4661)Reducing the amount of data pulled over HTTP and kept in the memory.
0.90.0 and later (kudos to @mrflip and @hustonhoburg)0.20.0 and higher (kudos to @jgagnon1)There are couple of options how to get and install Bigdesk. Which one to use can depend on your use case.
Install Elasticsearch then navigate to <ES_HOME> and execute the following command on command line:
$ ./bin/plugin install lukas-vlcek/bigdesk/<bigdesk_version>
where <bigdesk_version> specify particular Bigdesk version. For instance to install version 2.4.0 run:
$ ./bin/plugin install lukas-vlcek/bigdesk/2.4.0
Elasticsearch plugin manager then downloads and install Bigdesk sources:
-> Installing lukas-vlcek/bigdesk/2.4.0...
Trying http://download.elasticsearch.org/lukas-vlcek/bigdesk/bigdesk-2.4.0.zip...
Trying http://search.maven.org/remotecontent?filepath=lukas-vlcek/bigdesk/2.4.0/bigdesk-2.4.0.zip...
Trying https://oss.sonatype.org/service/local/repositories/releases/content/lukas-vlcek/bigdesk/2.4.0/bigdesk-2.4.0.zip...
Trying https://github.com/lukas-vlcek/bigdesk/archive/v2.4.0.zip...
Downloading ............................................................DONE
Installed lukas-vlcek/bigdesk/2.4.0 into /Users/lukas/projects/elasticsearch-1.0.0/plugins/bigdesk
Identified as a _site plugin, moving to _site structure ...
Then you can open web browser and navigate to http://localhost:9200/_plugin/bigdesk/ it will open installed Bigdesk
and automatically auto-connect to local node.
Clone Bigdesk repo (the master branch) and checkout specific release tag.
$ git clone https://github.com/lukas-vlcek/bigdesk.git
Cloning into 'bigdesk'...
remote: Counting objects: 4947, done.
remote: Compressing objects: 100% (2726/2726), done.
remote: Total 4947 (delta 1831), reused 4883 (delta 1792)
Receiving objects: 100% (4947/4947), 17.78 MiB | 1.08 MiB/s, done.
Resolving deltas: 100% (1831/1831), done.
$ cd bigdesk/
$ git tag
[... some tags left out for brevity ....]
v2.2.2
v2.2.3
v2.4.0
$ git checkout v2.4.0
Note: checking out 'v2.4.0'.
[... optional git messages ...]
HEAD is now at 4a23042... Release v2.4.0 - Extract the cluster status CSS and make it more readable
Now you should be able to open index.html in web browser and point it to the Elasticsearch node.
See http://bigdesk.org/#download_locally
BTW these archives are provided by GitHub and are based on above discussed git tags.
Once you open Bigdesk in your web browser, you need to point it to the Elasticsearch node REST endpoint.
For example if you run Elasticsearch locally the REST endpoint would be http://localhost:9200/ by default.
You simply specify any endpoint URL in the text field on top of the Bigdesk screen (or via URL parameter, see below).
If you are using Bigdesk 1.0.0 (ie. you want to connect Bigdesk to elasticsearch 0.17.x - 0.18.x) then you need
to fill into two different text fields. First you specify hostname of the Elasticsearch node into the first
text field and its port number into the second text field (but in some situations this can be limiting,
for example if you run Elasticsearch behind firewall).
Then you hit Connect button (it is called GO! button in Bigdesk 1.0.0) and that’s it.
Now you should see cluster name and list of its nodes. You can switch between nodes in the cluster, new nodes are added
and old nodes are removed automatically on the fly.
You can change the Bigdesk refresh interval and amount of data that is displayed by charts.
If you are using Bigdesk 1.0.0 you can immediately connect to a particular host, add the
host, port, and go parameters to the query string:
index.html?host=search.example.com&port=9200&go
If you are using Bigdesk 2.x you can use any of the following URL parameters to immediately connect to
a particular host or set history or refresh interval:
endpoint = URL of ES node REST endpoint (you might want to use URL encoded value). Defaults to http://localhost:9200.refresh = refresh interval in milliseconds. Defaults to 2000 (2 sec).history = number of milliseconds to keep in history. Defaults to 300000 (5 min).connect = if set to true Bigdesk will try to connect immediately to the endpoint. Defaults to false.Example connecting to http://127.0.0.1:9201 with 3 sec refresh interval:
index.html?endpoint=http%3A%2F%2F127.0.0.1%3A9201&refresh=3000&connect=true


Bigdesk should work in all modern web browsers as long as they support SVG. It has been tested in Safari, Firefox and Chrome.
Lukas Vlcek and contributors.