From 5c62ccc2858f8f8245cb6e8f7058c58de9363419 Mon Sep 17 00:00:00 2001 From: Patrick J Cherry Date: Wed, 7 Oct 2015 12:24:28 +0100 Subject: Added hipchat notification --- lib/mauve/notifiers/templates/hipchat.html.erb | 22 ++++++++++++++++++++++ lib/mauve/notifiers/templates/hipchat.txt.erb | 1 + 2 files changed, 23 insertions(+) create mode 100644 lib/mauve/notifiers/templates/hipchat.html.erb create mode 120000 lib/mauve/notifiers/templates/hipchat.txt.erb (limited to 'lib/mauve/notifiers/templates') 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 @@ +<%= alert.id%>: <%= alert.update_type.upcase %> (<%= 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 +%>: <%= alert.subject %> <%= 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 +%>
Normal service for <%= alert.level %> alerts has resumed.<% + elsif will_suppress and not was_suppressed +%>
Further <%= alert.level %> alerts suppressed until things calm down.<% + end +end +%> diff --git a/lib/mauve/notifiers/templates/hipchat.txt.erb b/lib/mauve/notifiers/templates/hipchat.txt.erb new file mode 120000 index 0000000..802c711 --- /dev/null +++ b/lib/mauve/notifiers/templates/hipchat.txt.erb @@ -0,0 +1 @@ +xmpp.txt.erb \ No newline at end of file -- cgit v1.2.1