{% extends 'layout.html' %} {% block title %}{{ dbName }}{% endblock %} {% block breadcrumb %}
  • Home /
  • {{ dbName }}
  • {% endblock %} {% block content %}

    Collections

    {% for c in colls %} {% if !settings.read_only %} {% endif %} {% endfor %}

    View
    Export [JSON]

    {{ c }}

    {% if !settings.read_only %}

    Create Collection

    {{ dbName }} .
    {% endif %}

    Database Stats

    {% if stats.fileSize %} {% endif %} {% if stats.avgObjSize %} {% endif %} {% if stats.objects %} {% endif %} {% if stats.numExtents %} {% endif %} {% if stats.extentFreeListNum %} {% endif %} {% if stats.indexes %} {% endif %} {% if stats.indexSize %} {% endif %} {% if stats.dataFileVersion %} {% endif %}
    Collections (incl. system.namespaces) {{ stats.collections }}
    Data Size {{ stats.dataSize }}
    Storage Size {{ stats.storageSize }}
    File Size (on disk) {{ stats.fileSize }}
    Avg Obj Size # {{ stats.avgObjSize }}
    Objects # {{ stats.objects }}
    Extents # {{ stats.numExtents }}
    Extents Free List {{ stats.extentFreeListNum }}
    Indexes # {{ stats.indexes }}
    Index Size {{ stats.indexSize }}
    Data File Version {{ stats.dataFileVersion }}
    {% endblock %}