Back to list

Exception in <%= h @report.application %>

on <%= h @report.machine %> @ <%= h @report.timestamp %>

Count
<%= h(@group.count) %>
First occurred
<%= h(@group.first_timestamp) %>
Most recently occurred
<%= h(@group.most_recent_timestamp) %>
On machines
<%= h(@group.machines.join(', ')) %>
Exception class
<%= h(@report.type) %>

See all

<% plugins.each do |plugin| %> <% if plugin.respond_to?(:exception_links) %> <% plugin.exception_links(@report).each do |name, href| %>

<%= name %>

<% end %> <% end %> <% end %> <% @exception = @report %>

<%= erb :_exception_message %>

<% if @report.backtrace %>

Stack trace

<%= h @report.backtrace.join("\n") %>
<% end %> <% if @report.data && !@report.data.empty? %>

Additional information

<%= h JSON.pretty_generate(@report.data) %>
<% end %>