Summary

Total
Total Clusters {{ total_clusters }}
Total getClientFor Calls {{ total_getClientFor_calls }}
Total getClientFor Errors {{ total_getClientFor_errors }}
Total RPC Calls {{ total_rpc_calls }}
Total RPC Succeed {{ total_rpc_succeed }}
Total RPC Fail {{ total_rpc_fail }}
Total Time {{ total_time }}ms
{% if getClientFor_errors|length %}

getClientFor - Errors

{% for error in getClientFor_errors %} {% endfor %}
Cluster UUID Cluster Name Error Traceback
{{ error.uuid }} {{ error.cluster }} {{ error.error }}
{{ error.traceback }}
{% endif %} {% if fail_rpc_calls|length %}

Failed RPC Calls

{% for call in fail_rpc_calls %} {% endfor %}
  Cluster UUID Cluster Name Exec Time Command Arguments Error Traceback
  {{ call.uuid }} {{ call.cluster }} {{ call.time }}ms {{ call.command }} {{ call.arguments }} {{ call.error }}
{{ call.traceback }}
{% endif %} {% if succeed_rpc_calls|length %}

Successful RPC Calls

{% for call in succeed_rpc_calls %} {% endfor %}
  Cluster UUID Cluster Name Exec Time Command Arguments Result
  {{ call.uuid }} {{ call.cluster }} {{ call.time }}ms {{ call.command }} {{ call.arguments }}
{{ call.result }}
{% endif %}