No description
Find a file
Pierre Gayvallet 3e1e047bc4
[7.x] Migrate joi to 17.4.0 and adapt the codebase (#99899) (#100378)
* Migrate `joi` to `17.4.0` and adapt the codebase  (#99899)

* bump joi to 17.4.0, start adapting stuff

* remove custom validation rule, adapt instead

* fix error handling

* fix error handling again

* fix strings type & validation

* fix buffers and arrays

* fix bytes

* fix bytes_size type

* update conditional_type error messages in tests

* fix duration and map types

* first attempt to fix union type error messages

* revert conditional type assertions back to master state

* fix object type

* fix record type

* fix stream types

* rename test files to match sources

* fix union type tests

* temporary adapt feature/home usages of Joi

* fix lint

* adapt test assertion

* fix http config schema validation

* fix @kbn/test Config class

* fix config again

* fix reporting schema tests

* fix security solution schema

* adapt url tests

* remove useless comment

* remove space

* typo

* review comments
# Conflicts:
#	src/core/server/http/__snapshots__/http_config.test.ts.snap

* allow '0' value for server.host

* fix config def

* update snapshots
2021-05-20 09:04:31 -04:00
.ci
api_docs Sharing saved objects phase 3 (#94383) (#100158) 2021-05-14 16:43:17 -04:00
config
dev_docs [dev docs] Add sample data tutorial. Closes #98297 (#99252) (#100308) 2021-05-18 20:29:42 -04:00
docs [7.x] [Screenshot mode] Create plugin to provide "screenshot mode" awareness (#99627) (#100331) 2021-05-20 07:58:50 -04:00
examples [7.x] [Screenshot mode] Create plugin to provide "screenshot mode" awareness (#99627) (#100331) 2021-05-20 07:58:50 -04:00
licenses
packages [7.x] Migrate joi to 17.4.0 and adapt the codebase (#99899) (#100378) 2021-05-20 09:04:31 -04:00
plugins
rfcs
scripts
src [7.x] Migrate joi to 17.4.0 and adapt the codebase (#99899) (#100378) 2021-05-20 09:04:31 -04:00
tasks/config
test Remove PEG.js generator from the timelion runtime (#100327) (#100380) 2021-05-20 07:39:22 -04:00
typings [RAC] Decouple registry from alerts-as-data client (#98935) (#100041) 2021-05-13 13:07:02 -04:00
utilities
vars [CI] Don't do CI stats reporting/failures for feature branch PRs (#99668) (#99690) 2021-05-10 18:31:48 -04:00
x-pack [7.x] Migrate joi to 17.4.0 and adapt the codebase (#99899) (#100378) 2021-05-20 09:04:31 -04:00
.backportrc.json
.bazelignore
.bazeliskversion
.bazelrc
.bazelrc.common
.bazelversion
.browserslistrc
.editorconfig
.eslintignore
.eslintrc.js
.fossa.yml
.gitattributes
.gitignore
.i18nrc.json [Security Solutions] Re-arranges and adds more packages to remove copied code (#100310) (#100369) 2021-05-19 19:56:33 -04:00
.node-version
.npmrc
.nvmrc
.prettierignore
.prettierrc
.stylelintignore
.stylelintrc
.telemetryrc.json
.yarnrc
api-documenter.json
BUILD.bazel
CONTRIBUTING.md
FAQ.md
github_checks_reporter.json
Gruntfile.js
Jenkinsfile [CI] Don't do CI stats reporting/failures for feature branch PRs (#99668) (#99690) 2021-05-10 18:31:48 -04:00
jest.config.integration.js
jest.config.js
kibana.d.ts
LICENSE.txt
NOTICE.txt
package.json [7.x] Migrate joi to 17.4.0 and adapt the codebase (#99899) (#100378) 2021-05-20 09:04:31 -04:00
preinstall_check.js
README.md
renovate.json5
STYLEGUIDE.mdx Syntax in styleguide.mdx is breaking docs build (#99840) (#99859) 2021-05-11 20:12:01 -04:00
tsconfig.base.json
tsconfig.browser.json
tsconfig.json
tsconfig.refs.json
tsconfig.types.json
TYPESCRIPT.md
WORKSPACE.bazel chore(NA): upgrade bazel rules nodejs to v3.5.0 (#99932) (#99962) 2021-05-13 17:02:25 +00:00
yarn.lock [7.x] Migrate joi to 17.4.0 and adapt the codebase (#99899) (#100378) 2021-05-20 09:04:31 -04: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.