[Investigate] disable investigate plugin by default (#189359)

Disable feature flag `xpack.investigate.enabled` by default.
This commit is contained in:
Panagiota Mitsopoulou 2024-07-31 11:36:05 +03:00 committed by GitHub
parent 51c8949af9
commit 1d406182e2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,7 +8,7 @@
import { schema, type TypeOf } from '@kbn/config-schema';
export const config = schema.object({
enabled: schema.boolean({ defaultValue: true }),
enabled: schema.boolean({ defaultValue: false }),
});
export type InvestigateConfig = TypeOf<typeof config>;