kibana/x-pack/plugins/stack_alerts
2021-01-05 13:24:59 -06:00
..
common Update config usage from geoAlerts -> geoAlerting (#85220) 2020-12-09 09:25:58 -07:00
public [Alerting] Encourage type safe usage of Alerting (#86623) 2020-12-21 19:17:04 +00:00
server Revert "[Alerting] Enforces typing of Alert's ActionGroups (#86761)" 2021-01-05 13:24:59 -06:00
jest.config.js
kibana.json
README.md

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: