24 lines
832 B
Text
24 lines
832 B
Text
<% body = @alert.resolved? ? _('An alert has been resolved in %{project_path}.') : _('An alert has been triggered in %{project_path}.') %>
|
|
|
|
<%= body % { project_path: @alert.project.full_path } %>
|
|
<%= _('View alert details at') %> <%= @alert.details_url %>
|
|
|
|
<% if description = @alert.description %>
|
|
<%= _('Description:') %> <%= description %>
|
|
<% end %>
|
|
|
|
<% if env_name = @alert.environment&.name %>
|
|
<%= _('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 %>
|
|
|
|
<% if @alert.show_performance_dashboard_link? %>
|
|
<%= _('View the performance dashboard at') %> <%= @alert.performance_dashboard_link %>
|
|
<% end %>
|