kibana/x-pack/plugins/rollup
Mikhail Shustov 99cd66f72d
[Core] Explicit typings for request handler context (#88718) (#88975)
* move context to server part. couple with RequestHandlerContext

Context implementation will be simplified in follow-up.

* adopt core code

* adopt bfetch code

* adopt data code

* adopt search examples

* adopt vis_type_timelion

* adopt vis_type_timeseries

* adopt plugin functional tests

* adopt actions

* adopt alerting plugin

* adopt APM plugin

* adopt beats_management

* adopt case plugin

* adopt cross_cluster_replication

* adopt data_enhanced

* adopt event_log

* adopt global_search

* adopt index_management

* adopt infra

* adopt licensing

* adopt lists

* adopt logstash

* adopt reporting

* adopt observability

* adopt monitoring

* adopt rollup

* adopt so tagging

* adopt security

* adopt security_solutions

* adopt watcher

* adopt uptime

* adopt spaces

* adopt snapshot_restore

* adopt features changes

* mute error when null used to extend context

* update docs

* small cleanup

* add type safety for return type

* refactor registerRouteHandlerContext type

* update docs

* update license header

* update docs

* fix type error. fetch body does not accept array of strings

* fix telemetry test

* remove unnecessary ts-ignore

* address comments

* update docs
# Conflicts:
#	docs/development/plugins/data/server/kibana-plugin-plugins-data-server.plugin.start.md
#	src/plugins/data/server/server.api.md
#	x-pack/plugins/monitoring/server/plugin.ts
2021-01-21 18:13:51 +01:00
..
common
fixtures Consolidates Jest configuration files and scripts (#82671) (#83362) 2020-11-13 13:25:06 -08:00
public [Rollup Jobs] Added autofocus to cron editor (#86324) (#86587) 2020-12-18 20:06:24 -08:00
server [Core] Explicit typings for request handler context (#88718) (#88975) 2021-01-21 18:13:51 +01:00
jest.config.js Jest multi-project configuration (#77894) (#84826) 2020-12-02 14:02:21 -08:00
kibana.json [7.x] Hide management sections based on cluster/index privileges (#67791) (#77345) 2020-09-14 14:33:17 -04:00
README.md

Rollup

Summary

Welcome to the Kibana rollup plugin! This plugin provides Kibana support for Elasticsearch's rollup feature. Please refer to the Elasticsearch documentation to understand rollup indices and how to create rollup jobs.

This plugin allows Kibana to:

  • Create and manage rollup jobs
  • Create rollup index patterns
  • Create visualizations from rollup index patterns
  • Identify rollup indices in Index Management

The rest of this doc dives into the implementation details of each of the above functionality.

Quick steps for testing

The pattern for creating a rollup job and rollup index pattern is:

  1. Install sample data (web logs is a good one).
  2. Create a rollup job with an index pattern that captures this index (e.g. k*).
  3. Set frequency to "minute". Clear the latency buffer field.
  4. Select the time field which is the same time field selected in the installed index pattern (timestamp without an @ in the case of web logs).
  5. Specify a time bucket size (10m will do).
  6. Select a few terms, histogram, and metrics fields.
  7. Create and start the rollup job. Wait a minute for the job to run. You should see the numbers for documents and pages processed change in the detail panel.
  8. Create a rollup index pattern in the Index Patterns app.
  9. Now you can create visualizations using this index pattern.

Create and manage rollup jobs

The most straight forward part of this plugin! A new app called Rollup Jobs is registered in the Management section and follows a typical CRUD UI pattern. This app allows users to create, start, stop, clone, and delete rollup jobs. There is no way to edit an existing rollup job; instead, the UI offers a cloning ability. The client-side portion of this app lives in public/crud_app and uses endpoints registered in server/routes/api/jobs.

Refer to the Elasticsearch documentation to understand rollup indices and how to create rollup jobs.

Create rollup index patterns

Kibana uses index patterns to consume and visualize rollup indices. Typically, Kibana can inspect the indices captured by an index pattern, identify its aggregations and fields, and determine how to consume the data. Rollup indices don't contain this type of information, so we predefine how to consume a rollup index pattern with the type and typeMeta fields on the index pattern saved object. All rollup index patterns have type defined as "rollup" and typeMeta defined as an object of the index pattern's capabilities.

In the Index Pattern app, the "Create index pattern" button includes a context menu when a rollup index is detected. This menu offers items for creating a standard index pattern and a rollup index pattern. A rollup config is registered to index pattern creation extension point. The context menu behavior in particular uses the getIndexPatternCreationOption() method. When the user chooses to create a rollup index pattern, this config changes the behavior of the index pattern creation wizard:

  1. Adds a Rollup badge to rollup indices using getIndexTags().
  2. Enforces index pattern rules using checkIndicesForErrors(). Rollup index patterns must match one rollup index, and optionally, any number of regular indices. A rollup index pattern configured with one or more regular indices is known as a "hybrid" index pattern. This allows the user to visualize historical (rollup) data and live (regular) data in the same visualization.
  3. Routes to this plugin's rollup _fields_for_wildcard endpoint, instead of the standard one, using getFetchForWildcardOptions(), so that the internal rollup data field names are mapped to the original field names.
  4. Writes additional information about aggregations, fields, histogram interval, and date histogram interval and timezone to the rollup index pattern saved object using getIndexPatternMappings(). This collection of information is referred to as its "capabilities".

Once a rollup index pattern is created, it is tagged with Rollup in the list of index patterns, and its details page displays capabilities information. This is done by registering yet another config for the index pattern list extension points.

Create visualizations from rollup index patterns

This plugin enables the user to create visualizations from rollup data using the Visualize app, excluding TSVB, Vega, and Timelion. When Visualize sends search requests, this plugin routes the requests to the Elasticsearch rollup search endpoint, which searches the special document structure within rollup indices. The visualization options available to users are based on the capabilities of the rollup index pattern they're visualizing.

Routing to the Elasticsearch rollup search endpoint is done by creating an extension point in Courier, effectively allowing multiple "search strategies" to be registered. A rollup search strategy is registered by this plugin that queries this plugin's rollup search endpoint.

Limiting visualization editor options is done by registering configs to various vis extension points. These configs use information stored on the rollup index pattern to limit:

  • Available aggregation types
  • Available fields for a particular aggregation
  • Default and base interval for histogram aggregation
  • Default and base interval, and time zone, for date histogram aggregation

Identify rollup indices in Index Management

In Index Management, similar to system indices, rollup indices are hidden by default. A toggle is provided to show rollup indices and add a badge to the table rows. This is done by using Index Management's extension points.

The toggle and badge are registered on the client-side in public/extend_index_management.

Additional data needed to filter rollup indices in Index Management is provided with a data enricher.