Filip Pytloun | f81d3e9 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 1 | |
2 | ====== | ||||
3 | Kibana | ||||
4 | ====== | ||||
5 | |||||
6 | Kibana is an open source (Apache Licensed), browser based analytics and search interface to Logstash and other timestamped data sets stored in ElasticSearch. With those in place Kibana is a snap to setup and start using (seriously). Kibana strives to be easy to get started with, while also being flexible and powerful | ||||
7 | |||||
8 | Sample pillar | ||||
9 | ============= | ||||
10 | |||||
11 | .. code-block:: yaml | ||||
12 | |||||
13 | kibana: | ||||
14 | server: | ||||
15 | addrepo: true | ||||
16 | enabled: true | ||||
17 | bind: | ||||
18 | address: 0.0.0.0 | ||||
19 | port: 5601 | ||||
20 | database: | ||||
21 | engine: elasticsearch | ||||
22 | host: localhost | ||||
23 | port: 9200 | ||||
24 | |||||
25 | Or without adding elasticsearch kibana repository | ||||
26 | |||||
27 | .. code-block:: yaml | ||||
28 | |||||
29 | kibana: | ||||
30 | server: | ||||
31 | enabled: true | ||||
32 | bind: | ||||
33 | address: 0.0.0.0 | ||||
34 | port: 5601 | ||||
35 | database: | ||||
36 | engine: elasticsearch | ||||
37 | host: localhost | ||||
38 | port: 9200 | ||||
39 | |||||
40 | |||||
41 | Read more | ||||
42 | ========= | ||||
43 | |||||
44 | * https://github.com/elasticsearch/kibana/blob/master/src/config.js |