Download PDF
Download page Configure Microsoft SQL Server Collectors.
Configure Microsoft SQL Server Collectors
This page provides configuration details for Microsoft SQL Server collectors.
Prerequisites
To monitor Microsoft SQL Server with Database Visibility, you must be running the 2005 version or newer.
To configure an Azure SQL Managed instance, follow the configuration procedures of a Microsoft SQL Server Collector described in this topic.
Connection Details
Section | Field | Description |
---|---|---|
Create New Collector | Database Type | The database type that you want to monitor. |
Agent | The Database Agent that manages the collector. | |
Collector Name | The name you want to identify the collector by. | |
Connection Details | Hostname or IP Address | The hostname or IP address of the machine that your database is running on. |
Listener Port | The TCP/IP address of the port on which your database communicates with the Database Agent. If you are using a Microsoft SQL Server cluster, specify the listener port of the cluster. | |
Windows Authentication | Click to enable Windows authentication when connecting to the database. | |
Custom JDBC Connection String | The JDBC connection string generated by the database agent, for example, jdbc:sqlserver:// . You can also specify a custom connection string, which is useful for setting custom authentication options. | |
Username and Password | Username | The name of the user who is connecting to and monitoring the database through the Database Agent. The user should have the permissions described in User Permissions for Microsoft SQL Server. |
Password | The password of the user who is connecting to and monitoring the database through the Database Agent. | |
CyberArk | Click to enable CyberArk for database username and password. When CyberArk is enabled, information about Application, Safe, Folder, and Object is required to fetch the username and password for your database. To use CyberArk with Database Visibility, you must download the JavaPasswordSDK.jar file from the CyberArk web site and rename the file to cyberark-sdk-9.5.jar . Then, you must copy the JAR file to the lib directory of the database agent zip file. | |
Advanced Options | Sub-Collectors | Click to monitor multiple database instances in a consolidated view, and aggregate metrics of multiple databases. To monitor a custom cluster, you can add additional hostname or IP address, and port details for each sub-collector. You can add up to a total of 29 sub-collectors. Thereby, 30 databases can be monitored in a custom cluster. In addition to the licenses consumed by the main collector, each sub-collector consumes one or more licenses, depending on the database type. Note
|
Connection Properties | Click to add a new JDBC connection property or edit an existing property for relational databases. | |
Exclude Databases | The databases that you want to exclude, separated by commas. | |
Monitor Operating System | See this page for more details, Configure the Database Agent to Monitor Server Hardware. |
Note
To handle High Availability (Multi-AZ) for Amazon RDS, set the databaseName
JDBC connection string property to a user database.
Monitor Microsoft SQL Server
You can monitor the SQL Server either using an existing user account or by creating a new user account, with relevant privileges.
Authentication Methods
You can monitor the SQL server using either of the following authentication methods:
- Windows authenticated account (if the Database Agent is running on Windows)
- SQL Server authenticated account (if the Database Agent is running on Windows or Linux)
Before you Begin
To connect to the SQL Server database using a Windows authenticated account, perform the following:
● Select Windows Authentication checkbox when creating the collector using "Create New Collector" dialog.
Note
Do not specify the username and password when updating database connection details.
● Specify the path to the Database Agent authentication library as follows:
Version Details | Path |
---|---|
Windows 64-bit |
CODE
|
Windows 32-bit |
CODE
|
● Ensure that the Windows account user has appropriate privileges to authenticate the database server and can start the database agent.
● Change the logon credentials of the service to the Windows account with SQL Server access, if using a Windows service to run the Database Agent.
Server Level Permissions for SQL Server Logon
To create a new SQL Server user (with minimum permissions required to monitor), perform the following steps:
- Create a new login for the AppDynamics SQL Server Database Collector, such as
AppD_User
, using SQL Server Management Studio (SSMS). To map the new user to "master" and "msdb" databases, click "master" and "msdb" under Users mapped to this login.
User mapping to "master" and "msdb" are mandatory for monitoring. To view object information in the Object Browser screens, additional mapping to other databases is required.
After creating the login, grant the following privileges to the user by substituting
AppD_User
with the name you specified on the Login - New window:use master GRANT VIEW ANY DATABASE TO AppD_User; GRANT VIEW ANY definition to AppD_User; GRANT VIEW server state to AppD_User; GRANT SELECT ON [sys].[master_files] TO AppD_User;
CODE
Optional Object Permissions for SQL Server
The following object permissions are required for optional screens within the Database (DB) Visibility user interface:
Screen | Object Permissions |
---|---|
Object Browser > Users |
CODE
Note securityAdmin role is required |
Object Browser > Storage | To view object storage metadata, user mapping to other databases of interest is required. Note public role is required |
Object Browser > Job Status |
CODE
|
Object Browser > Error Log | For versions <= 2005
CODE
For versions > 2005
CODE
Note securityAdmin role required |
Object Browser > Database | To view object storage metadata, user mapping to other databases of interest is required e.g. Table/View metadata. Note public role required. Following image shows how users are mapped to AdventureWorks2012 database: |