From ddde11ca0c5129661d228fa3ea20b923db9e7340 Mon Sep 17 00:00:00 2001 From: James Gowdy Date: Thu, 4 Jun 2020 14:59:27 +0100 Subject: [PATCH] [ML] Adding annotations_enabled to model plot config (#68228) --- x-pack/plugins/ml/common/types/anomaly_detection_jobs/job.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/x-pack/plugins/ml/common/types/anomaly_detection_jobs/job.ts b/x-pack/plugins/ml/common/types/anomaly_detection_jobs/job.ts index c75387a4b410b..3dbdb8bf3c002 100644 --- a/x-pack/plugins/ml/common/types/anomaly_detection_jobs/job.ts +++ b/x-pack/plugins/ml/common/types/anomaly_detection_jobs/job.ts @@ -78,6 +78,7 @@ export interface DataDescription { export interface ModelPlotConfig { enabled: boolean; + annotations_enabled?: boolean; terms?: string; }