diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2015-10-07 12:24:28 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2015-10-07 12:24:28 +0100 |
commit | 5c62ccc2858f8f8245cb6e8f7058c58de9363419 (patch) | |
tree | a07f5eff29b28c03278bf64ba0e7b42a38906e65 /lib/mauve/notifiers/templates/hipchat.html.erb | |
parent | 99e98f288ed62ed06e424da0b60340f1c23e222d (diff) |
Added hipchat notification
Diffstat (limited to 'lib/mauve/notifiers/templates/hipchat.html.erb')
-rw-r--r-- | lib/mauve/notifiers/templates/hipchat.html.erb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/mauve/notifiers/templates/hipchat.html.erb b/lib/mauve/notifiers/templates/hipchat.html.erb new file mode 100644 index 0000000..4506c57 --- /dev/null +++ b/lib/mauve/notifiers/templates/hipchat.html.erb @@ -0,0 +1,22 @@ +<a href="<%=WebInterface.url_for(alert)%>"><%= alert.id%>: <%= alert.update_type.upcase %></a> (<%= alert.level %>): <% +case alert.update_type +when "cleared" +%><%= alert.cleared_at.to_s_relative %><% +when "acknowledged" +%><%= alert.acknowledged_at.to_s_relative %> by <%= alert.acknowledged_by %> until <%= alert.will_unacknowledge_at.to_s_human %><% +else +%><%= alert.raised_at.to_s_relative %><% +end +%>: <strong><%= alert.subject %></strong> <%= alert.summary %><% +if alert.source != alert.subject +%> -- from <%= alert.source %><% +end +%>.<% +if defined? was_suppressed and defined? will_suppress + if was_suppressed and not will_suppress +%><br /><em>Normal service for <%= alert.level %> alerts has resumed.</em><% + elsif will_suppress and not was_suppressed +%><br /><em>Further <%= alert.level %> alerts suppressed until things calm down.</em><% + end +end +%> |