Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/elastic/kibana into actions…
Browse files Browse the repository at this point in the history
…/unsecured-client
  • Loading branch information
ymao1 committed Oct 18, 2022
2 parents 28c6632 + 8cb51bd commit db2dc2a
Show file tree
Hide file tree
Showing 123 changed files with 3,051 additions and 1,363 deletions.
2 changes: 1 addition & 1 deletion docs/management/cases/manage-cases.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ it by clicking the *Open Visualization* option in the comment menu.
=== Manage cases

In *Management > {stack-manage-app} > Cases*, you can search cases and filter
them by tags, reporter.
them by severity, status, tags, and assignees.

To view a case, click on its name. You can then:

Expand Down
8 changes: 7 additions & 1 deletion docs/management/cases/setup-cases.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,15 @@ a|
* `All` for the *Cases* feature under *Management*.
* `All` for the *Actions and Connectors* feature under *Management*.

NOTE: The *Actions and Connectors* feature privilege is required to create, add,
[NOTE]
====
The *Actions and Connectors* feature privilege is required to create, add,
delete, and modify case connectors and to send updates to external systems.
By default, `All` for the *Cases* feature includes authority to delete cases
and comments unless you customize the sub-feature privileges.
====

| Give assignee access to cases
a| `All` for the *Cases* feature under *Management*.

Expand Down
31 changes: 31 additions & 0 deletions docs/setup/upgrade/resolving-migration-failures.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,37 @@ Unable to migrate the corrupt saved object document with _id: 'marketing_space:d

To delete the documents that cause migrations to fail, take the following steps:

. Create a role as follows:
+
[source,sh]
--------------------------------------------
PUT _security/role/grant_kibana_system_indices
{
"indices": [
{
"names": [
".kibana*"
],
"privileges": [
"all"
],
"allow_restricted_indices": true
}
]
}
--------------------------------------------

. Create a user with the role above and `superuser` built-in role:
+
[source,sh]
--------------------------------------------
POST /_security/user/temporarykibanasuperuser
{
"password" : "l0ng-r4nd0m-p@ssw0rd",
"roles" : [ "superuser", "grant_kibana_system_indices" ]
}
--------------------------------------------

. Remove the write block which the migration system has placed on the previous index:
+
[source,sh]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1382,7 +1382,7 @@
"micromatch": "^4.0.5",
"mini-css-extract-plugin": "1.1.0",
"minimist": "^1.2.6",
"mocha": "^10.0.0",
"mocha": "^10.1.0",
"mocha-junit-reporter": "^2.0.2",
"mochawesome": "^7.0.1",
"mochawesome-merge": "^4.2.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const OptionsListStrings = {
}),
getPlaceholder: () =>
i18n.translate('controls.optionsList.control.placeholder', {
defaultMessage: 'Select...',
defaultMessage: 'Any',
}),
},
editor: {
Expand Down
Loading

0 comments on commit db2dc2a

Please sign in to comment.