No description
Find a file
Mikhail Shustov cf9c0e1192
Add script to identify plugin dependencies for TS project references migration (#80463) (#80811)
* move kbn-dev-utils plugin helpers under a dedicated folder

* use getPluginSearchPaths in kbn-config & kbn-optimizer

* add a script to find plugin dependencies not migrated to TS project refs

* update docs

* add a script reporting all circular deps between plugins

based on kibana.json declaration, so it doesn't provide all the cases

* fix optimizer scan logic. removed by mistake

* revert changes. fails on CI

* remove prod depenedency on kbn/dev-utils

* remove last export

* only run plugin discovery once to speed up circular dep detection

* address comments

* address comments

* update fixtures

Co-authored-by: spalger <spalger@users.noreply.github.com>

Co-authored-by: spalger <spalger@users.noreply.github.com>
2020-10-16 13:34:03 +02:00
.ci
.github
common/graphql
config Remove unused elasticsearch.preserverHost setting (#78608) (#78921) 2020-10-01 13:27:04 +02:00
data
docs Add script to identify plugin dependencies for TS project references migration (#80463) (#80811) 2020-10-16 13:34:03 +02:00
examples [Step 1] use Observables on server search API (#79874) (#80341) 2020-10-13 20:09:30 +03:00
licenses
packages Add script to identify plugin dependencies for TS project references migration (#80463) (#80811) 2020-10-16 13:34:03 +02:00
plugins [7.x] [dev/cli] ensure plugins/ and all watch source dirs exist (#78973) (#78998) 2020-09-30 11:53:12 -07:00
rfcs
scripts Add script to identify plugin dependencies for TS project references migration (#80463) (#80811) 2020-10-16 13:34:03 +02:00
src Add script to identify plugin dependencies for TS project references migration (#80463) (#80811) 2020-10-16 13:34:03 +02:00
tasks Warn users when security is not configured (#78545) (#79596) 2020-10-05 21:35:23 -04:00
test [7.x] Timelion y-axis label not displayed (#80007) (#80521) 2020-10-16 14:12:29 +03:00
typings [7.x] [ts] enable "resolveJsonModule" and disable existing failures (#78855) (#79043) 2020-09-30 17:19:54 -07:00
utilities
vars [7.x] [kbn/optimizer] report limits with ci metrics (#78205) (#79950) 2020-10-07 18:09:38 -07:00
x-pack [7.x] Timelion y-axis label not displayed (#80007) (#80521) 2020-10-16 14:12:29 +03:00
.backportrc.json chore(NA): add missing branches into backportrc configuration file (#79848) (#80027) 2020-10-08 19:15:23 +01:00
.browserslistrc
.editorconfig
.eslintignore [7.x] Timelion y-axis label not displayed (#80007) (#80521) 2020-10-16 14:12:29 +03:00
.eslintrc.js [7.x] Timelion y-axis label not displayed (#80007) (#80521) 2020-10-16 14:12:29 +03:00
.fossa.yml
.gitattributes
.gitignore
.i18nrc.json [7.x] Timelion y-axis label not displayed (#80007) (#80521) 2020-10-16 14:12:29 +03:00
.node-version
.nvmrc
.prettierrc
.sass-lint.yml
.telemetryrc.json [7.x] [Usage Collection] [schema] ui_metric (#78827) (#79067) 2020-10-01 10:53:59 +01:00
.yarnrc
api-documenter.json
CONTRIBUTING.md
FAQ.md
github_checks_reporter.json
Gruntfile.js
Jenkinsfile
kibana.d.ts
LICENSE.txt
NOTICE.txt [7.x] [kbn/std] update rxjs helpers to use simple operators (#80416) (#80525) 2020-10-14 09:01:20 -07:00
package.json Add Storybook a11y addon (#80069) (#80778) 2020-10-15 19:43:11 -05:00
preinstall_check.js
README.md
renovate.json5
STYLEGUIDE.md
tsconfig.base.json [7.x] [ts] enable "resolveJsonModule" and disable existing failures (#78855) (#79043) 2020-09-30 17:19:54 -07:00
tsconfig.browser.json
tsconfig.json build all ts refs in single kbn:bootstrap (#79438) (#79614) 2020-10-06 10:38:48 +02:00
tsconfig.refs.json Add TS projects for src/plugins & x-pack/plugins (#78440) (#78946) 2020-09-30 17:10:04 +02:00
tsconfig.types.json [7.x] ui_actions service initial docs (#78902) (#80211) 2020-10-13 07:18:05 +02:00
TYPESCRIPT.md
yarn.lock Add Storybook a11y addon (#80069) (#80778) 2020-10-15 19:43:11 -05:00

Kibana

Kibana is your window into the Elastic Stack. Specifically, it's a browser-based analytics and search dashboard for Elasticsearch.

Getting Started

If you just want to try Kibana out, check out the Elastic Stack Getting Started Page to give it a whirl.

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.

Using a Kibana Release

If you want to use a Kibana release in production, give it a test run, or just play around:

Building and Running Kibana, and/or Contributing Code

You might want to build Kibana locally to contribute some code, test out the latest features, or try out an open PR:

Documentation

Visit Elastic.co for the full Kibana documentation.

For information about building the documentation, see the README in elastic/docs.

Version Compatibility with Elasticsearch

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.

Note: The version numbers below are only examples, meant to illustrate the relationships between different types of version numbers.

Situation Example Kibana version Example ES version Outcome
Versions are the same. 5.1.2 5.1.2 💚 OK
ES patch number is newer. 5.1.2 5.1.5 ⚠️ Logged warning
ES minor number is newer. 5.1.2 5.5.0 ⚠️ Logged warning
ES major number is newer. 5.1.2 6.0.0 🚫 Fatal error
ES patch number is older. 5.1.2 5.1.0 ⚠️ Logged warning
ES minor number is older. 5.1.2 5.0.0 🚫 Fatal error
ES major number is older. 5.1.2 4.0.0 🚫 Fatal error

Questions? Problems? Suggestions?

  • If you've found a bug or want to request a feature, please create a GitHub Issue. Please check to make sure someone else hasn't already created an issue for the same topic.
  • Need help using Kibana? Ask away on our Kibana Discuss Forum and a fellow community member or Elastic engineer will be glad to help you out.