Is there a way, sensor to monitor SQL 2014 Always On Availability groups? I want to see which DBs are being protected and which one is primary, secondary, what is the health of the cluster
SQL Always On HA monitoring
Votes:
2
22 Replies
Votes:
0
We have no dedicated sensor that is able to provide that info "out of the box". However there could be options like using a PerfCounter Custom Sensor that polls specific Performance Counters or using an MS SQL v2 Sensor to perform queries that deliver the desired information.
Maybe this article can be useful.
Kind regards.
Created on Feb 10, 2016 12:48:25 PM by
Erhard Mikulik [Paessler Support]
Last change on Feb 10, 2016 12:48:37 PM by
Erhard Mikulik [Paessler Support]
Votes:
0
Are there any plans to create a dedicated sensor for this? Im also looking for a way to check which DBs are being protected and which one is primary, secondary, what is the health of the cluster. Is there some Feature Request form?
Votes:
0
Hi there,
there are no plans to create a native sensor for this at the moment. Let's see if more people request this sensor type so that we can consider to work on a new sensor type. Please have a look here to see how we handle your feature requests.
There are some useful guides available in the internet, this one might help you to create your own query.
Best regards, Felix
Votes:
0
Hi, a sensor for monitoring AlwaysOn would be much appreciated. Veritas finally got around to support AlwaysOn in Netbackup so we are deploying it now. A sensor to monitor replication status for example would be very useful.
Votes:
0
It would be really good if PRTG could aim to have similar functionality as https://msdn.microsoft.com/en-us/library/ff877954.aspx for monitoring MSSQL AlwaysOn.
Votes:
0
Hi Olav,
The author of the article mentions, that the metrics are available via Performance Counters. Therefore, you can follow this article to create a PerfCounter Custom Sensor for the SQLServer:Availability Replica performance object.
Best regards, Felix
Votes:
0
Did you see Felix' reply? This one:
The author of the article mentions, that the metrics are available via Performance Counters. Therefore, you can follow this article to create a PerfCounter Custom Sensor for the SQLServer:Availability Replica performance object.
Did you already try that? Perhaps it already works fine for you :)
PRTG Scheduler |
PRTGapi |
Feature Requests |
WMI Issues |
SNMP Issues
Kind regards,
Stephan Linke, Tech Support Team
Votes:
0
Need this sensor - very important on SQL AG Monitoring
Votes:
0
Plus 1 for SQL AG monitoring and Distributed AG monitoring
Votes:
0
It's very unlikely that this will be implemented I'm afraid. Too little demand among our customers :(
Votes:
1
Hello Stephan. I really think you should reconsider making this sensor part of PRTG. Everyone who runs an SQL cluster would benefit from this.
Votes:
0
@Michael
Would you mind posting this as an official feature request, since you likely know what metrics are important in that regard? Here's our Guide for Feature Requests. Thanks, much appreciated!
Votes:
0
SQL AG monitoring and Distributed AG monitoring yet??
Votes:
0
Did you guys check this out already? :)
Votes:
3
I have created an MS SQL AG sensor if anyone is still interested
Votes:
0
Is it possible to monitor MS SQL Always ON? When does such a method come?
Votes:
0
Hello,
I'm afraid that there is no native sensor to monitor MS SQL Always ON solution. There is no plan yet to include such sensor in PRTG, therefore I invite you to check if a feature request is already opened and vote for it.
If there is no opened feature request yet, then please follow the procedure described here to open one for it.
Regards.
Votes:
0
@ajturs
are you able to share your AG sensor?
Votes:
0
we use the following and if it returns no rows we know there is a HA issue
select Master as Database
SELECT [synchronization_health]
FROM [master].[sys].[dm_hadr_availability_group_states] where [synchronization_health] = 2
Add comment