{% extends "crashstats/report_list_base.html" %} {% block site_css %} {{ super() }} {% compress css %} {% endcompress %} {% endblock %} {% block report %}
Operating System Percentage Number Of Crashes
Uptime Range Percentage Number Of Crashes
Product Version Percentage Number Of Crashes
Architecture Percentage Number Of Crashes
Process Type Percentage Number Of Crashes
Flash Version Percentage Number Of Crashes
Product Version Crashes Installations
{% if request.user.is_authenticated() %}
Report Date Null Count Low Exploitability Medium Exploitability High Exploitability
{% endif %}

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.000% {% if 'Windows' in table[buildid] %} {% set win_percent = table[buildid]['Windows'] / total * 100 %} {{ table[buildid]['Windows'] }} - {{ '%0.2f' | format(win_percent|float) }}% {% endif %} {% if 'Mac OS X' in table[buildid] %} {% set mac_percent = table[buildid]['Mac OS X'] / total * 100 %} {{ table[buildid]['Mac OS X'] }} - {{ '%0.2f' | format(mac_percent|float) }}% {% endif %} {% if 'Linux' in table[buildid] %} {% set lin_percent = table[buildid]['Linux'] / total * 100 %} {{ table[buildid]['Linux'] }} - {{ '%0.2f' | format(lin_percent|float) }}% {% endif %}
{{ 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 %}