{% 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 %}
Hover over a point above the see the crash build date.
Build ID
Crashes
Win
Mac
Lin
{% for buildid in table|sort %}
{% set total = table[buildid].total %}
{{ 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) }}%
{% endfor %}
{{ pagination(report_list, current_url, current_page) }}
Date
Dup
Product
Version
Build
OS
Build Arch
Reason
Address
Crash Type
Uptime
Install Time
Comments
{% for crash in report_list.hits %}
{{ 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 }}
{% endfor %}
{{ 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 %}
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 }}).
Loading
Load
Loading
Load
Loading
{% if request.user.is_active %}
{% endif %}
{% endblock %}
{% block site_js %}
{{ super() }}
{% compress js %}
{% endcompress %}
{% endblock %}
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 %}