Skip to content

Commit

Permalink
[Stack Monitoring] Enable react stack monitoring by default (#114436)
Browse files Browse the repository at this point in the history
* Enable react stack monitoring by default

* Also update test snapshot

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
  • Loading branch information
matschaffer and kibanamachine committed Oct 14, 2021
1 parent b7f384f commit 38edbf4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion x-pack/plugins/monitoring/server/config.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ describe('config schema', () => {
"index": "metricbeat-*",
},
"min_interval_seconds": 10,
"render_react_app": false,
"render_react_app": true,
"show_license_expiration": true,
},
}
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/monitoring/server/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const configSchema = schema.object({
}),
min_interval_seconds: schema.number({ defaultValue: 10 }),
show_license_expiration: schema.boolean({ defaultValue: true }),
render_react_app: schema.boolean({ defaultValue: false }),
render_react_app: schema.boolean({ defaultValue: true }),
}),
kibana: schema.object({
collection: schema.object({
Expand Down

0 comments on commit 38edbf4

Please sign in to comment.