Skip to content

Commit

Permalink
Enable feature flag by default
Browse files Browse the repository at this point in the history
  • Loading branch information
fkanout committed Jun 19, 2023
1 parent 14c5fff commit b7e1806
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion x-pack/plugins/observability/server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import {
WrappedElasticsearchClientError,
} from '../common/utils/unwrap_es_response';
import { observabilityCoPilotConfig } from './services/openai/config';

export { rangeQuery, kqlQuery, termQuery, termsQuery } from './utils/queries';
export { getInspectResponse } from '../common/utils/get_inspect_response';

Expand All @@ -35,7 +36,8 @@ const configSchema = schema.object({
enabled: schema.boolean({ defaultValue: false }),
}),
logs: schema.object({
enabled: schema.boolean({ defaultValue: false }),
// Enable it by defult: https://github.com/elastic/kibana/issues/159945
enabled: schema.boolean({ defaultValue: true }),
}),
uptime: schema.object({
enabled: schema.boolean({ defaultValue: false }),
Expand Down

0 comments on commit b7e1806

Please sign in to comment.