No media
<% else %>Media | Address | Interval | Summary Mode | Summary Threshold | |||||
---|---|---|---|---|---|---|---|---|---|
PagerDuty |
<% @pagerduty_credentials.each_pair do |pk, pv| %>
<%= 'password'.eql?(pk) ? h("#{pk}: ...") : h("#{pk}: #{pv}") %> <% end %> |
<% else %> | <%= h mk.capitalize %> | <%= h mv %> | <% if @contact.media_intervals[mk] %> <%= h @contact.media_intervals[mk] %> seconds <% else %> no custom interval <% end %> | <% rollup_threshold = @contact.media_rollup_thresholds[mk] %> <% num_alerting = alerting[mk].nil? ? 0 : alerting[mk].length %> <% if rollup_threshold.nil? || (num_alerting < rollup_threshold.to_i) %> No - <% else %> Yes - <% end %> <%= num_alerting %> alerting | <% if rollup_threshold.nil? %> - <% else %> <%= h rollup_threshold %> <% end %> | <% end %>
Alerting checks are any that are failing, not acknowledged, not in scheduled maintenance, and currently allowed by this contact's notification rules.
<% if alerting.empty? %>There are no currently alerting checks.
<% else %>Media | Alerting Checks |
---|---|
<%= h media.capitalize %> |
<% checks.each do |entity_check| %>
<% entity, check = entity_check.split(':', 2) %>
<% check_link = "" +
h(check) + ""%>
<%= h entity %> ::
<%= check_link %> <% end %> |
No notification rules
<% else %>ID | Entities | Tags | Regex Tags | Warning Media | Critical Media | Time Restrictions | Blackholes |
---|---|---|---|---|---|---|---|
<%= h rule.id %> | <%= h( (rule.entities && !rule.entities.empty?) ? rule.entities.join(', ') : '-') %> | <%= h( (rule.tags && !rule.tags.empty?) ? rule.tags.to_a.join(', ') : '-') %> | <%= h( (rule.regex_tags && !rule.regex_tags.empty?) ? rule.regex_tags.to_a.join(', ') : '-') %> | <%= h( (rule.warning_media && !rule.warning_media.empty?) ? rule.warning_media.join(', ') : '-')%> | <%= h( (rule.critical_media && !rule.critical_media.empty?) ? rule.critical_media.join(', ') : '-') %> | <%= h(rule.time_restrictions) %> | <% blackholes = [] %> <% blackholes << 'Warning' if rule.warning_blackhole %> <% blackholes << 'Critical' if rule.critical_blackhole %><%= h(blackholes.join(', ')) %> |
No entities
<% else %>Entity | Checks |
---|---|
<%= h entity.name %> | <% checks.each do |check| %> <%= "#{ h check }" %> <% end %> |