## Summary Fixes https://github.com/elastic/kibana/issues/170980 Fixes https://github.com/elastic/kibana/issues/171345 This PR fixes the failing api integration test for index templates, adds a test for `simulate` route and adds missing tests for serverless. ### Checklist Delete any items that are not applicable to this PR. - [ ] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md) - [ ] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [ ] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios - [ ] Any UI touched in this PR is usable by keyboard only (learn more about [keyboard accessibility](https://webaim.org/techniques/keyboard/)) - [ ] Any UI touched in this PR does not create any new axe failures (run axe in browser: [FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/), [Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US)) - [ ] If a plugin configuration key changed, check if it needs to be allowlisted in the cloud and added to the [docker list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker) - [ ] This renders correctly on smaller devices using a responsive layout. (You can test this [in your browser](https://www.browserstack.com/guide/responsive-testing-on-local-server)) - [ ] This was checked for [cross-browser compatibility](https://www.elastic.co/support/matrix#matrix_browsers) ### Risk Matrix Delete this section if it is not applicable to this PR. Before closing this PR, invite QA, stakeholders, and other developers to identify risks that should be tested prior to the change/feature release. When forming the risk matrix, consider some of the following examples and how they may potentially impact the change: | Risk | Probability | Severity | Mitigation/Notes | |---------------------------|-------------|----------|-------------------------| | Multiple Spaces—unexpected behavior in non-default Kibana Space. | Low | High | Integration tests will verify that all features are still supported in non-default Kibana Space and when user switches between spaces. | | Multiple nodes—Elasticsearch polling might have race conditions when multiple Kibana nodes are polling for the same tasks. | High | Low | Tasks are idempotent, so executing them multiple times will not result in logical error, but will degrade performance. To test for this case we add plenty of unit tests around this logic and document manual testing procedure. | | Code should gracefully handle cases when feature X or plugin Y are disabled. | Medium | High | Unit tests will verify that any feature flag or plugin combination still results in our service operational. | | [See more potential risk examples](https://github.com/elastic/kibana/blob/main/RISK_MATRIX.mdx) | ### For maintainers - [ ] This was checked for breaking API changes and was [labeled appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process) |
||
---|---|---|
.. | ||
__jest__ | ||
common | ||
public | ||
server | ||
test/fixtures | ||
jest.config.js | ||
kibana.jsonc | ||
README.md | ||
tsconfig.json |
Index Management UI
Extensions service
This service is exposed from the Index Management setup contract and can be used to add content to the indices list and the index details page.
Extensions to the indices list
addBanner(banner: any)
: adds a banner on top of the indices list, for example when some indices run into an ILM issueaddFilter(filter: any)
: adds a filter to the indices list, for example to filter indices managed by ILMaddToggle(toggle: any)
: adds a toggle to the indices list, for example to display hidden indices
Extensions to the indices list and the index details page
addAction(action: any)
: adds an option to the "manage index" menu, for example to add an ILM policy to the indexaddBadge(badge: any)
: adds a badge to the index name, for example to indicate frozen, rollup or follower indices
Extensions to the index details page
addIndexDetailsTab(tab: IndexDetailsTab)
: adds a tab to the index details page. The tab has the following interface:
interface IndexDetailsTab {
// a unique key to identify the tab
id: IndexDetailsTabId;
// a text that is displayed on the tab label, usually a Formatted message component
name: ReactNode;
// a function that renders the content of the tab
renderTabContent: (args: {
index: Index;
getUrlForApp: ApplicationStart['getUrlForApp'];
}) => ReturnType<FunctionComponent>;
// a number to specify the order of the tabs
order: number;
// an optional function to return a boolean for when to render the tab
// if omitted, the tab is always rendered
shouldRenderTab?: (args: { index: Index }) => boolean;
}
An example of adding an ILM tab can be found in this file.
setIndexOverviewContent(content: IndexContent)
: replaces the default content in the overview tab (code block describing adding documents to the index) with the custom content. The custom content has the following interface:
interface IndexContent {
renderContent: (args: {
index: Index;
getUrlForApp: ApplicationStart['getUrlForApp'];
}) => ReturnType<FunctionComponent>;
setIndexMappingsContent(content: IndexContent)
: adds content to the mappings tab of the index details page. The content is displayed in the right bottom corner, below the mappings docs link.
Indices tab
Quick steps for testing
Create an index with special characters and verify it renders correctly:
# Renders as %{[@metadata][beat]}-%{[@metadata][version]}-2020.08.23
PUT %25%7B%5B%40metadata%5D%5Bbeat%5D%7D-%25%7B%5B%40metadata%5D%5Bversion%5D%7D-2020.08.23
Data streams tab
Quick steps for testing
Create a data stream using Console and you'll be able to view it in the UI:
# Configure template for creating a data stream
PUT _index_template/ds
{
"index_patterns": ["ds"],
"data_stream": {}
}
# Add a document to the data stream
POST ds/_doc
{
"@timestamp": "2020-01-27"
}
Create a data stream with special characters and verify it renders correctly:
# Configure template for creating a data stream
PUT _index_template/special_ds
{
"index_patterns": ["%{[@metadata][beat]}-%{[@metadata][version]}-2020.08.23"],
"data_stream": {}
}
# Add a document to the data stream, which will render as %{[@metadata][beat]}-%{[@metadata][version]}-2020.08.23
POST %25%7B%5B%40metadata%5D%5Bbeat%5D%7D-%25%7B%5B%40metadata%5D%5Bversion%5D%7D-2020.08.23/_doc
{
"@timestamp": "2020-01-27"
}
Create a data stream configured with data stream lifecyle.
PUT _index_template/my-index-template
{
"index_patterns": ["my-data-stream*"],
"data_stream": { },
"priority": 500,
"template": {
"lifecycle": {
"data_retention": "7d"
}
},
"_meta": {
"description": "Template with data stream lifecycle"
}
}
PUT _data_stream/my-data-stream
Index templates tab
Quick steps for testing
Legacy index templates are only shown in the UI on stateful and if a user has existing legacy index templates. You can test this functionality by creating one in Console:
PUT _template/template_1
{
"index_patterns": ["foo*"]
}
On serverless, Elasticsearch does not support legacy index templates and therefore this functionality is disabled in Kibana via the config xpack.index_management.enableLegacyTemplates
. For more details, see #163518.
To test Cloud-managed templates:
- Add
cluster.metadata.managed_index_templates
setting via Dev Tools:
PUT /_cluster/settings
{
"persistent": {
"cluster.metadata.managed_index_templates": ".cloud-"
}
}
- Create a template with the format:
.cloud-<template_name>
via Dev Tools.
PUT _template/.cloud-example
{
"index_patterns": [ "foobar*"]
}
The UI will now prevent you from editing or deleting this template.
In 7.x, the UI supports types defined as part of the mappings for legacy index templates. To test this out, use the "Load JSON" feature and verify the custom type is preserved:
{
"my_custom_type": {
"_source": {
"enabled": false
},
"properties": {
"name1": {
"type": "keyword"
}
}
}
}