{% 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 |
|---|
| Report Date | Null Count | Low Exploitability | Medium Exploitability | High Exploitability |
|---|
| 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 %} |
| Date | Dup | Product | Version | Build | OS | Build Arch | Reason | Address | Crash Type | Uptime | Install Time | Comments |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ crash.date_processed }} | {% if crash.duplicate_of %} dup | {% endif %}{{ 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 }} |
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 }}).
| Total Count | URL |
|---|---|
| {{ hit.crash_count }} | {{ truncatechars(hit.url, 80) }} |
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 %}