meterstore 0.13.0

Hot/cold tiered store for metering time series — PostgreSQL for the recent window, Apache Iceberg for history.
{% extends "base.html" %}

{% block content %}
<div class="docs">
  {% include "_sidebar.html" %}

  <article class="prose">
    <h1>{{ section.title }}</h1>
    {{ section.content | safe }}

    {% if section.pages %}
    <h2 id="pages">Pages</h2>
    <ul class="index">
      {% for page in section.pages %}
      <li>
        <a href="{{ page.permalink }}">{{ page.title }}</a>
        {% if page.description %}<span>{{ page.description }}</span>{% endif %}
      </li>
      {% endfor %}
    </ul>
    {% endif %}
  </article>
</div>
{% endblock %}