Skip to content

Commit

Permalink
Merge pull request #30 from grafana/document-outlier-fields
Browse files Browse the repository at this point in the history
  • Loading branch information
sd2k authored Jun 21, 2024
2 parents 6ec3380 + 088a0ba commit 46aee5c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/scenes-ml/src/components/SceneOutlierDetector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ import { SceneComponentProps, SceneObjectState, SceneObjectUrlValues, SceneObjec
import { css, cx } from '@emotion/css';
import { of } from 'rxjs';


// A subset of an outlying series, with a start and end time.
interface Outlier {
// The index of the series in the data frame.
series: number;
// The start time of the outlier.
start: number;
// The end time of the outlier, if it's a region.
end: number;
}

Expand Down

0 comments on commit 46aee5c

Please sign in to comment.