mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
## Summary
Closes #136391
Uses a description of the anomaly for the alert message for anomaly
detection alerting rules with the `record` result type. This messages is
used for example in the `Reason` field in the alert table and details
flyout.
<img width="753" alt="image"
src="072fe833
-204b-4d38-bd3d-50d00015a43f">
### Checklist
- [ ]
[Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html)
was added for features that require explanation or tutorials
- [ ] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
20 lines
839 B
TypeScript
20 lines
839 B
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0; you may not use this file except in compliance with the Elastic License
|
|
* 2.0.
|
|
*/
|
|
|
|
export * from '../common/types/data_recognizer';
|
|
export * from '../common/types/capabilities';
|
|
export * from '../common/types/anomaly_detection_jobs';
|
|
export * from '../common/types/modules';
|
|
export * from '../common/types/audit_message';
|
|
|
|
export * from '../common/util/validators';
|
|
|
|
export * from '../common/util/metric_change_description';
|
|
export * from './application/components/field_stats_flyout';
|
|
export * from './application/data_frame_analytics/common';
|
|
|
|
export { useFieldStatsFlyoutContext } from './application/components/field_stats_flyout/use_field_stats_flytout_context';
|