{"id":31380,"date":"2017-05-30T10:15:58","date_gmt":"2017-05-30T17:15:58","guid":{"rendered":"https:\/\/virtual-dba.com\/?p=31380"},"modified":"2021-02-10T18:20:34","modified_gmt":"2021-02-11T01:20:34","slug":"mongodb-serverstatus-health-check-tips","status":"publish","type":"post","link":"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/","title":{"rendered":"MongoDB ServerStatus Health Check Tips"},"content":{"rendered":"<p>MongoDB ServerStatus is the main command used to produce a huge document containing important metrics and information about your database. When performing a health check, there are several important keys that you&#8217;ll want to be aware of inside serverStatus. The output can be minimized for information that you want to see. It can give you instance information or it can be very specific.<\/p>\n<p>Some of the main groups of information are listed below:<\/p>\n<ul>\n<li>Instance Information<\/li>\n<li>Asserts<\/li>\n<li>Connections and Network<\/li>\n<li>Locking<\/li>\n<li>Operations Statistics<\/li>\n<li>Security<\/li>\n<li>Replication Statistics<\/li>\n<li>Storage Engine Statistics<\/li>\n<li>Metrics<\/li>\n<\/ul>\n<h2>Running Commands<\/h2>\n<p>You can get very specific data by simply running a command in the mongo shell.<\/p>\n<p>db.serverStatus().host<br \/>\ndb.serverStatus().version<br \/>\ndb.serverStatus().pid<\/p>\n<p>You can also reduce the output of serverStatus by flagging documents you don&#8217;t want.<\/p>\n<p>db.runCommand( {serverStatus: 1, repl: 0, metrics: 0, locks: 1, wiredTiger: 0} )<\/p>\n<p>Setting repl, metrics and wiredTiger to 0 in this command will remove them from the serverStatus output.<\/p>\n<h2>Useful Information<\/h2>\n<p>There is a vast amount of information available to you through the serverStatus command; some of it will be useful to you and others will not. I am going to jump through some of the top documents and list out metrics I believe are important if you&#8217;re performance tuning or running a health check on your system. These commands can also be put into a script so you&#8217;re able to run a full check-up on your system.<\/p>\n<h3>Instance Information<\/h3>\n<p>It&#8217;s always good to start with a bit of useful information about the instance you&#8217;re running so you can keep this information for historical record to know your baseline.<\/p>\n<ul>\n<li>host: current host on which you&#8217;re running serverStatus<\/li>\n<li>version: current version of the host<\/li>\n<li>uptime: the number of seconds MongoDB process has been running<\/li>\n<li>localTime: current local time<\/li>\n<\/ul>\n<p>These will give you a good starting point to begin gathering metrics on your instance.<\/p>\n<h3>asserts<\/h3>\n<p>This document gives you the number of assertions raised since the MongoDB process was started. They&#8217;re rare so you&#8217;ll want to keep an eye on them; they can give you an indication that you need to look in your server log for an issue.<\/p>\n<ul>\n<li>warning: This will tell you if your instance is generating any warnings.<\/li>\n<li>user: These assertions can give you valuable information particular to application and development issues that are happening in your instance.<\/li>\n<\/ul>\n<h3>mem<\/h3>\n<p>Always important to know where to check your memory utilization.<\/p>\n<ul>\n<li>bits: the architecture on which your server is running<\/li>\n<li>resident: This is &#8220;roughly&#8221; the amount of RAM in use by the database process<\/li>\n<li>virtual: Size in MB of virtual memory used by Mongo process<\/li>\n<\/ul>\n<h3>connections<\/h3>\n<p>Here you can find the number of connections that are currently being made to the server. If you&#8217;re experiencing sudden latency issues, you may want to check this stat to determine if an excessive amount of connections are being made to the server. This setting can be limited by the unix ulimits or it can be set in the configuration file (&#8211;maxConns) for your MongoDB process.<\/p>\n<ul>\n<li>current:<\/li>\n<li>available:<\/li>\n<\/ul>\n<h3>wiredTiger<\/h3>\n<p>This is a very large document. Many of the fields inside this document are for internal usage for the MongoDB process but there are some useful fields to monitor for performance and baseline statistics.<\/p>\n<h4 style=\"margin-left: 40px\">cache<\/h4>\n<ul style=\"margin-left: 40px\">\n<li>maximum bytes configured : how many bytes allowed for your cache<\/li>\n<li>bytes currently in the cache: how many bytes are currently in the cache<\/li>\n<\/ul>\n<h3>extra_info<\/h3>\n<p>This is underlying system-specific information. Most noteworthy is the page_faults field which could indicate a performance issue. Windows counts hard and soft page faults in this statistic.<\/p>\n<ul>\n<li>page_faults: If you have limited memory or are experiencing problems, this is the first place to look.<\/li>\n<li>heap_usage_byes: total heap space used by the database process. (unix\/linux)<\/li>\n<\/ul>\n<h3>globalLock<\/h3>\n<p>This will give a good bit of general information about database lock state. If you want more specific information about locks, you can look in the &#8216;locks&#8217; document.<\/p>\n<ul>\n<li>currentQueue.total: Total number of operations in the queue. (readers + writers) If this particular attribute starts growing it should cause some concern. What you&#8217;ll want to do is maintain a good ratio by comparing the total current queue and the number of active client connections.<\/li>\n<li>activeClients.total: Total active client connections. (readers + writers)<\/li>\n<\/ul>\n<h3>opLatencies<\/h3>\n<p>Important statistics to monitor for I\/O performance. If you start seeing a steady increase over time, you may be experiencing some index, network or disk issues.<\/p>\n<ul>\n<li>reads<\/li>\n<li>writes<\/li>\n<\/ul>\n<h3>opcounters &amp; opcountersRepl<\/h3>\n<p>This document contains the total number of operations for the database; you can analyze them all over time to understand utilization. I like to monitor one in particular. It&#8217;s important to remember that these are statistics gathered since last restart, so you&#8217;ll want to keep a historical record and monitor it over time. The replication statistic is in the opcountersRepl document.<\/p>\n<ul>\n<li>query: This is the total number of received queries to the instance. If you see a sudden unexpected jump in this number it could indicate an application or security issue.<\/li>\n<\/ul>\n<h3>metrics<\/h3>\n<p>This document is a group of several statistics generated automatically which gives an overview of the current use and state of the mongod instance.<\/p>\n<ul>\n<li>operation.scanAndOrder: If this number is high, you may want to profile your queries and try to determine where you&#8217;re doing a sort operation and an index is not being used.<\/li>\n<li>operation.writeConflicts: total operations with a write conflict, could indicate contention<\/li>\n<li>repl.buffer.count: important metric to keep an eye on to monitor replication lag; if this keeps increasing over time, you may have some network issues.<\/li>\n<li>cursor.timedOut: If this number is growing at a regular rate, you may be experiencing an application error.<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>There are certainly a number of documents and fields I didn&#8217;t touch on but it&#8217;s almost impossible to determine what will be specific to your instance. It&#8217;s important that you baseline your system so you know what statistics are like in a healthy environment in order to identify when your instance is not acting appropriately. Gather metrics daily or weekly and graph it out to see what your trending numbers are. This can start to give you an idea what to plan for in the future.<\/p>\n<p>For more information regarding serverStatus and its usage, please refer to <a href=\"https:\/\/docs.mongodb.com\/manual\/reference\/command\/serverStatus\/\" target=\"_blank\" rel=\"noopener noreferrer\">the MongoDB documentation<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>MongoDB ServerStatus is the main command used to produce a huge document containing important metrics and information about your database. When performing a health check, there are several important keys that you&#8217;ll want to be aware of inside serverStatus. The output can be minimized for information that you want to see. It can give you [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":31418,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","content-type":"","footnotes":""},"categories":[4166,2164],"tags":[2129,2167],"class_list":["post-31380","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-mongodb","tag-database-health-check","tag-mongodb"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.1 (Yoast SEO v27.1.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>MongoDB ServerStatus Health Check Tips From Top MongoDB Experts<\/title>\n<meta name=\"description\" content=\"MongoDB ServerStatus is the main command used to produce a huge document containing important metrics and information about your database.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MongoDB ServerStatus Health Check Tips\" \/>\n<meta property=\"og:description\" content=\"MongoDB ServerStatus is the main command used to produce a huge document containing important metrics and information about your database.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\" \/>\n<meta property=\"article:published_time\" content=\"2017-05-30T17:15:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-02-11T01:20:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtual-dba.com\/media\/MongoDB-ServerStatus-Health-Check-Tips.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"557\" \/>\n\t<meta property=\"og:image:height\" content=\"291\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"XTIVIA\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@virtual_dba\" \/>\n<meta name=\"twitter:site\" content=\"@virtual_dba\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"XTIVIA\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/\"},\"author\":{\"name\":\"XTIVIA\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1\"},\"headline\":\"MongoDB ServerStatus Health Check Tips\",\"datePublished\":\"2017-05-30T17:15:58+00:00\",\"dateModified\":\"2021-02-11T01:20:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/\"},\"wordCount\":1056,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/MongoDB-ServerStatus-Health-Check-Tips.jpg\",\"keywords\":[\"Database Health Check\",\"MongoDB\"],\"articleSection\":[\"Blog\",\"MongoDB\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/\",\"url\":\"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/\",\"name\":\"MongoDB ServerStatus Health Check Tips From Top MongoDB Experts\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/MongoDB-ServerStatus-Health-Check-Tips.jpg\",\"datePublished\":\"2017-05-30T17:15:58+00:00\",\"dateModified\":\"2021-02-11T01:20:34+00:00\",\"description\":\"MongoDB ServerStatus is the main command used to produce a huge document containing important metrics and information about your database.\",\"breadcrumb\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/#primaryimage\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/MongoDB-ServerStatus-Health-Check-Tips.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/MongoDB-ServerStatus-Health-Check-Tips.jpg\",\"width\":557,\"height\":291},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtual-dba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"MongoDB ServerStatus Health Check Tips\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/virtual-dba.com\/#website\",\"url\":\"https:\/\/virtual-dba.com\/\",\"name\":\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\",\"description\":\"Remote Database Administration\",\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/virtual-dba.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/virtual-dba.com\/#organization\",\"name\":\"Virtual-DBA: Remote DBA | Remote Database Administration\",\"alternateName\":\"Virtual-DBA powered by XTIVIA\",\"url\":\"https:\/\/virtual-dba.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg\",\"width\":557,\"height\":291,\"caption\":\"Virtual-DBA: Remote DBA | Remote Database Administration\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/virtual_dba\",\"https:\/\/www.linkedin.com\/showcase\/36220649\/\",\"https:\/\/www.youtube.com\/channel\/UCx3AIeUQ2ziTLKZSJDZ-SEg\"],\"description\":\"Eliminate database downtime and spiraling costs with XTIVIA\u2019s Virtual-DBA. In today\u2019s always-on business world, gaps in 24x7 on-call DBA support, neglected maintenance and security, or a stretched team struggling with overwhelming workloads can lead to costly disruptions and threaten business continuity. XTIVIA\u2019s Virtual-DBA provides the immediate, expert database administration you need, exactly when you need it, ensuring optimal performance, ironclad security, and significant cost savings without the burden of expanding your in-house team. The goal of Virtual-DBA is to provide a cost-effective solution for organizations seeking to optimize the security, management, maintenance, availability, and performance of their critical business systems, whether self-managed or cloud-managed (e.g., AWS RDS, Azure SQL Database). We accomplish this through a comprehensive remote DBA service offering designed specifically to meet the Oracle\u00ae, DB2\u00ae, Informix\u00ae, MySQL\u2122, PostgreSQL\u00ae, MongoDB\u00ae, MariaDB, and Microsoft SQL Server\u00ae, CockroachDB, Databricks, AWS, and Azure needs of our clients.\",\"email\":\"info@xtivia.com\",\"telephone\":\"8886853101\",\"legalName\":\"XTIVIA, Inc\",\"foundingDate\":\"1992-05-01\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"201\",\"maxValue\":\"500\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1\",\"name\":\"XTIVIA\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g\",\"caption\":\"XTIVIA\"},\"url\":\"https:\/\/virtual-dba.com\/author\/xtivia\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"MongoDB ServerStatus Health Check Tips From Top MongoDB Experts","description":"MongoDB ServerStatus is the main command used to produce a huge document containing important metrics and information about your database.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/","og_locale":"en_US","og_type":"article","og_title":"MongoDB ServerStatus Health Check Tips","og_description":"MongoDB ServerStatus is the main command used to produce a huge document containing important metrics and information about your database.","og_url":"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/","og_site_name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","article_published_time":"2017-05-30T17:15:58+00:00","article_modified_time":"2021-02-11T01:20:34+00:00","og_image":[{"width":557,"height":291,"url":"https:\/\/virtual-dba.com\/media\/MongoDB-ServerStatus-Health-Check-Tips.jpg","type":"image\/jpeg"}],"author":"XTIVIA","twitter_card":"summary_large_image","twitter_creator":"@virtual_dba","twitter_site":"@virtual_dba","twitter_misc":{"Written by":"XTIVIA","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/#article","isPartOf":{"@id":"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/"},"author":{"name":"XTIVIA","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1"},"headline":"MongoDB ServerStatus Health Check Tips","datePublished":"2017-05-30T17:15:58+00:00","dateModified":"2021-02-11T01:20:34+00:00","mainEntityOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/"},"wordCount":1056,"commentCount":0,"publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/MongoDB-ServerStatus-Health-Check-Tips.jpg","keywords":["Database Health Check","MongoDB"],"articleSection":["Blog","MongoDB"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/","url":"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/","name":"MongoDB ServerStatus Health Check Tips From Top MongoDB Experts","isPartOf":{"@id":"https:\/\/virtual-dba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/#primaryimage"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/MongoDB-ServerStatus-Health-Check-Tips.jpg","datePublished":"2017-05-30T17:15:58+00:00","dateModified":"2021-02-11T01:20:34+00:00","description":"MongoDB ServerStatus is the main command used to produce a huge document containing important metrics and information about your database.","breadcrumb":{"@id":"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/#primaryimage","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/MongoDB-ServerStatus-Health-Check-Tips.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/MongoDB-ServerStatus-Health-Check-Tips.jpg","width":557,"height":291},{"@type":"BreadcrumbList","@id":"https:\/\/virtual-dba.com\/blog\/mongodb-serverstatus-health-check-tips\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtual-dba.com\/"},{"@type":"ListItem","position":2,"name":"MongoDB ServerStatus Health Check Tips"}]},{"@type":"WebSite","@id":"https:\/\/virtual-dba.com\/#website","url":"https:\/\/virtual-dba.com\/","name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","description":"Remote Database Administration","publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/virtual-dba.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/virtual-dba.com\/#organization","name":"Virtual-DBA: Remote DBA | Remote Database Administration","alternateName":"Virtual-DBA powered by XTIVIA","url":"https:\/\/virtual-dba.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg","width":557,"height":291,"caption":"Virtual-DBA: Remote DBA | Remote Database Administration"},"image":{"@id":"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/virtual_dba","https:\/\/www.linkedin.com\/showcase\/36220649\/","https:\/\/www.youtube.com\/channel\/UCx3AIeUQ2ziTLKZSJDZ-SEg"],"description":"Eliminate database downtime and spiraling costs with XTIVIA\u2019s Virtual-DBA. In today\u2019s always-on business world, gaps in 24x7 on-call DBA support, neglected maintenance and security, or a stretched team struggling with overwhelming workloads can lead to costly disruptions and threaten business continuity. XTIVIA\u2019s Virtual-DBA provides the immediate, expert database administration you need, exactly when you need it, ensuring optimal performance, ironclad security, and significant cost savings without the burden of expanding your in-house team. The goal of Virtual-DBA is to provide a cost-effective solution for organizations seeking to optimize the security, management, maintenance, availability, and performance of their critical business systems, whether self-managed or cloud-managed (e.g., AWS RDS, Azure SQL Database). We accomplish this through a comprehensive remote DBA service offering designed specifically to meet the Oracle\u00ae, DB2\u00ae, Informix\u00ae, MySQL\u2122, PostgreSQL\u00ae, MongoDB\u00ae, MariaDB, and Microsoft SQL Server\u00ae, CockroachDB, Databricks, AWS, and Azure needs of our clients.","email":"info@xtivia.com","telephone":"8886853101","legalName":"XTIVIA, Inc","foundingDate":"1992-05-01","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"201","maxValue":"500"}},{"@type":"Person","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1","name":"XTIVIA","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g","caption":"XTIVIA"},"url":"https:\/\/virtual-dba.com\/author\/xtivia\/"}]}},"_links":{"self":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/31380","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/comments?post=31380"}],"version-history":[{"count":0,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/31380\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media\/31418"}],"wp:attachment":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media?parent=31380"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/categories?post=31380"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/tags?post=31380"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}