Skip to content
This repository has been archived by the owner on Jan 24, 2022. It is now read-only.

A SQL Server Prometheus exporter that allows you to monitor SQL Sever vital signs using Prometheus/Grafana

License

Notifications You must be signed in to change notification settings

MindFlavor/prometheus_sql_server_exporter

Repository files navigation

Prometheus SQL Server exporter

A prometheus exporter for the vital signs of Microsoft SQL Server instances

.NET Core

dockeri.co

Intro

Prometheus and Grafana make easy to create insight in time driven data. SQL Server exports a lot of information but doesn't readily store and display it. Using this simple exporter you allow Prometheus to store SQL Server vital signs with no effort. The stored data can be used to create dashboards or alerts as usual with Prometheus/Grafana.

This is a very simple dashboard you can get with Grafana:

Quick start

This is a dotnet core project so it will work on any platform. On Windows you might need to authorize the app to use the port.

  1. Clone and build the project
git clone https://github.com/MindFlavor/prometheus_sql_server_exporter.git
cd prometheus_sql_server_exporter
dotnet build -c Release
  1. Prepare the configuration file
cp sample/sample_config.json ~/exporter_config.json
vim ~/exporter_config # for info see below

This is an example configuation file:

{
    "port": 9966,
    "instanceTotalTimeout": 5,
    "instances": [{
        "connectionString": "Server=<your_instance>;Trusted_Connection=True;"
    }],
    "waitStats": {
        "templateFiles": [
            "Templates/WaitStats/Everything.txt",
        ]
    },
    "performanceCounters": {
        "templateFiles": [
            "Templates/PerformanceCounters/Everything.txt"
        ]
    }
}

The only mandatory field for you to configure is the connection string. You can add as many connection strings as you want to collect metrics from multiple instances at the same time. The other fields, waitStats and performanceCounters can accept different files if you want to collect less data. Leave as it is to collect everything.

  1. Start the exporter
dotnet bin/Release/netcoreapp3.1/MindFlavor.SQLServerExporter.dll -c ~/exporter_config.json
  1. Add the exporter to Prometheus scraping process
sudo vim /etc/prometheus/prometheus.yml # or wherever you Prometheus config file is

Add these lines:

  - job_name: 'sql_server'

    # Override the global default and scrape targets from this job every 5 seconds.
    scrape_interval: 5s

    static_configs:
      - targets: ['your_server_here:9966']

Restart Prometheus and check that the scraping is running as expected.

Currently exported metrics

The exporter right now exports:

The exports are somewhat changed from the bare table to make them more suitable for Prometheus. For example, the schedulers export the parent node, scheduler id and cpu id as parameters, like this:

sql_os_schedulers_active_workers_count{instance="FRCOGNOWIN10\SQL17", parent_node_id="0", scheduler_id="6", cpu_id="6"} 9

This makes it possible to do interesting stuff in Grafana using Regexes (for example, you can plot the different worker threads per NUMA node).

Docker

This is how you use it as container:

docker run -p 9966:9966 -v /home/mindflavor/config.json:/config/config.json mindflavor:prometheus_sql_server_exporter

Where the mapped config config.json file is the above mentioned configuration file.

To create the container:

docker build --tag=prometheus_sql_server_exporter .

In the project root folder. By default the container will use the release configuration for dotnet publish. If you want a container with the debug version of the code simply use:

docker build --target debug --tag=prometheus_sql_server_exporter .

Contributing

The project needs help! Just fork/open an issue/whatever, no formality is required. Please note, however, that any code you submit as pull request must comply with this project LICENSE.