{% extends 'layout.html' %} {% block title %}Home{% endblock %} {% block breadcrumb %}
Turn on admin in config.js to view server stats!
{% else %}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}} |