Skip to content

Commit

Permalink
[AO] Set Feature flag of the Log threshold alert detail page to ON by…
Browse files Browse the repository at this point in the history
… default (#159947)

## Summary

it fixes #159945


## Release note:
Introducing the Log threshold alert detail page, which provides more
information and context about the Logs threshold alert
  • Loading branch information
fkanout authored Jun 19, 2023
1 parent 043a1a5 commit 968d786
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 default: 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 968d786

Please sign in to comment.