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

Databases

{% if !settings.read_only %}
{% endif %}
{% for db in databases %} {% if !settings.read_only && !settings.no_delete %} {% endif %} {% endfor %}

View

{{ db }}

{% if !settings.read_only && !settings.no_delete %} {% endif %} {% if info == false %}

Server Status

Turn on admin in config.js to view server stats!

{% else %}

Server Status

Hostname {{ info.host }} MongoDB Version {{ info.version }}
Uptime {{ info.uptime }} seconds {% if info.uptime > 86400 %} ({{ Math.floor( info.uptime/86400 ) }} days) {% endif %} Node Version {{ process.versions.node }}
Server Time {{ info.localTime|date('r') }} V8 Version {{ process.versions.v8 }}
 
Current Connections {{ info.connections.current }} Available Connections {{ info.connections.available }}
Active Clients {{ info.globalLock.activeClients.total }} Queued Operations {{ info.globalLock.currentQueue.total }}
Clients Reading {{ info.globalLock.activeClients.readers }} Clients Writing {{ info.globalLock.activeClients.writers}}
Read Lock Queue {{ info.globalLock.currentQueue.readers }} Write Lock Queue {{ info.globalLock.currentQueue.writers}}
 
Disk Flushes {{ info.backgroundFlushing.flushes }} Last Flush {{ info.backgroundFlushing ? info.backgroundFlushing.last_finished|date('r') : '' }}
Time Spent Flushing {{ info.backgroundFlushing.total_ms }} ms Average Flush Time {{ info.backgroundFlushing.average_ms }} ms
 
Total Inserts {{ info.opcounters.insert }} Total Queries {{ info.opcounters.query}}
Total Updates {{ info.opcounters.update}} Total Deletes {{ info.opcounters.delete}}
{% endif %} {# # Still need to add global lock time stats and replica set stats #} {% endblock %} {% block scripts %} {% if !settings.read_only %} {% endif %} {% endblock %}