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] Replace swim lane implementation with elastic-charts Heatmap #79315

Merged
merged 26 commits into from
Oct 6, 2020
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
38c3593
[ML] replace swim lane vis
darnautov Sep 30, 2020
d2c7bff
[ML] update swimlane_container, add colors constant
darnautov Oct 2, 2020
577342c
[ML] update swimlane_container, add colors constant
darnautov Oct 2, 2020
7ade2c3
[ML] update swimlane_container, add colors constant
darnautov Oct 2, 2020
34a3995
Merge remote-tracking branch 'upstream/master' into ML-new-swimlane
darnautov Oct 5, 2020
c65888d
[ML] unfiltered label for Overall swim lane
darnautov Oct 5, 2020
f8b31f3
[ML] tooltip content
darnautov Oct 5, 2020
76c1b08
[ML] fix styles, override legend styles
darnautov Oct 5, 2020
42e70ba
[ML] hide timeline for overall swimlane on the Anomaly Explorer page
darnautov Oct 5, 2020
1bc52a2
[ML] remove explorer_swimlane component
darnautov Oct 5, 2020
0dc7b5b
[ML] remove dragselect dependency
darnautov Oct 5, 2020
43291f6
[ML] fix types
darnautov Oct 6, 2020
58e9ac6
[ML] fix tooltips, change mask fill to white
darnautov Oct 6, 2020
54bab97
[ML] fix highlightedData
darnautov Oct 6, 2020
a7de8bc
[ML] maxLegendHeight, fix Y-axis tooltip
darnautov Oct 6, 2020
622fbc8
[ML] clear selection
darnautov Oct 6, 2020
a97dfad
[ML] dataTestSubj
darnautov Oct 6, 2020
f34d0f3
[ML] remove jest snapshot for explorer_swimlane
darnautov Oct 6, 2020
d1d2c72
[ML] handle empty string label, fix translation key
darnautov Oct 6, 2020
99b0717
[ML] better positioning for the loading indicator
darnautov Oct 6, 2020
661aab6
[ML] update elastic/charts version
darnautov Oct 6, 2020
3a98bce
Merge remote-tracking branch 'upstream/master' into ML-new-swimlane
darnautov Oct 6, 2020
6e63215
[ML] fix getFormattedSeverityScore and showSwimlane condition
darnautov Oct 6, 2020
d30b08e
[ML] fix selector for functional test
darnautov Oct 6, 2020
f3c7a94
[ML] change the legend alignment
darnautov Oct 6, 2020
7910908
[ML] update elastic charts
darnautov Oct 6, 2020
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@
"@babel/register": "^7.10.5",
"@babel/types": "^7.11.0",
"@elastic/apm-rum": "^5.6.1",
"@elastic/charts": "23.1.1",
"@elastic/charts": "23.2.0",
"@elastic/ems-client": "7.10.0",
"@elastic/eslint-config-kibana": "0.15.0",
"@elastic/eslint-plugin-eui": "0.0.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/kbn-ui-shared-deps/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"kbn:watch": "node scripts/build --dev --watch"
},
"dependencies": {
"@elastic/charts": "23.1.1",
"@elastic/charts": "23.2.0",
"@elastic/eui": "29.3.0",
"@elastic/numeral": "^2.5.0",
"@kbn/i18n": "1.0.0",
Expand Down
2 changes: 0 additions & 2 deletions x-pack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@
"@types/d3-shape": "^1.3.1",
"@types/d3-time": "^1.0.10",
"@types/d3-time-format": "^2.1.1",
"@types/dragselect": "^1.13.1",
"@types/elasticsearch": "^5.0.33",
"@types/fancy-log": "^1.3.1",
"@types/file-saver": "^2.0.0",
Expand Down Expand Up @@ -165,7 +164,6 @@
"cypress-promise": "^1.1.0",
"d3": "3.5.17",
"d3-scale": "1.0.7",
"dragselect": "1.13.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-adapter-utils": "^1.13.0",
Expand Down
9 changes: 9 additions & 0 deletions x-pack/plugins/ml/common/constants/anomalies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,15 @@ export enum ANOMALY_THRESHOLD {
LOW = 0,
}

export const SEVERITY_COLORS = {
CRITICAL: '#fe5050',
MAJOR: '#fba740',
MINOR: '#fdec25',
WARNING: '#8bc8fb',
LOW: '#d2e9f7',
BLANK: '#ffffff',
};

export const PARTITION_FIELDS = ['partition_field', 'over_field', 'by_field'] as const;
export const JOB_ID = 'job_id';
export const PARTITION_FIELD_VALUE = 'partition_field_value';
2 changes: 1 addition & 1 deletion x-pack/plugins/ml/common/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
*/

export { SearchResponse7 } from './types/es_client';
export { ANOMALY_SEVERITY, ANOMALY_THRESHOLD } from './constants/anomalies';
export { ANOMALY_SEVERITY, ANOMALY_THRESHOLD, SEVERITY_COLORS } from './constants/anomalies';
export { getSeverityColor, getSeverityType } from './util/anomaly_utils';
export { composeValidators, patternValidator } from './util/validators';
21 changes: 14 additions & 7 deletions x-pack/plugins/ml/common/util/anomaly_utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import { i18n } from '@kbn/i18n';
import { CONDITIONS_NOT_SUPPORTED_FUNCTIONS } from '../constants/detector_rule';
import { MULTI_BUCKET_IMPACT } from '../constants/multi_bucket_impact';
import { ANOMALY_SEVERITY, ANOMALY_THRESHOLD } from '../constants/anomalies';
import { ANOMALY_SEVERITY, ANOMALY_THRESHOLD, SEVERITY_COLORS } from '../constants/anomalies';
import { AnomalyRecordDoc } from '../types/anomalies';

export interface SeverityType {
Expand Down Expand Up @@ -109,6 +109,13 @@ function getSeverityTypes() {
});
}

/**
* Return formatted severity score.
*/
export function getFormattedSeverityScore(score: number) {
return score < 1 ? '< 1' : score.toFixed(2);
darnautov marked this conversation as resolved.
Show resolved Hide resolved
}

// Returns a severity label (one of critical, major, minor, warning or unknown)
// for the supplied normalized anomaly score (a value between 0 and 100).
export function getSeverity(normalizedScore: number): SeverityType {
Expand Down Expand Up @@ -168,17 +175,17 @@ export function getSeverityWithLow(normalizedScore: number): SeverityType {
// for the supplied normalized anomaly score (a value between 0 and 100).
export function getSeverityColor(normalizedScore: number): string {
if (normalizedScore >= ANOMALY_THRESHOLD.CRITICAL) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The > in the legend should actually be >= to match these conditions? Could the condition in the legend labelling be changed in a follow-up?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks for spotting this! yes, I'll adjust the legend labels in a follow-up PR.

return '#fe5050';
return SEVERITY_COLORS.CRITICAL;
} else if (normalizedScore >= ANOMALY_THRESHOLD.MAJOR) {
return '#fba740';
return SEVERITY_COLORS.MAJOR;
} else if (normalizedScore >= ANOMALY_THRESHOLD.MINOR) {
return '#fdec25';
return SEVERITY_COLORS.MINOR;
} else if (normalizedScore >= ANOMALY_THRESHOLD.WARNING) {
return '#8bc8fb';
return SEVERITY_COLORS.WARNING;
} else if (normalizedScore >= ANOMALY_THRESHOLD.LOW) {
return '#d2e9f7';
return SEVERITY_COLORS.LOW;
} else {
return '#ffffff';
return SEVERITY_COLORS.BLANK;
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.mlChartTooltip {
@include euiToolTipStyle('s');
@include euiFontSizeXS;
position: absolute;
padding: 0;
transition: opacity $euiAnimSpeedNormal;
pointer-events: none;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,57 @@ const renderHeader = (headerData?: ChartTooltipValue, formatter?: TooltipValueFo
return formatter ? formatter(headerData) : headerData.label;
};

/**
* Pure component for rendering the tooltip content with a custom layout across the ML plugin.
*/
export const FormattedTooltip: FC<{ tooltipData: TooltipData }> = ({ tooltipData }) => {
return (
<div className="mlChartTooltip">
{tooltipData.length > 0 && tooltipData[0].skipHeader === undefined && (
<div className="mlChartTooltip__header">{renderHeader(tooltipData[0])}</div>
)}
{tooltipData.length > 1 && (
<div className="mlChartTooltip__list">
{tooltipData
.slice(1)
.map(({ label, value, color, isHighlighted, seriesIdentifier, valueAccessor }) => {
const classes = classNames('mlChartTooltip__item', {
// eslint-disable-next-line @typescript-eslint/naming-convention
echTooltip__rowHighlighted: isHighlighted,
});

const renderValue = Array.isArray(value)
? value.map((v) => <div key={v}>{v}</div>)
: value;

return (
<div
key={`${seriesIdentifier.key}__${valueAccessor}`}
className={classes}
style={{
borderLeftColor: color,
}}
>
<EuiFlexGroup>
<EuiFlexItem className="eui-textBreakWord mlChartTooltip__label" grow={false}>
{label}
</EuiFlexItem>
<EuiFlexItem className="eui-textBreakAll mlChartTooltip__value">
{renderValue}
</EuiFlexItem>
</EuiFlexGroup>
</div>
);
})}
</div>
)}
</div>
);
};

/**
* Tooltip component bundled with the {@link ChartTooltipService}
*/
const Tooltip: FC<{ service: ChartTooltipService }> = React.memo(({ service }) => {
const [tooltipData, setData] = useState<TooltipData>([]);
const refCallback = useRef<ChildrenArg['triggerRef']>();
Expand Down Expand Up @@ -57,50 +108,9 @@ const Tooltip: FC<{ service: ChartTooltipService }> = React.memo(({ service }) =
<div
{...getTooltipProps({
ref: tooltipRef,
className: 'mlChartTooltip',
})}
>
{tooltipData.length > 0 && tooltipData[0].skipHeader === undefined && (
<div className="mlChartTooltip__header">{renderHeader(tooltipData[0])}</div>
)}
{tooltipData.length > 1 && (
<div className="mlChartTooltip__list">
{tooltipData
.slice(1)
.map(({ label, value, color, isHighlighted, seriesIdentifier, valueAccessor }) => {
const classes = classNames('mlChartTooltip__item', {
// eslint-disable-next-line @typescript-eslint/naming-convention
echTooltip__rowHighlighted: isHighlighted,
});

const renderValue = Array.isArray(value)
? value.map((v) => <div key={v}>{v}</div>)
: value;

return (
<div
key={`${seriesIdentifier.key}__${valueAccessor}`}
className={classes}
style={{
borderLeftColor: color,
}}
>
<EuiFlexGroup>
<EuiFlexItem
className="eui-textBreakWord mlChartTooltip__label"
grow={false}
>
{label}
</EuiFlexItem>
<EuiFlexItem className="eui-textBreakAll mlChartTooltip__value">
{renderValue}
</EuiFlexItem>
</EuiFlexGroup>
</div>
);
})}
</div>
)}
<FormattedTooltip tooltipData={tooltipData} />
</div>
);
}) as TooltipTriggerProps['tooltip'],
Expand Down

This file was deleted.

Loading