kibana/examples/partial_results_example
2024-04-02 11:41:33 -07:00
..
public Use rxjs instead of rxjs/operators (#179553) 2024-04-02 11:41:33 -07:00
kibana.jsonc [packages] migrate all plugins to packages (#148130) 2023-02-08 21:06:50 -06:00
README.md [Expressions] Partial results example plugin (#113001) 2021-09-27 18:54:05 +02:00
tsconfig.json Transpile packages on demand, validate all TS projects (#146212) 2022-12-22 19:00:29 -06:00

Partial Results Example

The partial results is a feature of the expressions plugin allowing to emit intermediate execution results over time.

This example plugin demonstrates:

  1. An expression function emitting a datatable with intermediate results (getEvents).
  2. An expression function emitting an infinite number of results (countEvent).
  3. A combination of those two functions using the mapColumn function that continuously updates the resulting table.