{% 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") }}
{% for db, metrics in metrics_by_db.items() %}

{{ db }}

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