{% extends 'base.html' %} {% block extra_js %} {% endblock %} {% block title %}System Statistics{% endblock %} {% block content %}

Repository

Current resources: {{ '{:,}'.format(rsrc_stats['main']) }}

Historic snapshots: {{ '{:,}'.format(rsrc_stats['hist']) }}

Triples: {{ '{:,}'.format(store_stats['num_triples']) }}

LMDB Store

Overall size on disk: {{ fsize_fmt( store_stats['idx_db_size'] + store_stats['data_db_size'] )}}

Data

Size on disk: {{ fsize_fmt(store_stats['data_db_size']) }}

Refer to the LMDB API documentation for details about the parameters below.

{% for db_label, db in store_stats['data_db_stats'].items() %}

{{ db_label }}

{% for p, v in db.items() | sort %} {% endfor %}
Property Value
{{ p }} {{ v }}
{% endfor %}

Indices

Size on disk: {{ fsize_fmt(store_stats['idx_db_size']) }}

{% for db_label, db in store_stats['idx_db_stats'].items() %}

{{ db_label }}

{% for p, v in db.items() | sort %} {% endfor %}
Property Value
{{ p }} {{ v }}
{% endfor %} {% endblock %}