DEV Community

Cover image for A New Way to Monitor Your SQL Server Instances
Rob Gravelle
Rob Gravelle

Posted on

A New Way to Monitor Your SQL Server Instances

Database performance tuning and query optimization are two of the most important activities to include in your SQL Server management efforts. In most instances, sluggish database performance can be traced back to the neglecting of one of these core tasks.

Despite the impact that performance tuning and query optimization can make on your SQL Server instances, many database administrators (DBAs) and developers are hesitant to tinker with memory optimization, caching, indexing, and the like, out of fear for adversely affecting their production environment.

With the availability of modern database monitoring tools, such fears are simply unfounded. One of the latest additions to the database monitoring field is Navicat Monitor. It's a server-based tool that you can access from anywhere via a web browser in order to keep track of your servers around the world, at any time, day or night. Version 2 added support for SQL Server; it can now monitor database process and system resources for locally hosted SQL Server instances as well as those provided via Amazon Web Services (AWS). This article will provide an overview of Navicat Monitor's most notable features.

Agentless Remote Server Monitoring Explained

Collect performance metrics from an SQL Server instance may be accomplished in one of two ways:

  1. by installing agent software on target servers and application servers. Performance metrics collected by the agents are then uploaded to a management server for storage, analysis, alerting and reporting to administrators.
  2. without installing any agent software on the servers or devices being monitored.

No software to install makes the agentless approach easier to manage than agent-based monitoring. In order to collect process metrics such as CPU load, RAM usage, and a variety of other resources, Navicat Monitor fetches them over an SSH/SNMP connection.

Query Analyzer

The Query Analyzer screen is the place to identify problematic queries, such as top queries with cumulative execution time count, slow queries, and deadlocks caused by two or more queries blocking each other. The Query Analyzer screen shows a wealth of information, including summaries of all executing queries, deadlocked queries, and more.

Long Running Queries

Alerts

No matter how carefully you configure your database, a sudden spike in usage patterns can cause unexpected slowdowns. Using Navicat's Alerts feature, you can set custom alert thresholds in order to receive alerts when the threshold rules that you defined are reached. For example: when CPU utilization exceeds 90% for more than 30 minutes. One of Navicat Monitor's most useful features, it can notify you via email, SMS, SNMP or Slack !

Configuring alerts

Dark Theme

As someone who has suffered from work-related eye strain, I have come to appreciate dark themes in my applications. Navicat added Dark Mode support in the 2.1 update. Now, Navicat Monitor supports both light and dark interface styles. You can show a dark mode version as your default viewing preference.

Light and Dark Modes

Conclusion

In this article, we explored some of Navicat Monitor's most notable features. These are just the tip of the iceberg. It also boasts an intuitive dashboard that's packed with vital information, migration script generation, roles manager, and scheduled reports, to name but a few.

Interested in giving Navicat Monitor a try? It's now available via monthly and yearly subscription!

Top comments (0)