diff --git a/x-pack/plugins/security_solution/public/cloud_security_posture/components/entity_insight.tsx b/x-pack/plugins/security_solution/public/cloud_security_posture/components/entity_insight.tsx index 7139994f7e972..7cb63cec460aa 100644 --- a/x-pack/plugins/security_solution/public/cloud_security_posture/components/entity_insight.tsx +++ b/x-pack/plugins/security_solution/public/cloud_security_posture/components/entity_insight.tsx @@ -76,7 +76,9 @@ export const EntityInsight = ({ const { items: alertsData } = useAlertsByStatus({ entityFilter, signalIndexName, - queryId: DETECTION_RESPONSE_ALERTS_BY_STATUS_ID, + queryId: isPreviewMode + ? `${DETECTION_RESPONSE_ALERTS_BY_STATUS_ID}ALERTS_PREVIEW_TRUE` + : `${DETECTION_RESPONSE_ALERTS_BY_STATUS_ID}ALERTS_PREVIEW_FALSE`, to, from, });