aboutsummaryrefslogtreecommitdiff
path: root/lib/mauve/notifiers/templates/pushover.html.erb
diff options
context:
space:
mode:
authorJames Hannah <jhannah@bytemark.co.uk>2017-01-26 10:28:14 +0000
committerJames Hannah <jhannah@bytemark.co.uk>2017-01-26 10:28:14 +0000
commit99eb81c4447f093f9e4b19a263ab8d1f5e8f8986 (patch)
tree06cab9cdbb0c34e4a1bf4fb4825721511ec0c9d8 /lib/mauve/notifiers/templates/pushover.html.erb
parent5c62ccc2858f8f8245cb6e8f7058c58de9363419 (diff)
Pushover supportpushover2
Based on the Hipchat notifier. API Reference: https://pushover.net/api
Diffstat (limited to 'lib/mauve/notifiers/templates/pushover.html.erb')
-rw-r--r--lib/mauve/notifiers/templates/pushover.html.erb22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/mauve/notifiers/templates/pushover.html.erb b/lib/mauve/notifiers/templates/pushover.html.erb
new file mode 100644
index 0000000..4506c57
--- /dev/null
+++ b/lib/mauve/notifiers/templates/pushover.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
+%>