No description
Find a file
Yaroslav Kuznietsov d54d0b5852
[Canvas] Expression error (#103048) (#105724)
* Basic setup of error plugin.

* Removed not used `function` files at `error` expression.

* Moved related components from canvas.

* Changed imports of components.

* Fixed renderer and storybook.

* Fixed types errors.

* Added limits.

* Removed useless translations and fixed .i18nrc.json

* added `done` handler call.

* Added more fixes fo i18nc.

* Added docs.

* More fixes of i18nrc.

* Fixed async functions.

Written current code, based on https://github.com/storybookjs/storybook/issues/7745

* Fixed one test with Expression input.

After changing the way of rendering in stories, all elements are mounting and componentDidMount is involved. The previous snapshot was without
mounted `monaco` editor.

* Fixed storybook error.

* More fixes.

* removed unused translations.

* Removed handlers and changed the way of handling `resize` and calling `done`.

* Fixed i18n error.

* Fixed storybook.

* Replaced Popover with EuiPopover.

* Moved `Popover` back to `canvas`

* Removed `Popover` export from presentation_utils components.

* Moved error_component and debug_component from presentation_util to expression_error.

* Fixed translations and imports.

* Moved `debug renderer` to `expression_error` plugin.

* Fixed error.

* Fixed lazy exports.

* Fixed imports

* Fixed storybook snapshot.

* Removed `.i18nrc.json`.

* Fixed color of `error`.

* Exported concrete elements from popover.

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
# Conflicts:
#	packages/kbn-optimizer/limits.yml
#	src/plugins/expression_error/public/components/debug/debug.tsx
2021-07-15 07:41:16 -04:00
.buildkite
.ci Upgrade from Node.js v14.17.2 to v14.17.3 (#104417) (#104844) 2021-07-08 13:33:46 +00:00
.github
api_docs [Maps] Auto generate legends and styles from mvt data (#94811) (#105203) 2021-07-12 09:28:03 -04:00
config Support authenticating to Elasticsearch via service account tokens (#102121) (#105286) 2021-07-12 16:34:44 -04:00
dev_docs some fixes to expression tutorial (#101558) (#105185) 2021-07-12 07:07:48 -04:00
docs [Canvas] Expression error (#103048) (#105724) 2021-07-15 07:41:16 -04:00
examples [canvas] Reduce bundle by registering Canvas Plugin API on mount (#104264) (#105289) 2021-07-12 16:47:55 -04:00
licenses
packages [Canvas] Expression error (#103048) (#105724) 2021-07-15 07:41:16 -04:00
plugins
rfcs
scripts
src [Canvas] Expression error (#103048) (#105724) 2021-07-15 07:41:16 -04:00
tasks/config
test [test] Reverts tests skipped to promote snapshot (#104571) (#105634) 2021-07-14 14:25:40 -04:00
typings Enable CSS-in-JS styling with emotion (#98157) (#105223) 2021-07-12 12:23:24 -04:00
utilities
vars
x-pack [Canvas] Expression error (#103048) (#105724) 2021-07-15 07:41:16 -04:00
.backportrc.json
.bazelignore
.bazeliskversion
.bazelrc
.bazelrc.common
.bazelversion
.browserslistrc
.editorconfig
.eslintignore
.eslintrc.js
.fossa.yml
.gitattributes
.gitignore
.i18nrc.json [Canvas] Expression error (#103048) (#105724) 2021-07-15 07:41:16 -04:00
.node-version Upgrade from Node.js v14.17.2 to v14.17.3 (#104417) (#104844) 2021-07-08 13:33:46 +00:00
.npmrc
.nvmrc Upgrade from Node.js v14.17.2 to v14.17.3 (#104417) (#104844) 2021-07-08 13:33:46 +00:00
.prettierignore
.prettierrc
.stylelintignore
.stylelintrc
.telemetryrc.json
.yarnrc
api-documenter.json
BUILD.bazel
CONTRIBUTING.md
FAQ.md
github_checks_reporter.json
Gruntfile.js
Jenkinsfile chore(NA): remove KBN_ES_SNAPSHOT_USE_UNVERIFIED var from Jenkinsfile 2021-07-14 19:48:47 +01:00
jest.config.integration.js chore(NA): introduce preset for jest-integration tests on @kbn/test (#105144) (#105667) 2021-07-14 22:05:07 +00:00
jest.config.js
kibana.d.ts
LICENSE.txt
NOTICE.txt
package.json Enable CSS-in-JS styling with emotion (#98157) (#105223) 2021-07-12 12:23:24 -04:00
preinstall_check.js
README.md
renovate.json5
STYLEGUIDE.mdx
tsconfig.base.json Enable CSS-in-JS styling with emotion (#98157) (#105223) 2021-07-12 12:23:24 -04:00
tsconfig.browser.json
tsconfig.json
tsconfig.refs.json
tsconfig.types.json
TYPESCRIPT.md
WORKSPACE.bazel Upgrade from Node.js v14.17.2 to v14.17.3 (#104417) (#104844) 2021-07-08 13:33:46 +00:00
yarn.lock Enable CSS-in-JS styling with emotion (#98157) (#105223) 2021-07-12 12:23:24 -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.