Transformations: add 'prepare time series' transformer (#36737)

* adding transformer that will stretch a data frame from wide to long.

* added a UI for the stretch frames transformer.

* refactored according to feedback.

* removed unused dep.

* making sure it is being displayed.

* minor adjustments.

* move stretch to prepare

* improved readability of tests.

* refactored to use a function component syntax.

Co-authored-by: Marcus Andersson <marcus.andersson@grafana.com>
This commit is contained in:
Ryan McKinley
2021-07-14 02:24:12 -07:00
committed by GitHub
parent 114f6714c4
commit 92801d5fa1
5 changed files with 404 additions and 0 deletions

View File

@@ -25,4 +25,5 @@ export enum DataTransformerID {
histogram = 'histogram',
configFromData = 'configFromData',
rowsToFields = 'rowsToFields',
prepareTimeSeries = 'prepareTimeSeries',
}