Skip to content

Commit 301403e

Browse files
committed
Update README with links to resources, and remove old getting started instructions (made redundant by elastic.co getting started guide).
1 parent 1f5d6c8 commit 301403e

1 file changed

Lines changed: 52 additions & 39 deletions

File tree

README.md

Lines changed: 52 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,59 @@
11
# Kibana 6.0.0-alpha1
22

3-
Kibana is an open source ([Apache Licensed](https://github.com/elastic/kibana/blob/master/LICENSE.md)), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elasticsearch.
3+
Kibana is your window into the [Elastic Stack](https://www.elastic.co/products). Specifically, it's
4+
an open source ([Apache Licensed](LICENSE.md)),
5+
browser-based analytics and search dashboard for Elasticsearch.
46

5-
## Requirements
7+
- [Getting Started](#getting-started)
8+
- [Using a Kibana Release](#using-a-kibana-release)
9+
- [Building and Running Kibana, and/or Contributing Code](#building-and-running-kibana-andor-contributing-code)
10+
- [Snapshot Builds](#snapshot-builds)
11+
- [Documentation](#documentation)
12+
- [Version Compatibility with Elasticsearch](#version-compatibility-with-elasticsearch)
13+
- [Questions? Problems? Suggestions?](#questions-problems-suggestions)
614

7-
- Elasticsearch master
8-
- Kibana binary package
15+
## Getting Started
916

10-
## Installation
17+
If you just want to try Kibana out, check out the [Elastic Stack Getting Started Page](https://www.elastic.co/start) to give it a whirl.
1118

12-
* Download: [http://www.elastic.co/downloads/kibana](http://www.elastic.co/downloads/kibana)
13-
* Extract the files
14-
* Run `bin/kibana` on unix, or `bin\kibana.bat` on Windows.
15-
* Visit [http://localhost:5601](http://localhost:5601)
19+
If you're interested in diving a bit deeper and getting a taste of Kibana's capabilities, head over to the [Kibana Getting Started Page](https://www.elastic.co/guide/en/kibana/current/getting-started.html).
1620

17-
## Upgrade from previous version
21+
### Using a Kibana Release
1822

19-
* Move any custom configurations in your old kibana.yml to your new one
20-
* Reinstall plugins
21-
* Start or restart Kibana
23+
If you want to use a Kibana release in production, give it a test run, or just play around:
2224

23-
## Version compatibility with Elasticsearch
25+
- Download the latest version on the [Kibana Download Page](https://www.elastic.co/downloads/kibana).
26+
- Learn more about Kibana's features and capabilities on the
27+
[Kibana Product Page](https://www.elastic.co/products/kibana).
28+
- We also offer a hosted version of Kibana on our
29+
[Cloud Service](https://www.elastic.co/cloud/as-a-service).
30+
31+
### Building and Running Kibana, and/or Contributing Code
32+
33+
You may want to build Kibana locally to contribute some code, test out the latest features, or try
34+
out an open PR:
35+
36+
- [CONTRIBUTING.md](CONTRIBUTING.md) will help you get Kibana up and running.
37+
- If you would like to contribute code, please follow our [STYLEGUIDE.md](STYLEGUIDE.md).
38+
- For all other questions, check out the [FAQ.md](FAQ.md) and
39+
[wiki](https://github.com/elastic/kibana/wiki).
40+
41+
### Snapshot Builds
42+
43+
For the daring, snapshot builds are available. These builds are created after each commit to the master branch, and therefore are not something you should run in production.
44+
45+
| platform | |
46+
| --- | --- |
47+
| OSX | [tar](http://download.elastic.co/kibana/kibana-snapshot/kibana-6.0.0-alpha1-SNAPSHOT-darwin-x86_64.tar.gz) |
48+
| Linux x64 | [tar](http://download.elastic.co/kibana/kibana-snapshot/kibana-6.0.0-alpha1-SNAPSHOT-linux-x86_64.tar.gz) [deb](https://download.elastic.co/kibana/kibana-snapshot/kibana-6.0.0-alpha1-SNAPSHOT-amd64.deb) [rpm](https://download.elastic.co/kibana/kibana-snapshot/kibana-6.0.0-alpha1-SNAPSHOT-x86_64.rpm) |
49+
| Linux x86 | [tar](http://download.elastic.co/kibana/kibana-snapshot/kibana-6.0.0-alpha1-SNAPSHOT-linux-x86.tar.gz) [deb](https://download.elastic.co/kibana/kibana-snapshot/kibana-6.0.0-alpha1-SNAPSHOT-i386.deb) [rpm](https://download.elastic.co/kibana/kibana-snapshot/kibana-6.0.0-alpha1-SNAPSHOT-i686.rpm) |
50+
| Windows | [zip](http://download.elastic.co/kibana/kibana-snapshot/kibana-6.0.0-alpha1-SNAPSHOT-windows-x86.zip) |
51+
52+
## Documentation
53+
54+
Visit [Elastic.co](http://www.elastic.co/guide/en/kibana/current/index.html) for the full Kibana documentation.
55+
56+
## Version Compatibility with Elasticsearch
2457

2558
Ideally, you should be running Elasticsearch and Kibana with matching version numbers. If your Elasticsearch has an older version number or a newer _major_ number than Kibana, then Kibana will fail to run. If Elasticsearch has a newer minor or patch number than Kibana, then the Kibana Server will log a warning.
2659

@@ -36,29 +69,9 @@ _Note: The version numbers below are only examples, meant to illustrate the rela
3669
| ES minor number is older. | 5.__1__.2 | 5.__0__.0 | 🚫 Fatal error |
3770
| ES major number is older. | __5__.1.2 | __4__.0.0 | 🚫 Fatal error |
3871

39-
## Quick Start
72+
## Questions? Problems? Suggestions?
4073

41-
You're up and running! Fantastic! Kibana is now running on port 5601, so point your browser at http://YOURDOMAIN.com:5601.
42-
43-
The first screen you arrive at will ask you to configure an **index pattern**. An index pattern describes to Kibana how to access your data. We make the guess that you're working with log data, and we hope (because it's awesome) that you're working with Logstash. By default, we fill in `logstash-*` as your index pattern, thus the only thing you need to do is select which field contains the timestamp you'd like to use. Kibana reads your Elasticsearch mapping to find your time fields - select one from the list and hit *Create*.
44-
45-
Congratulations, you have an index pattern! You should now be looking at a paginated list of the fields in your index or indices, as well as some informative data about them. Kibana has automatically set this new index pattern as your default index pattern. If you'd like to know more about index patterns, pop into to the [Settings](#settings) section of the documentation.
46-
47-
**Did you know:** Both *indices* and *indexes* are acceptable plural forms of the word *index*. Knowledge is power.
48-
49-
Now that you've configured an index pattern, you're ready to hop over to the [Discover](#discover) screen and try out a few searches. Click on **Discover** in the navigation bar at the top of the screen.
50-
51-
## Documentation
52-
53-
Visit [Elastic.co](http://www.elastic.co/guide/en/kibana/current/index.html) for the full Kibana documentation.
54-
55-
## Snapshot Builds
56-
57-
For the daring, snapshot builds are available. These builds are created after each commit to the master branch, and therefore are not something you should run in production.
58-
59-
| platform | |
60-
| --- | --- |
61-
| OSX | [tar](http://download.elastic.co/kibana/kibana-snapshot/kibana-6.0.0-alpha1-SNAPSHOT-darwin-x86_64.tar.gz) |
62-
| Linux x64 | [tar](http://download.elastic.co/kibana/kibana-snapshot/kibana-6.0.0-alpha1-SNAPSHOT-linux-x86_64.tar.gz) [deb](https://download.elastic.co/kibana/kibana-snapshot/kibana-6.0.0-alpha1-SNAPSHOT-amd64.deb) [rpm](https://download.elastic.co/kibana/kibana-snapshot/kibana-6.0.0-alpha1-SNAPSHOT-x86_64.rpm) |
63-
| Linux x86 | [tar](http://download.elastic.co/kibana/kibana-snapshot/kibana-6.0.0-alpha1-SNAPSHOT-linux-x86.tar.gz) [deb](https://download.elastic.co/kibana/kibana-snapshot/kibana-6.0.0-alpha1-SNAPSHOT-i386.deb) [rpm](https://download.elastic.co/kibana/kibana-snapshot/kibana-6.0.0-alpha1-SNAPSHOT-i686.rpm) |
64-
| Windows | [zip](http://download.elastic.co/kibana/kibana-snapshot/kibana-6.0.0-alpha1-SNAPSHOT-windows-x86.zip) |
74+
- If you've found a bug or want to request a feature, please create a [GitHub Issue](https://github.com/elastic/kibana/issues/new).
75+
Please check to make sure someone else hasn't already created an issue for the same topic.
76+
- Need help using Kibana? Ask away on our [Kibana Discuss Forum](https://discuss.elastic.co/c/kibana) and a fellow community member or
77+
Elastic engineer will be glad to help you out.

0 commit comments

Comments
 (0)