Queries

{% if queries %} {% for query in queries %} {% endfor %}
Time (ms) Size Operation Collection Query Ordering Skip Limit Data Stack Trace
{{ query.time|round(3) }} {{ query.size|round(2) }}Kb {{ query.operation|title }} {{ query.collection }} {% if query.query %} {{ query.query|safe }} {% endif %} {% if query.ordering %}{{ query.ordering }}{% endif %} {% if query.skip %}{{ query.skip }}{% endif %} {% if query.limit %}{{ query.limit }}{% endif %} Toggle Toggle
{{ query.data|pprint }}
{% for line in query.stack_trace %} {% endfor %}
Line File Function Code
{{ line.1 }} {{ line.0 }} {{ line.2 }} {{ line.3|safe }}
{% else %}

No queries recorded

{% endif %}

Inserts

{% if inserts %} {% for insert in inserts %} {% endfor %}
Time (ms) Size Document Safe Stack Trace
{{ insert.time|round(3) }} {{ insert.size|round(2) }}Kb {{ insert.document|safe }} {{ insert.safe }} Toggle
{% for line in insert.stack_trace %} {% endfor %}
Line File Function Code
{{ line.1 }} {{ line.0 }} {{ line.2 }} {{ line.3|safe }}
{% else %}

No inserts recorded

{% endif %}

Removes

{% if removes %} {% for remove in removes %} {% endfor %}
Time (ms) Size Query / Id Safe Stack Trace
{{ remove.time|round(3) }} {{ remove.size|round(2) }}Kb {{ remove.spec_or_id|safe }} {{ remove.safe }} Toggle
{% for line in remove.stack_trace %} {% endfor %}
Line File Function Code
{{ line.1 }} {{ line.0 }} {{ line.2 }} {{ line.3|safe }}
{% else %}

No removes recorded

{% endif %}

Updates

{% if updates %} {% for update in updates %} {% endfor %}
Time (ms) Size Query Update Safe Multi Upsert Stack Trace
{{ update.time }} {{ update.size|round(2) }}Kb {{ update.spec|safe }} {{ update.document|safe }} {{ update.safe }} {{ update.multi }} {{ update.upsert }} Toggle
{% for line in update.stack_trace %} {% endfor %}
Line File Function Code
{{ line.1 }} {{ line.0 }} {{ line.2 }} {{ line.3|safe }}
{% else %}

No updates recorded

{% endif %}