diff --git a/app/views/notify/prometheus_alert_fired_email.html.haml b/app/views/notify/prometheus_alert_fired_email.html.haml
index 25dc8e59073ebf184dc6de711a88ce916bddbc08..054b221c34ae344536bab6f39d4cd6a4a5b6987d 100644
--- a/app/views/notify/prometheus_alert_fired_email.html.haml
+++ b/app/views/notify/prometheus_alert_fired_email.html.haml
@@ -15,13 +15,6 @@
     = _('Environment:')
     = env_name
 
-- if metric_query = @alert.prometheus_alert&.full_query
-  %p
-    = _('Metric:')
-
-    %pre
-      = metric_query
-
 - if @alert.show_incident_issues_link?
   %p
     = link_to(_('View incident issues.'), @alert.incident_issues_link)
diff --git a/app/views/notify/prometheus_alert_fired_email.text.erb b/app/views/notify/prometheus_alert_fired_email.text.erb
index a9c1d98a39631d749a8ea4e983340a925028e944..6a62627c4b6c35b33bc1d1a07a11deaf1bf35a67 100644
--- a/app/views/notify/prometheus_alert_fired_email.text.erb
+++ b/app/views/notify/prometheus_alert_fired_email.text.erb
@@ -11,10 +11,6 @@
 <%= _('Environment:') %> <%= env_name %>
 <% end %>
 
-<% if metric_query = @alert.prometheus_alert&.full_query %>
-<%= _('Metric:') %> <%= metric_query %>
-<% end %>
-
 <% if @alert.show_incident_issues_link? %>
 <%= _('View incident issues.') %> <%= @alert.incident_issues_link %>
 <% end %>
diff --git a/locale/gitlab.pot b/locale/gitlab.pot
index edf1fa71ba90e6ee06981569b7658dad65ad5aff..0851cbb5208fe7ecbc502acd1b0ea382d6e109ba 100644
--- a/locale/gitlab.pot
+++ b/locale/gitlab.pot
@@ -33083,9 +33083,6 @@ msgstr ""
 msgid "Metric"
 msgstr ""
 
-msgid "Metric:"
-msgstr ""
-
 msgid "MetricChart|Please select a metric"
 msgstr ""
 
diff --git a/spec/mailers/emails/projects_spec.rb b/spec/mailers/emails/projects_spec.rb
index 9518672939be4e862426dd3dab85da728c915339..94ef98dafe2b21f74b69c2d12792ca11b6e7459e 100644
--- a/spec/mailers/emails/projects_spec.rb
+++ b/spec/mailers/emails/projects_spec.rb
@@ -74,7 +74,6 @@
         is_expected.to have_body_text(alert.details_url)
         is_expected.not_to have_body_text('Description:')
         is_expected.not_to have_body_text('Environment:')
-        is_expected.not_to have_body_text('Metric:')
       end
     end
 
@@ -96,7 +95,6 @@
         is_expected.to have_body_text('Description:')
         is_expected.to have_body_text('alert description')
         is_expected.not_to have_body_text('Environment:')
-        is_expected.not_to have_body_text('Metric:')
       end
     end
 
@@ -120,7 +118,6 @@
         is_expected.to have_body_text('Environment:')
         is_expected.to have_body_text(environment.name)
         is_expected.not_to have_body_text('Description:')
-        is_expected.not_to have_body_text('Metric:')
       end
     end