diff --git a/x-pack/plugins/infra/server/lib/alerting/log_threshold/register_log_threshold_alert_type.ts b/x-pack/plugins/infra/server/lib/alerting/log_threshold/register_log_threshold_alert_type.ts
index cdb4d2d968479..65a86a41baef8 100644
--- a/x-pack/plugins/infra/server/lib/alerting/log_threshold/register_log_threshold_alert_type.ts
+++ b/x-pack/plugins/infra/server/lib/alerting/log_threshold/register_log_threshold_alert_type.ts
@@ -50,6 +50,8 @@ const criteriaSchema = schema.object({
     schema.literal(Comparator.NOT_EQ),
     schema.literal(Comparator.MATCH),
     schema.literal(Comparator.NOT_MATCH),
+    schema.literal(Comparator.MATCH_PHRASE),
+    schema.literal(Comparator.NOT_MATCH_PHRASE),
   ]),
   value: schema.oneOf([schema.number(), schema.string()]),
 });