File tree Expand file tree Collapse file tree 4 files changed +7
-9
lines changed Expand file tree Collapse file tree 4 files changed +7
-9
lines changed Original file line number Diff line number Diff 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
2827Implemented under the [ Actions Config] ( ./server/actions_config.ts ) .
Original file line number Diff line number Diff 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 ( )
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 } ,
You can’t perform that action at this time.
0 commit comments