{% extends "internal_base.html" %} {% block style %} {% try %} {% module Template("webpack_templates/cheriff-styles.html") %} {% except %} {% end %} {% end %} {% block content %}

Zookeeper

{% if len(zookeeper_replicas_problems) %}

Problems

{% for zookeeper_replica in zookeeper_replicas_problems %} {% end %}
name path
{{ zookeeper_replica["name"] }} {{ zookeeper_replica["path"] }}
{% else %}

No problems found

{% end %}

Replicas

{% if len(replicas_problems) %} {% for cluster_host, rows in replicas_problems.items() %} {% if len(rows) %}

{{cluster_host}} problems

{% for row in rows %} {% end %}
cluster host_name database table is_leader is_readonly is_session_expired future_parts parts_to_check queue_size inserts_in_queue merges_in_queue part_mutations_in_queue absolute_delay
{{ row["cluster"] }} {{ row["host_name"] }} {{ row["database"] }} {{ row["table"] }} {{ row["is_leader"] }} {{ row["is_readonly"] }} {{ row["is_session_expired"] }} {{ row["future_parts"] }} {{ row["parts_to_check"] }} {{ row["queue_size"] }} {{ row["inserts_in_queue"] }} {{ row["merges_in_queue"] }} {{ row["part_mutations_in_queue"] }} {{ row["absolute_delay"] }}
{% else %}

{{cluster_host}}: No problems found

{% end %} {% end %} {% end %}
{% end %}