{% extends "crashstats_base.html" %} {% block site_css %} {{ super() }} {% compress css %} {% endcompress %} {% endblock %} {% block page_title %} Top Crashers for {{ product }} {{ version }} {% endblock %} {% block content %}

Top Crashers for {{ product }} {{ version }}

{% if total_crashing_signatures %}
Top {{ total_crashing_signatures }} Crashing Signatures. through .

The report covers {{ (tcbs.totalPercentage * 100) | round(2) }}% of all {{ tcbs.totalNumberOfCrashes }} crashes during this period. Graphs below are dual-axis, having Count (Number of Crashes) on the left X axis and Percent of total of Crashes on the right X axis.

{% endif %}
  • Type:
  • {% for c in ['all', 'browser', 'plugin', 'content'] %}
  • {{ c|capitalize }}
  • {% endfor %}
  • Days:
  • {% for day in possible_days %}
  • {{ day }}
  • {% endfor %}
  • OS:
  • All
  • {% for os in ['Windows', 'Linux', 'Mac OS X'] %}
  • {{ os }}
  • {% endfor %}
{% if total_crashing_signatures %} {% if not os_name %} {% else %} {% endif %} {% for crash in tcbs.crashes if (os_name == 'Windows' and crash.win_count != 0) or (os_name == 'Linux' and crash.linux_count != 0) or (os_name == 'Mac OS X' and crash.mac_count != 0) or (not os_name) %} {% if crash.changeInPercentOfTotal == 'new' %} {% else %} {% endif %} {% if not os_name %} {% elif os_name == 'Windows' %} {% elif os_name == 'Linux' %} {% elif os_name == 'Mac OS X' %} {% endif %} {% endfor %}
Rank % Diff SignatureCount Win Mac Lin Ver{{ os_name }} VerIs GC First Appearance Bugzilla IDs Correlation
{{ crash.currentRank + 1 }} {% if crash.changeInRank != 'new' and crash.changeInRank not in [-1,0,1] and crash.changeInRank >= 5 or crash.changeInRank <= -5 %} 1 %} class="moving-up" {% elif crash.changeInRank < -1 %} class="moving-down" {% endif %} title="Movement in rank since the {{ tcbs.start_date }} report">{{ crash.changeInRank }} {% endif %} {{ (crash.percentOfTotal * 100) | round(2) }}%new{{ (crash.changeInPercentOfTotal * 100) | round(2) }}% {{ crash.signature|truncate(length=80, killwords=True) }}
{% if crash.hang_count > 0 %} Hanged Crash {% endif %} {% if (crash.startup_percent * 100|round) > 50 %} Startup Crash {% endif %} {% if crash.plugin_count > 0 %} Plugin Crash {% else %} Browser Crash {% endif %} Graph this

close x

{{ crash.count }} {{ crash.win_count }} {{ crash.mac_count }} {{ crash.linux_count }}{{ crash.win_count }}{{ crash.linux_count }}{{ crash.mac_count }}{{ crash.versions|split(',')|count}} {{ crash.is_gc_count }} {{ crash.first_report }} {% for bug in crash.bugs %} {{ show_bug_link(bug) }} {% endfor %}

Bugs for {{ crash.signature }}

Show More

Based on {{ crash.correlation_os }} crashes

CPU

Add-ons

Modules

Want to slice and dice? CSV-Formatted Raw Data

{% else %}

No crashing signatures found for the period to .

{% endif %}
{% endblock %} {% block site_js %} {{ super() }} {% compress js %} {% endcompress %} {% compress js %} {% endcompress %} {% endblock %}