kibana/x-pack/plugins/stack_alerts
ymao1 57453f1709
Some fixes from backport (#89746)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2021-02-01 10:17:59 -05:00
..
common Some fixes from backport (#89746) 2021-02-01 10:17:59 -05:00
public Remove geo threshold alert type (#89632) 2021-01-29 10:36:52 -07:00
server Some fixes from backport (#89746) 2021-02-01 10:17:59 -05:00
jest.config.js Jest multi-project configuration (#77894) 2020-12-02 11:42:23 -08:00
kibana.json [Alerting] Search alert (#88528) 2021-01-29 07:45:00 -05:00
README.md
tsconfig.json [Alerting] Migrate Actions, Alerts, Stack Alerts and TriggersActionsUI plugins to TS project references (#88556) 2021-01-20 10:53:01 -08:00

stack_alerts plugin

This plugin provides alertTypes shipped with Kibana for use with the the alerts 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: