Skip to content

Commit dd77114

Browse files
committed
Enable alerting and actions plugin by default
1 parent db401e4 commit dd77114

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

x-pack/legacy/plugins/actions/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,9 @@ action types.
1919

2020
## Usage
2121

22-
1. Enable the actions plugin in the `kibana.yml` by setting `xpack.actions.enabled: true`.
23-
2. Develop and register an action type (see action types -> example).
24-
3. Create an action by using the RESTful API (see actions -> create action).
25-
4. Use alerts to execute actions or execute manually (see firing actions).
22+
1. Develop and register an action type (see action types -> example).
23+
2. Create an action by using the RESTful API (see actions -> create action).
24+
3. Use alerts to execute actions or execute manually (see firing actions).
2625

2726
## Kibana Actions Configuration
2827
Implemented under the [Actions Config](./server/actions_config.ts).

x-pack/legacy/plugins/actions/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export function actions(kibana: any) {
3333
config(Joi: Root) {
3434
return Joi.object()
3535
.keys({
36-
enabled: Joi.boolean().default(false),
36+
enabled: Joi.boolean().default(true),
3737
whitelistedHosts: Joi.array()
3838
.items(
3939
Joi.string()

x-pack/legacy/plugins/alerting/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ A Kibana alert detects a condition and executes one or more actions when that co
2323

2424
## Usage
2525

26-
1. Enable the alerting plugin in the `kibana.yml` by setting `xpack.alerting.enabled: true`.
27-
2. Develop and register an alert type (see alert types -> example).
28-
3. Create an alert using the RESTful API (see alerts -> create).
26+
1. Develop and register an alert type (see alert types -> example).
27+
2. Create an alert using the RESTful API (see alerts -> create).
2928

3029
## Limitations
3130

x-pack/legacy/plugins/alerting/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export function alerting(kibana: any) {
3434
config(Joi: Root) {
3535
return Joi.object()
3636
.keys({
37-
enabled: Joi.boolean().default(false),
37+
enabled: Joi.boolean().default(true),
3838
})
3939
.default();
4040
},

0 commit comments

Comments
 (0)