{% extends "crashstats/report_list_base.html" %} {% block site_css %} {{ super() }} {% compress css %} {% endcompress %} {% endblock %} {% block report %}
{% block signature_summary %} {% include "crashstats/signature_summary.html" %} {% endblock %}

Crashes By Build Date

Hover over a point above the see the crash build date.

{% for buildid in table|sort %} {% set total = table[buildid].total %} {% endfor %}
Build ID Crashes Win Mac Lin
{{ buildid }} {{ total }} - 100.0% {% set win_count = table[buildid]['count_windows'] %} {% set win_percent = 100.0 * win_count / total %} {{ win_count }} - {{ '%0.2f' | format(win_percent) }}% {% set mac_count = table[buildid]['count_mac'] %} {% set mac_percent = 100.0 * mac_count / total %} {{ mac_count }} - {{ '%0.2f' | format(mac_percent) }}% {% set linux_count = table[buildid]['count_linux'] %} {% set linux_percent = 100.0 * linux_count / total %} {{ linux_count }} - {{ '%0.2f' | format(linux_percent) }}%
{{ pagination(report_list, current_url, current_page) }} {% for crash in report_list.hits %} {% endif %} {% endfor %}
Date Dup Product Version Build OS Build Arch Reason Address Crash Type Uptime Install Time Comments
{{ crash.date_processed }}
{% if crash.duplicate_of %} dup{{ crash.product }} {{ crash.version }} {{ crash.build }} {{ crash.os_name }} {{ crash.os_version }} {{ crash.cpu_name }} {{ crash.reason }} {{ crash.address }}
{{ crash.uptime }} {{ crash.install_time }} {{ crash.user_comments }}
{{ pagination(report_list, current_url, current_page) }}

Bugs for {{ signature }}

{% for bug in bug_associations %} {% if bug.signature == signature %} {% endif %} {% endfor %}
{% if bug_associations|count > 1 %}

Related Crash Signatures:

{% for bug in bug_associations %} {% if bug.signature != signature %}
{% endif %} {% endfor %} {% endif %}

Comments

{% for comment in comments.hits %}

{{ comment.user_comments | scrub_pii | nl2br}}

Submitted: {{ comment.date_processed }}

{% if request.user.is_active %}

Email: {% if comment.email %}{{ comment.email }}{% endif %}

{% endif %}
{% endfor %}

Correlations for {{ product }} {{ correlation_version }} {{ correlation_os }}

Below are tables of correlation data generated by dbaron's scripts. If this crash signature is a top crasher, then we should be able to load it from the original text files. Only the first 2MB of each Platform's output is loaded. If this screen has data from multiple product/version/platforms, the crashiest was picked ({{ product }} {{ correlation_version }} {{ correlation_os }}).

{% if request.user.is_active %}
{% for hit in signature_urls %} {% endfor %}
Total Count URL
{{ hit.crash_count }} {{ truncatechars(hit.url, 80) }}
{% endif %}
{% endblock %} {% block site_js %} {{ super() }} {% compress js %} {% endcompress %} {% endblock %}