{% extends "crashstats_base.html" %} {% block page_title %}Query Results - Mozilla Crash Reports{% endblock %} {% block content %}
{% if error %}

Uh oh! Something went wrong...

{% endif %}
  • Advanced Filters

    (UTC)

    Report Process:

    Report Type:

{% if 'hits' in query %}

Query Results

Results within {{ params.date_range_value }} {{ params.date_range_unit }} of {{ params.end_date }} {%- if params.query %} where the crash signature {{ params.query_type|replace('_', ' ') }} '{{ params.query }}' {%- endif -%} {% for field in ['product', 'version'] %} {%- if params[field + 's'] -%} , and the {{ field }} is one of {{ ', '.join(params[field + 's']) }} {%- endif -%} {% endfor %} {%- if params.platforms_names -%} , and the platform is one of {{ ', '.join(params.platforms_names) }} {%- endif -%} {%- if params.build_id %} for build {{ ', '.join(params.build_id) }} {%- endif -%} {%- if params.process_type == 'any' -%} , and the crashing process was of any type (including unofficial release channels) {%- else -%} , and the crashing process was a {{ params.process_type }} {% if params.process_type == 'plugin' and params.plugin_query %} and its {{ params.plugin_field }} {{ params.plugin_query_type|replace('_', ' ') }} {{ params.plugin_query }} {%- endif -%} {%- endif -%}.

{% if query.total > 0 %} {{ pagination(query, current_url, current_page) }} {% if params.process_type == 'plugin' %} {% endif %} {% for hit in query.hits %} {% if params.process_type == 'plugin' %} {% endif %} {% endfor %}
Rank SignaturePlugin Name/Ver Plugin Filename# Win Mac Lin Bugzilla IDs
{{ results_offset + loop.index }} {% if hit.signature %} {{ hit.signature }} {% else %} (null signature) Learn More {% endif %}
{% if hit.numhang > 0 %} Hanged Crash {% endif %} {% if hit.numplugin > 0 %} Plugin Crash {% endif %} {% if hit.numcontent > 0 %} Content Crash {% endif %}
{{ hit.pluginname }} {{ hit.pluginversion }} {{ hit.pluginfilename }}{{ hit.count }} {{ hit.is_windows }} {{ hit.is_mac }} {{ hit.is_linux }} {% for bug in hit.bugs %} {{ show_bug_link(bug) }} {% endfor %}

Bugs for {{ hit.signature }}

{{ pagination(query, current_url, current_page) }} {% else %}

No results were found.

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