mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
## Summary Add a new telemetry task to the security solution plugin to collect ingest pipeline stats. The new task runs once a day, calls the `_nodes/stats/ingest` API, and sends an EBT event with the following information: ```js export interface NodeIngestPipelinesStats { name: string; totals: Totals; pipelines: Pipeline[]; } export interface Pipeline { name: string; totals: Totals; processors: Processor[]; } export interface Processor { name: string; totals: Totals; } export interface Totals { count: number; time_in_millis: number; current: number; failed: number; } ``` ### Checklist Check the PR satisfies following conditions. Reviewers should verify this PR satisfies this list as well. - [x] [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 - [x] [Flaky Test Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was used on any tests changed --------- Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> Co-authored-by: Ryland Herrick <ryalnd@gmail.com> |
||
---|---|---|
.. | ||
lib | ||
services | ||
utils | ||
ftr_provider_context.ts |