{% extends "crashstats_base.html" %} {% block site_css %} {{ super() }} {% compress css %} {% endcompress %} {% endblock %} {% block page_title %} [@ {{ report.signature }}] - {{ report.product }} {{ report.version }} Crash Report - Report ID: {{ report.uuid }} {% endblock %} {% block content %}

{{ report.product }} {{ report.version }} Crash Report [@ {{ report.signature }} ]

{% if hang_id %}
Hang Minidump ({{ process_type }})
{% if crash_pairs.total == 0 %}
Hang ID {{ hang_id }} but no other UUID pair found
{% else %} {% endif%}
{% endif %}
ID: {{ report.uuid }}
Signature: {{ report.signature }}
{% if report.process_type %} {% endif %} {% if report.last_crash %} {% endif %} {% if report.install_age %} {% endif %} {% if install_time %} {% endif %} {% if raw.B2G_OS_Version %} {% endif %} {% if request.user.has_perm('crashstats.view_pii') %} {% endif %} {% if request.user.has_perm('crashstats.view_exploitability') %} {% endif %} {% if report.app_notes %} {% endif %} {% if report.processor_notes %} {% endif %} {% if report.distributor %} {% endif %} {% if report.distributor_version %} {% endif %} {% if raw.JavaStackTrace %} {% endif %} {% if raw.TotalVirtualMemory %} {% endif %} {% if raw.AvailableVirtualMemory %} {% endif %} {% if raw.SystemMemoryUsePercentage %} {% endif %} {% if raw.AvailablePageFile %} {% endif %} {% if raw.AvailablePhysicalMemory %} {% endif %} {% if raw.OOMAllocationSize %} {% endif %} {% if raw.FlashProcessDump %} {% endif %} {% if raw.Accessibility %} {% endif %} {% if raw.Android_CPU_ABI%} {% endif %} {% if raw.Android_Manufacturer %} {% endif %} {% if raw.Android_Model %} {% endif %} {% if raw.Android_Version %} {% endif %}
Signature {{ report.signature }} More Reports Search
UUID {{ report.uuid }}
Date Processed{{ report.date_processed }}
Process Type {{ report.process_type }} {% if report.PluginName %} {{ report.PluginName }} {% endif %} {% if report.PluginVersion %} Version:{{ report.PluginVersion }} {% endif %} {% if report.PluginFilename %} Filename:{{ report.PluginFilename }} {% endif %}
Uptime{{ report.uptime }}
Last Crash{{ report.last_crash }} seconds before submission
Install Age {{ report.install_age }} since version was first installed.
Install Time {{ install_time }}
Product {{ report.product }}
Version {{ report.version }}
Build ID {{ report.build }}
Release Channel {{ report.release_channel }}
OS {{ report.os_name }}
OS Version {{ report.os_version }}
B2G OS Version
{{ raw.B2G_OS_Version }}
Build Architecture {{ report.cpu_name }}
Build Architecture Info {{ report.cpu_info }}
Crash Reason {{ report.reason }}
Crash Address {{ report.address }}
Email Address {% if raw.Email %} {{ raw.Email }} - Super Sensitive! Don't mess around! {% endif %}
URL {% if raw.URL %} {{ raw.URL }} - Super Sensitive! Don't mess around! {% endif %}
Exploitability {% if report.exploitability %} {{ report.exploitability }} {% endif %}
User Comments {% if report.user_comments %} {% if request.user.has_perm('crashstats.view_pii') %} {{ report.user_comments | nl2br }} {% else %} {{ report.user_comments | scrub_pii | nl2br }} {% endif %} {% endif %}
App Notes
{{ report.app_notes }}
Processor Notes {{ report.processor_notes }}
{{ report.distributor }}
{{ report.distributor_version }}
EMCheckCompatibility
{% if report.addons_checked %}True{% else %}False{% endif %}
Winsock LSP
{{ report.Winsock_LSP }}
Adapter Vendor ID
{{ raw.AdapterVendorID }}
Adapter Device ID
{{ raw.AdapterDeviceID }}
Java Stack Trace
{{ raw.JavaStackTrace }}
Total Virtual Memory
{{ raw.TotalVirtualMemory }}
Available Virtual Memory
{{ raw.AvailableVirtualMemory }}
System Memory Use Percentage
{{ raw.SystemMemoryUsePercentage }}
Available Page File
{{ raw.AvailablePageFile }}
Available Physical Memory
{{ raw.AvailablePhysicalMemory }}
OOM Allocation Size
{{ raw.OOMAllocationSize }}
Flash Process Dump
{{ raw.FlashProcessDump }}
Accessibility
{{ raw.Accessibility }}
Android CPU ABI
{{ raw.Android_CPU_ABI}}
Android Manufacturer
{{ raw.Android_Manufacturer }}
Android Model
{{ raw.Android_Model }}
Android Version
{{ raw.Android_Version }}

Bugzilla - Report this bug in {% for bug_product in [product, 'Core', 'Plugins', 'Toolkit'] %} {% if bug_product in bug_product_map %} {% set bug_product = settings.BUG_PRODUCT_MAP[bug_product] %} {% endif %} {{ bug_product }} {% endfor %}

Related Bugs

    {% for bug in bug_associations %}
  • {{ show_bug_link(bug.id) }}
  • {% endfor %}
{% if parsed_dump.threads %}

Crashing Thread

{% for frame in parsed_dump.threads[parsed_dump.crashed_thread] %} {% if frame.source_link %} {% else %} {% endif %} {% endfor %}
Frame Module Signature Source
{{ frame.frame_num }} {{ frame.module_name }} {{ frame.signature }} {{ frame.source_filename }} {% if frame.source %} {{ frame.source }}:{{ frame.source_line }} {% endif %}
{% for thread_num in parsed_dump.remaining_threads | sort %}

Thread {{ thread_num }}

{% for frame in parsed_dump.threads[thread_num] %} {% if frame.source_link %} {% else %} {% endif %} {% endfor %}
Frame Module Signature Source
{{ frame.frame_num }} {{ frame.module_name }} {{ frame.signature }} {{ frame.source_filename }} {{ frame.source }}
{% endfor %}
{% endif %}
{% for key in raw_keys %} {% if key == 'Comments' %} {% else %} {% endif %} {% endfor %}
{{ key }}{{ raw[key] | scrub_pii }}{{ raw[key] }}
{% if parsed_dump.modules %} {% for module in parsed_dump.modules %} {% endfor %}
Filename Version Debug Identifier Debug Filename
{{ module.filename }} {{ module.version }} {{ module.debug_identifier }} {{ module.debug_filename }}
{% endif %}
{{ raw_stackwalker_output }}
{% if request.user.has_perm('crashstats.view_rawdump') %}

Download the Raw Dump

{% for url in raw_dump_urls %}

{{ url }}

{% endfor %} {% else %}

You need to be signed in to be able to download raw dumps.

{% endif %}
{% if report.addons %} {% for addon in report.addons %} {% endfor %}
Extension Extension Id Version Current?
{{ addon[0] }} {{ addon[1] }} {{ addon[2] }}
{% else %}

No extensions were installed.

{% endif %}
{% if report.os_name %}

Correlations for {{ product }} {{ report.version }} {{ report.os_name }}

If this screen has data from multiple product/version/platforms, the crashiest was picked ({{ product }} {{ report.version }} {{ report.os_name }}).

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