{% extends "ox_prof_layout.html" %} {% block body %}

Ox Profile Status


{% if launcher.is_paused() %}

The profiler is paused. Use the unpause command to unpause or start the profiler.

{% else %}

The profiler is running. Use the pause command to pause it.

Using sampling interval of

Sampling stats: {{ launcher.tracker.stats() }}

{% endif %}
Showing top {{'{:,}'.format(query|length)}} functions ({{'{:,}'.format(total_records)}} distinct calls) limited to max
    {% for item in query %}
  1. {{ '%s: %s' % (item.name, item.hits) }}
  2. {% endfor %}
{% endblock %}