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

Базы данных

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

Посмотреть

{{ db }}

{% if !settings.read_only %} {% endif %} {% if info == false %} {% 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 %} Server Time {{ info.localTime|date('r') }}
 
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 %}