{% extends 'orbit/base.html' %} {% load static %} {% block title %}Stats Dashboard - Django Orbit{% endblock %} {% block extra_head %} {% endblock %} {% block body %}
Back to Dashboard

Performance Analytics

{% for range in time_ranges %} {{ range }} {% endfor %}
{% if error %}

Error loading stats: {{ error }}

{% endif %}
Apdex Score
{{ summary.apdex }}
{% if summary.apdex >= 0.94 %}Excellent{% elif summary.apdex >= 0.85 %}Good{% elif summary.apdex >= 0.70 %}Fair{% else %}Poor{% endif %}
Avg Response
{{ summary.avg_response_time }}ms
P95: {{ percentiles.p95 }}ms
Error Rate
{{ summary.error_rate }}%
{{ summary.error_count }} exceptions
Throughput
{{ summary.throughput }}{{ summary.throughput_unit }}
{{ summary.total_requests }} total requests

Response Time Percentiles

{{ percentiles.p50 }}ms
P50 (Median)
{{ percentiles.p75 }}ms
P75
{{ percentiles.p95 }}ms
P95
{{ percentiles.p99 }}ms
P99 (Tail)
{% include 'orbit/partials/stats_skeleton.html' with height='h-64' %}
{% include 'orbit/partials/stats_skeleton.html' with height='h-48' %}
{% include 'orbit/partials/stats_skeleton.html' with height='h-48' %}
{% include 'orbit/partials/stats_skeleton.html' with height='h-40' %}
{% include 'orbit/partials/stats_skeleton.html' with height='h-40' %}

Entry Details

{% endblock %}