-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into newplatform/data/cleanup-legacy
- Loading branch information
Showing
117 changed files
with
2,145 additions
and
2,649 deletions.
There are no files selected for viewing
463 changes: 0 additions & 463 deletions
463
docs/developer/visualize/development-create-visualization.asciidoc
This file was deleted.
Oops, something went wrong.
58 changes: 0 additions & 58 deletions
58
docs/developer/visualize/development-embedding-visualizations.asciidoc
This file was deleted.
Oops, something went wrong.
27 changes: 16 additions & 11 deletions
27
docs/developer/visualize/development-visualize-index.asciidoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,26 @@ | ||
[[development-visualize-index]] | ||
== Developing Visualizations | ||
|
||
Kibana Visualizations are the easiest way to add additional functionality to Kibana. | ||
This part of documentation is split into two parts. | ||
The first part tells you all you need to know on how to embed existing Kibana Visualizations in your plugin. | ||
The second step explains how to create your own custom visualization. | ||
|
||
[IMPORTANT] | ||
============================================== | ||
These pages document internal APIs and are not guaranteed to be supported across future versions of Kibana. | ||
However, these docs will be kept up-to-date to reflect the current implementation of Visualization plugins in Kibana. | ||
These pages document internal APIs and are not guaranteed to be supported across future versions of Kibana. | ||
============================================== | ||
|
||
* <<development-embedding-visualizations>> | ||
* <<development-create-visualization>> | ||
The internal APIs for creating custom visualizations are in a state of heavy churn as | ||
they are being migrated to the new Kibana platform, and large refactorings have been | ||
happening across minor releases in the `7.x` series. In particular, in `7.5` and later | ||
we have made significant changes to the legacy APIs as we work to gradually replace them. | ||
|
||
As a result, starting in `7.5` we have removed the documentation for the legacy APIs | ||
to prevent confusion. We expect to be able to create new documentation later in `7.x` | ||
when the visualizations plugin has been completed. | ||
|
||
include::development-embedding-visualizations.asciidoc[] | ||
We would recommend waiting until later in `7.x` to upgrade your plugins if possible. | ||
If you would like to keep up with progress on the visualizations plugin in the meantime, | ||
here are a few resources: | ||
|
||
include::development-create-visualization.asciidoc[] | ||
* The <<breaking-changes,breaking changes>> documentation, where we try to capture any changes to the APIs as they occur across minors. | ||
* link:https://github.com/elastic/kibana/issues/44121[Meta issue] which is tracking the move of the plugin to the new Kibana platform | ||
* Our link:https://www.elastic.co/blog/join-our-elastic-stack-workspace-on-slack[Elastic Stack workspace on Slack]. | ||
* The {repo}blob/{branch}/src/plugins/visualizations[source code], which will continue to be | ||
the most accurate source of information. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -203,7 +203,7 @@ | |
"leaflet-responsive-popup": "0.6.4", | ||
"leaflet-vega": "^0.8.6", | ||
"leaflet.heat": "0.2.0", | ||
"less": "^3.0.2", | ||
"less": "^2.7.3", | ||
"less-loader": "5.0.0", | ||
"lodash": "npm:@elastic/[email protected]", | ||
"lodash.clonedeep": "^4.5.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -133,6 +133,9 @@ | |
} | ||
} | ||
}, | ||
"note": { | ||
"type": "text" | ||
}, | ||
"type": { | ||
"type": "keyword" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.