Splunk Search

MS SQL Server Perfmon multiple Install instances

bmacias84
Champion

I am trying to create generic MSSQL for data collection. While installing SQL you are able to use the DEFAULT_INSTANCE or create NAMED_INSTANCES. Creating NAMED_INSTANCES allows you to have multiple MSSQL installation running on different ports.

With a DEFAULT_INSTANCE the counters will look like:


[perfmon://SQLServer:GeneralStatistics]
counters = User Connections
disabled = 0
interval = 60
object = SQLServer:General Statistics
index = <some_index>

On a NAMED_INSTANCE the counters will look like:


[perfmon://<NAMED_INSTANCE>:GeneralStatistics]
counters = User Connections
disabled = 0
interval = 60
object = <NAMED_INSTANCE>:General Statistics
index = <some_index>

NAMED_INSTANCE could be foo,bar, MSQL$HELLO, or MSQL$THREEHUNDRED. I would like to wild card all objects SQL objects for General Statistics for example. I do know I can create a WMI query quite easily to complish this but I would prefer using perfmon for constancy. Also trying to avoid creating stanzas for each instance of SQL.

Cheers

Tags (3)
0 Karma

ahall_splunk
Splunk Employee
Splunk Employee

You can do this by wildcards in the object. This is a regular expression, so something like the following in Splunk Universal Forwarder 6.0 and beyond:

[perfmon://GeneralStats]
counters = User Connections
interval = 60
object = [^:]+:General Statistics
index = perfmon
disabled = 0

bmacias84
Champion

Thats good to know, but does that work for virtual (shared) node in an active active SQL 2012 env. The perfmon counters for the virtual and physical node are different if you collect through the virtual node vs the physical node.

0 Karma
Get Updates on the Splunk Community!

SplunkTrust Application Period is Officially OPEN!

It's that time, folks! The application/nomination period for the 2025 SplunkTrust is officially open! If you ...

Splunk Answers Content Calendar, June Edition II

Get ready to dive into Splunk Dashboard panels this week! We'll be tackling common questions around ...

Splunk Observability Cloud's AI Assistant in Action Series: Auditing Compliance and ...

This is the third post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...