{% 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 %}
Signature
{{ report.signature }}
More Reports
Search
UUID
{{ report.uuid }}
Date Processed {{ report.date_processed }}
{% if report.process_type %}
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 %}
{% endif %}
Uptime {{ report.uptime }}
{% if report.last_crash %}
Last Crash {{ report.last_crash }} seconds before submission
{% endif %}
{% if report.install_age %}
Install Age
{{ report.install_age }} since version was first installed.
{% endif %}
{% if install_time %}
Install Time
{{ install_time }}
{% endif %}
Product
{{ report.product }}
Version
{{ report.version }}
Build ID
{{ report.build }}
Release Channel
{{ report.release_channel }}
OS
{{ report.os_name }}
OS Version
{{ report.os_version }}
{% if raw.B2G_OS_Version %}
B2G OS Version
{{ raw.B2G_OS_Version }}
{% endif %}
Build Architecture
{{ report.cpu_name }}
Build Architecture Info
{{ report.cpu_info }}
Crash Reason
{{ report.reason }}
Crash Address
{{ report.address }}
{% if request.user.has_perm('crashstats.view_pii') %}
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 %}
{% endif %}
{% if request.user.has_perm('crashstats.view_exploitability') %}
Exploitability
{% if report.exploitability %}
{{ report.exploitability }}
{% endif %}
{% 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 %}
{% if report.app_notes %}
App Notes
{{ report.app_notes }}
{% endif %}
{% if report.processor_notes %}
Processor Notes
{{ report.processor_notes }}
{% endif %}
{% if report.distributor %}
{{ report.distributor }}
{% endif %}
{% if report.distributor_version %}
{{ report.distributor_version }}
{% endif %}
EMCheckCompatibility
{% if report.addons_checked %}True{% else %}False{% endif %}
Winsock LSP
{{ report.Winsock_LSP }}
Adapter Vendor ID
{{ raw.AdapterVendorID }}
Adapter Device ID
{{ raw.AdapterDeviceID }}
{% if raw.JavaStackTrace %}
Java Stack Trace
{{ raw.JavaStackTrace }}
{% endif %}
{% if raw.TotalVirtualMemory %}
Total Virtual Memory
{{ raw.TotalVirtualMemory }}
{% endif %}
{% if raw.AvailableVirtualMemory %}
Available Virtual Memory
{{ raw.AvailableVirtualMemory }}
{% endif %}
{% if raw.SystemMemoryUsePercentage %}
System Memory Use Percentage
{{ raw.SystemMemoryUsePercentage }}
{% endif %}
{% if raw.AvailablePageFile %}
Available Page File
{{ raw.AvailablePageFile }}
{% endif %}
{% if raw.AvailablePhysicalMemory %}
Available Physical Memory
{{ raw.AvailablePhysicalMemory }}
{% endif %}
{% if raw.OOMAllocationSize %}
OOM Allocation Size
{{ raw.OOMAllocationSize }}
{% endif %}
{% if raw.FlashProcessDump %}
Flash Process Dump
{{ raw.FlashProcessDump }}
{% endif %}
{% if raw.Accessibility %}
Accessibility
{{ raw.Accessibility }}
{% endif %}
{% if raw.Android_CPU_ABI%}
Android CPU ABI
{{ raw.Android_CPU_ABI}}
{% endif %}
{% if raw.Android_Manufacturer %}
Android Manufacturer
{{ raw.Android_Manufacturer }}
{% endif %}
{% if raw.Android_Model %}
Android Model
{{ raw.Android_Model }}
{% endif %}
{% if raw.Android_Version %}
Android Version
{{ raw.Android_Version }}
{% endif %}
Bugzilla - Report this bug in
{% for bug_product in [report.product, 'Core', 'Plugins', 'Toolkit'] %}
{% if bug_product in bug_product_map %}
{% set bug_product = 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
Frame
Module
Signature
Source
{% for frame in parsed_dump.threads[parsed_dump.crash_info.crashing_thread].frames %}
{%if frame.missing_symbols %}
Ø
{% endif %}
{{ frame.frame }}
{{ frame.module }}
{{ frame.signature }}
{% if frame.source_link %}
{{ frame.file }}
{% else %}
{% if frame.file %}
{{ frame.file }}:{{ frame.line }}
{% endif %}
{% endif %}
{% endfor %}
Show/hide other threads
{% for thread in parsed_dump.threads %}
{%if thread.thread != parsed_dump.crash_info.crashing_thread %}
Thread {{ thread.thread }}
Frame
Module
Signature
Source
{% for frame in thread.frames %}
{%if frame.missing_symbols %}
Ø
{% endif %}
{{ frame.frame }}
{{ frame.module }}
{{ frame.signature }}
{% if frame.source_link %}
{{ frame.file }}
{% else %}
{{ frame.file }}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% if parsed_dump.modules %}
Filename
Version
Debug Identifier
Debug Filename
{% for module in parsed_dump.modules %}
{%if module.missing_symbols %}
Ø
{% endif %}
{{ module.filename }}
{{ module.version }}
{{ module.debug_id }}
{{ module.debug_file }}
{% endfor %}
{% 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 %}
Extension
Extension Id
Version
Current?
{% for addon in report.addons %}
{{ addon[0] }}
{{ addon[1] }}
{{ addon[2] }}
{% endfor %}
{% else %}
No extensions were installed.
{% endif %}
{% if total_correlations > 0 %}
Correlations for {{ product }} {{ version }} {{ report.os_name }}
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 }} {{ version }} {{ report.os_name }}).
Loading
Load
Loading
Load
Loading
{% endif %}