Back to Materialize

Cluster Replicas

src/environmentd/templates/clusters.html

1231.0 KB
Original Source

{% extends "base.html" %} {% block title %}Clusters{% endblock %} {% block head %} {% endblock %} {% block content %}

Cluster Replicas

HTTP endpoints for cluster replica processes.

{% if replicas.is_empty() %}

No replicas found.

{% else %}

ClusterReplicaCluster IDReplica IDProcessesEndpoints
{% for replica in replicas %}{{ replica.cluster_name }}{{ replica.replica_name }}{{ replica.cluster_id }}{{ replica.replica_id }}{{ replica.process_count }}
{% for i in replica.process_indices %} p{{ i }} {% endfor %}
{% else %} No HTTP endpoints {% endif %}
{% endfor %}
{% endif %}

URL Format

Proxy URL: /api/cluster/{cluster_id}/replica/{replica_id}/process/{process}/{path}

Common paths:

  • /metrics - Prometheus metrics
  • / - Profiling functions

{% endblock %}