kibana/x-pack/plugins/stack_alerts
ymao1 8e3604fe11
[Alerting UI] Fixing behavior when trying to render an Index Threshold visualization with invalid data (#99518)
* Showing error message not object. Removing error toaster

* Updating unit tests

* Fixing i18n

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2021-05-10 14:46:01 -04:00
..
common ES client : use the new type definitions (#83808) 2021-03-25 04:47:16 -04:00
public [Alerting UI] Fixing behavior when trying to render an Index Threshold visualization with invalid data (#99518) 2021-05-10 14:46:01 -04:00
server Fix malformed geo alerts call to transformResults (#98094) 2021-05-03 17:30:19 -04:00
jest.config.js Elastic License 2.0 (#90099) 2021-02-03 18:12:39 -08:00
kibana.json Rename alerts plugin to alerting (#92898) 2021-03-05 13:59:34 -05:00
README.md Rename alerts plugin to alerting (#92898) 2021-03-05 13:59:34 -05:00
tsconfig.json Revert "TS Incremental build exclude test files (#95610)" (#96223) 2021-04-05 11:59:26 -07:00

stack_alerts plugin

This plugin provides alertTypes shipped with Kibana for use with the the alerting plugin. When enabled, it will register the alertTypes by the Stack in the alerting plugin, register associated HTTP routes, etc.

The plugin setup and start contracts for this plugin are the following type, which provides some runtime capabilities. Each built-in alertType will have it's own top-level property in the IService interface, if it needs to expose functionality.

export interface IService {
  indexThreshold: {
     timeSeriesQuery(params: TimeSeriesQueryParameters): Promise<TimeSeriesResult>;
  }
}

Each Stack AlertType is described in it's own README: