Skip to content

Commit

Permalink
[Lens] Implement counter rate expression (#82948)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbondyra authored Nov 11, 2020
1 parent cb27a72 commit a50960e
Show file tree
Hide file tree
Showing 8 changed files with 564 additions and 31 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ export * from './arguments';
export * from './expression_function_parameter';
export * from './expression_function';
export * from './specs';
export * from './series_calculation_helpers';
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/

import { i18n } from '@kbn/i18n';
import { Datatable, DatatableRow } from '../../expression_types';
import { Datatable, DatatableRow } from '../expression_types';

/**
* Returns a string identifying the group of a row by a list of columns to group by
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import { i18n } from '@kbn/i18n';
import { ExpressionFunctionDefinition } from '../types';
import { Datatable } from '../../expression_types';
import { buildResultColumns, getBucketIdentifier } from './series_calculation_helpers';
import { buildResultColumns, getBucketIdentifier } from '../series_calculation_helpers';

export interface CumulativeSumArgs {
by?: string[];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import { i18n } from '@kbn/i18n';
import { ExpressionFunctionDefinition } from '../types';
import { Datatable } from '../../expression_types';
import { buildResultColumns, getBucketIdentifier } from './series_calculation_helpers';
import { buildResultColumns, getBucketIdentifier } from '../series_calculation_helpers';

export interface DerivativeArgs {
by?: string[];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import { i18n } from '@kbn/i18n';
import { ExpressionFunctionDefinition } from '../types';
import { Datatable } from '../../expression_types';
import { buildResultColumns, getBucketIdentifier } from './series_calculation_helpers';
import { buildResultColumns, getBucketIdentifier } from '../series_calculation_helpers';

export interface MovingAverageArgs {
by?: string[];
Expand Down
Loading

0 comments on commit a50960e

Please sign in to comment.