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 | |
jan kaufman | 9c225fb | 2016-03-10 11:11:40 +0100 | [diff] [blame] | 25 | Or without adding elasticsearch kibana repository, but with modified path to config file |
Filip Pytloun | f81d3e9 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 26 | |
| 27 | .. code-block:: yaml |
| 28 | |
| 29 | kibana: |
| 30 | server: |
jan kaufman | 9c225fb | 2016-03-10 11:11:40 +0100 | [diff] [blame] | 31 | configpath: /usr/share/kibana/config/kibana.yml |
Filip Pytloun | f81d3e9 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 32 | enabled: true |
| 33 | bind: |
| 34 | address: 0.0.0.0 |
| 35 | port: 5601 |
| 36 | database: |
| 37 | engine: elasticsearch |
| 38 | host: localhost |
| 39 | port: 9200 |
| 40 | |
| 41 | |
Guillaume Thouvenin | 49059fc | 2016-11-18 15:58:16 +0100 | [diff] [blame] | 42 | Client setup |
| 43 | ------------ |
| 44 | |
| 45 | Client with host and port (Kibana use Elasticsearch to store its data): |
| 46 | |
| 47 | .. code-block:: yaml |
| 48 | |
| 49 | kibana: |
| 50 | client: |
| 51 | enabled: true |
| 52 | server: |
| 53 | host: elasticsearch.host |
| 54 | port: 9200 |
| 55 | |
| 56 | Client where you download a Kibana object that is stored in the directory |
| 57 | *files/*: |
| 58 | |
| 59 | .. code-block:: yaml |
| 60 | |
| 61 | kibana: |
| 62 | client: |
| 63 | enabled: true |
| 64 | server: |
| 65 | host: elasticsearch.host |
| 66 | port: 9200 |
| 67 | object: |
| 68 | logs: |
| 69 | enabled: true |
| 70 | name: Logs |
| 71 | template: kibana/files/objects/dashboard_logs.json |
| 72 | type: 'dashboard' |
| 73 | |
Filip Pytloun | f81d3e9 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 74 | Read more |
| 75 | ========= |
| 76 | |
| 77 | * https://github.com/elasticsearch/kibana/blob/master/src/config.js |
Filip Pytloun | d2f6807 | 2017-02-02 13:02:03 +0100 | [diff] [blame] | 78 | |
| 79 | Documentation and Bugs |
| 80 | ====================== |
| 81 | |
| 82 | To learn how to install and update salt-formulas, consult the documentation |
| 83 | available online at: |
| 84 | |
| 85 | http://salt-formulas.readthedocs.io/ |
| 86 | |
| 87 | In the unfortunate event that bugs are discovered, they should be reported to |
| 88 | the appropriate issue tracker. Use Github issue tracker for specific salt |
| 89 | formula: |
| 90 | |
| 91 | https://github.com/salt-formulas/salt-formula-kibana/issues |
| 92 | |
| 93 | For feature requests, bug reports or blueprints affecting entire ecosystem, |
| 94 | use Launchpad salt-formulas project: |
| 95 | |
| 96 | https://launchpad.net/salt-formulas |
| 97 | |
| 98 | You can also join salt-formulas-users team and subscribe to mailing list: |
| 99 | |
| 100 | https://launchpad.net/~salt-formulas-users |
| 101 | |
| 102 | Developers wishing to work on the salt-formulas projects should always base |
| 103 | their work on master branch and submit pull request against specific formula. |
| 104 | |
| 105 | https://github.com/salt-formulas/salt-formula-kibana |
| 106 | |
| 107 | Any questions or feedback is always welcome so feel free to join our IRC |
| 108 | channel: |
| 109 | |
| 110 | #salt-formulas @ irc.freenode.net |