{% extends "base.html" %} {% block title %}Litestream status{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Litestream Status

PID: {{process.get("pid")}} status: {{process.get("status")}}

litestream.yaml Config

  {{ litestream_config }}

Logs

{{ logs }}
{% if not metrics_enabled %} WARNING: metrics-addr was not defined, so no litestream metrics are available. {% else %}

Metrics

Goroutines: {{ go_stats.get("go_goroutines") }}
Go threads: {{ go_stats.get("go_threads") }}
{% if replica_operations.get("bytes") | length > 0 %} Replica operation bytes {% for row in replica_operations.get("bytes") %} {% endfor %}
Operation Replica Type Bytes
{{ row.get("operation") }} {{ row.get("replica_type") }} {{ row.get("value") }}
{% endif %} {% if replica_operations.get("total") | length > 0 %} Replica total operations {% for row in replica_operations.get("total") %} {% endfor %}
Operation Replica Type Number of operations
{{ row.get("operation") }} {{ row.get("replica_type") }} {{ row.get("value") }}
{% endif %} {% for db, metrics in metrics_by_db.items() %}

{{ db }}

{% for key, value in metrics.items() %} {% endfor %}
Key Value
{{ key }} {{ value }}
{% endfor %} {% endif %} {% endblock %}