Browse Source

Merge pull request #255 from infosiftr/kibana

Add some basic kibana docs
yosifkit 10 years ago
parent
commit
7ababbdfbf
4 changed files with 27 additions and 0 deletions
  1. 1 0
      kibana/README-short.txt
  2. 25 0
      kibana/content.md
  3. 1 0
      kibana/license.md
  4. BIN
      kibana/logo.png

+ 1 - 0
kibana/README-short.txt

@@ -0,0 +1 @@
+Kibana gives shape to any kind of data — structured and unstructured — indexed in Elasticsearch.

+ 25 - 0
kibana/content.md

@@ -0,0 +1,25 @@
+# What is Kibana?
+
+Kibana is an open source data visualization plugin for Elasticsearch. It provides visualization capabilities on top of the content indexed on an Elasticsearch cluster. Users can create bar, line and scatter plots, or pie charts and maps on top of large volumes of data.
+
+Kibana is a registered trademark of Elasticsearch BV.
+
+> [wikipedia.org/wiki/Kibana](https://en.wikipedia.org/wiki/Kibana)
+
+%%LOGO%%
+
+# How to use this image
+
+You can run the default `%%REPO%%` command simply:
+
+	docker run --link some-elasticsearch:elasticsearch -d %%REPO%%
+
+You can also pass in additional flags to `%%REPO%%`:
+
+	docker run --link some-elasticsearch:elasticsearch -d %%REPO%% --plugins /somewhere/else
+
+This image includes `EXPOSE 5601` ([default `port`](https://www.elastic.co/guide/en/kibana/current/_setting_kibana_server_properties.html)). If you'd like to be able to access the instance from the host without the container's IP, standard port mappings can be used:
+
+	docker run --name some-%%REPO%% --link some-elasticsearch:elasticsearch -p 5601:5601 -d %%REPO%%
+
+Then, access it via `http://localhost:5601` or `http://host-ip:5601` in a browser.

+ 1 - 0
kibana/license.md

@@ -0,0 +1 @@
+View [license information](https://github.com/elastic/kibana/blob/4557a6fc0ba08c5e7ac813a180179e5e2631c90a/LICENSE.md) for the software contained in this image.

BIN
kibana/logo.png