{% extends "base.html" %} {% block content %}
{% comment %}
{% endcomment %}
{% if requests %}
{# RPC stats table begin #}

RPC Stats

{% for item in allstats_by_count %} {% for subitem in item.2 %} {% endfor %} {% endfor %}
RPC Count
{{item.0|escape}} {{item.1}}
{{subitem.0|escape}} {{subitem.1}}
{# RPC stats table end #}
{# Path stats table begin #}

Path Stats

{% for item in pathstats_by_count %} {% for subitem in item.4 %} {% endfor %} {% endfor %}
Path #RPCs #Requests Most Recent requests
{{item.0|escape}} {{item.1}} {{item.2}} {% for index in item.3 %} {% if index %} ({{index}}) {% else %} ... {% endif %} {% endfor %}
{{subitem.0|escape}} {{subitem.1|escape}}
{# Path stats table end #}

Requests History

{% for r in requests %} {% for item in r.rpc_stats_list %} {% endfor %} {% endfor %}
Request
({{forloop.counter}}) {{r.start_time_formatted}} "{{r.http_method|escape}} {{r.http_path|escape}}{{r.http_query|escape}}" {{r.http_status}} real={{r.duration_milliseconds}}ms cpu={{r.processor_milliseconds}}ms api={{r.api_milliseconds}}ms overhead={{r.overhead_walltime_milliseconds}}ms ({{r.combined_rpc_count}} RPC{{r.combined_rpc_count|pluralize}})
{{item.service_call_name}} {{item.total_amount_of_calls}}
{% else %}
No requests have been recorded yet. While it is possible that you simply need to wait until your server receives some requests, this is often caused by a configuration problem. Learn more
{% endif %} {% endblock %} {% block tailstuff %} {% endblock %}