Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ML] Migrate Timeseries Chart to React #25792

Merged
merged 4 commits into from
Nov 16, 2018
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* anomalies table component.
*/

import { listenerFactoryProvider } from 'plugins/ml/factories/listener_factory';
import { listenerFactoryProvider } from '../../factories/listener_factory';

class AnomaliesTableService {
constructor() {
Expand Down
7 changes: 3 additions & 4 deletions x-pack/plugins/ml/public/services/field_format_service.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

import _ from 'lodash';

import { mlFunctionToESAggregation } from 'plugins/ml/../common/util/job_utils';
import { getIndexPatternById } from 'plugins/ml/util/index_utils';
import { mlJobService } from 'plugins/ml/services/job_service';
import { mlFunctionToESAggregation } from '../../common/util/job_utils';
import { getIndexPatternById } from '../util/index_utils';
import { mlJobService } from '../services/job_service';

// Service for accessing FieldFormat objects configured for a Kibana index pattern
// for use in formatting the actual and typical values from anomalies.
Expand Down Expand Up @@ -121,4 +121,3 @@ class FieldFormatService {
}

export const mlFieldFormatService = new FieldFormatService();

Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import d3 from 'd3';

import { drawLineChartDots } from 'plugins/ml/util/chart_utils';
import { drawLineChartDots } from '../util/chart_utils';

/*
* Creates a mask over sections of the context chart and swimlane
Expand Down
Loading