{"id":55438,"date":"2023-12-02T08:24:07","date_gmt":"2023-12-02T08:24:07","guid":{"rendered":"https:\/\/dbtut.com\/?p=55438"},"modified":"2023-12-02T08:26:43","modified_gmt":"2023-12-02T08:26:43","slug":"sql-server-monitoring-with-influxdb-and-grafana","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/","title":{"rendered":"SQL Server Monitoring With Influxdb And Grafana"},"content":{"rendered":"<p>In our article today, we will be discussing how we can monitor SQL Server using open source systems (Influxdb and Grafana).<\/p>\n<p>First of all, let&#8217;s get to know our Open-Source products.<\/p>\n<h3>InfluxDB<\/h3>\n<p>It is an open source database that is prepared with GO with its superior features such as real -time analytical studies, storage of application metrics and analysis of high performance\/queries.<\/p>\n<h3>Grafana<\/h3>\n<p>Grafana is an open source, general-purpose dashboard and graphics program that works as a web application.<\/p>\n<p>I can say that it has become very popular lately because it shows you the data it receives from different data sources as a dashboard.<\/p>\n<p>Our needs;<\/p>\n<p>-One Linux server<br \/>\n-SQL Server Server you will monitor<\/p>\n<h3>INFluxdb and Grafana Installation to Linux server<\/h3>\n<p>Demo will be using ubuntu 16.04 TLs, I already have a Linux server on the Amazon AWS and we will be doing our installation operations on this server.<\/p>\n<p>Let&#8217;s start the installation.<\/p>\n<p>First of all, I run APT-GET Update on my Linux server and apply the current files to my server.<\/p>\n<figure style=\"width: 945px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mshowto.org\/images\/articles\/2019\/04\/Resim1.png\" alt=\"\" width=\"945\" height=\"767\" \/><figcaption class=\"wp-caption-text\">Picture-1<\/figcaption><\/figure>\n<p>I will be based on the official site of the product.<\/p>\n<pre class=\"lang:default decode:true \">https:\/\/docs.influxdata.com\/influxdb\/v1.7\/introduction\/installation\/<\/pre>\n<p>I&#8217;m running the following installation commands.<\/p>\n<figure style=\"width: 996px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mshowto.org\/images\/articles\/2019\/04\/Resim2.png\" alt=\"\" width=\"996\" height=\"173\" \/><figcaption class=\"wp-caption-text\">Picture-2<\/figcaption><\/figure>\n<p>After defining the repository server required for Influxdb as in the picture above, I run the following installation commands.<\/p>\n<figure style=\"width: 1000px\" class=\"wp-caption alignnone\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mshowto.org\/images\/articles\/2019\/04\/Resim3.png\" alt=\"\" width=\"1000\" height=\"494\" \/><figcaption class=\"wp-caption-text\">Picture-3<\/figcaption><\/figure>\n<p>After completing the installation with apt-get install influxdb, I start influxdb. (sudo service influxdb start)<\/p>\n<figure style=\"width: 691px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mshowto.org\/images\/articles\/2019\/04\/Resim4.png\" alt=\"\" width=\"691\" height=\"84\" \/><figcaption class=\"wp-caption-text\">Picture-4<\/figcaption><\/figure>\n<p>We have completed the installation of Influxdb. I confirm the installation process with systemctl status influxdb.Service.<\/p>\n<figure style=\"width: 755px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mshowto.org\/images\/articles\/2019\/04\/Resim5.png\" alt=\"\" width=\"755\" height=\"198\" \/><figcaption class=\"wp-caption-text\">Picture-5<\/figcaption><\/figure>\n<p>As shown in the picture above, influxdb has successfully realized the installation.<\/p>\n<p>The way to the configuration file is \/etc\/influxdb\/influxdb.Conf.<\/p>\n<p>I will make some changes to this configuration file.<\/p>\n<p>I edit the configuration file using vi.<\/p>\n<figure style=\"width: 751px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mshowto.org\/images\/articles\/2019\/04\/Resim6.png\" alt=\"\" width=\"751\" height=\"767\" \/><figcaption class=\"wp-caption-text\">Picture-6<\/figcaption><\/figure>\n<p>I make the following changes in the configuration file.<\/p>\n[http]\nBind-Address = \u201c: 8088\u201d<br \/>\nEnabled = True<\/p>\n<p>After performing the changes, I save and restart the Systemctl restart influxdb.service.<\/p>\n<figure style=\"width: 753px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mshowto.org\/images\/articles\/2019\/04\/Resim7.png\" alt=\"\" width=\"753\" height=\"81\" \/><figcaption class=\"wp-caption-text\">Picture-7<\/figcaption><\/figure>\n<p>We have made the necessary adjustments to access Influxdb, now I will create a database and user in Influxdb.<\/p>\n<p>To connect to Influxdb, I just need to write influx.<\/p>\n<figure style=\"width: 757px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mshowto.org\/images\/articles\/2019\/04\/Resim8.png\" alt=\"\" width=\"757\" height=\"118\" \/><figcaption class=\"wp-caption-text\">Picture-8<\/figcaption><\/figure>\n<p>As you can see in the picture, I have reached Influxdb and tells me that I can now use InfluxQL.<\/p>\n<p>With Create Database mshowto_influx, I create a database called mshowto_influx.<\/p>\n<figure style=\"width: 755px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mshowto.org\/images\/articles\/2019\/04\/Resim9.png\" alt=\"\" width=\"755\" height=\"143\" \/><figcaption class=\"wp-caption-text\">Picture-9<\/figcaption><\/figure>\n<p>With the following command, I create a user called &#8220;telegraf&#8221; and perform the necessary authorization.<\/p>\n<pre class=\"lang:default decode:true \">CREATE USER telegraf WITH PASSWORD \u2018superpa$$word\u2019\r\nGRANT ALL ON mshowto_influx TO telegraf<\/pre>\n<p>I performed the necessary operations on the Influxdb side.<\/p>\n<p>Now I&#8217;m going to the Grafana installation I need to visualize the existing data in InfluxDB.<\/p>\n<h3>Grafana Installation<\/h3>\n<p>I get the official site for the installation of Grafana.<\/p>\n<pre class=\"lang:default decode:true \">http:\/\/docs.grafana.org\/installation\/debian\/<\/pre>\n<p>With the following commands, I install graphana.<\/p>\n<pre class=\"lang:default decode:true \">wget https:\/\/dl.grafana.com\/oss\/release\/grafana_5.4.2_amd64.deb\r\nsudo apt-get install -y adduser libfontconfig\r\nsudo dpkg -i grafana_5.4.2_amd64.deb<\/pre>\n<figure style=\"width: 883px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mshowto.org\/images\/articles\/2019\/04\/Resim10.png\" alt=\"\" width=\"883\" height=\"832\" \/><figcaption class=\"wp-caption-text\">Picture-10<\/figcaption><\/figure>\n<pre class=\"lang:default decode:true \">sudo apt-get update\r\nsudo apt-get install Grafana<\/pre>\n<p>After running the above codes, I verify the Grafana installation with the following command.<\/p>\n<pre class=\"lang:default decode:true \">Systemctl status Grafana<\/pre>\n<figure style=\"width: 969px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mshowto.org\/images\/articles\/2019\/04\/Resim11.png\" alt=\"\" width=\"969\" height=\"336\" \/><figcaption class=\"wp-caption-text\">Picture-11<\/figcaption><\/figure>\n<p>We have completed the Grafana installation and it informs us that a default user named admin has been created.<\/p>\n<p>Now all I have to do is finalize my installation process by allowing the required ports 3000 and 8086 on Amazon AWS for the influxdb and Grafana I installed on the server.<\/p>\n<figure style=\"width: 873px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mshowto.org\/images\/articles\/2019\/04\/Resim12.png\" alt=\"\" width=\"873\" height=\"825\" \/><figcaption class=\"wp-caption-text\">Picture-12<\/figcaption><\/figure>\n<p>When you encounter a screen like above, you can log in with the user name and admin password.<\/p>\n<p>After this stage, you will ask you to replace the admin user&#8217;s password.<\/p>\n<figure style=\"width: 874px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mshowto.org\/images\/articles\/2019\/04\/Resim13.png\" alt=\"\" width=\"874\" height=\"827\" \/><figcaption class=\"wp-caption-text\">Picture-13<\/figcaption><\/figure>\n<p>After setting a new strong password, you can continue by clicking save or continue without changing the password with skip.<\/p>\n<p>After accessing Grafana, you need to choose which data source you will use, so we click on add data source and select influxdb.<\/p>\n<figure style=\"width: 913px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mshowto.org\/images\/articles\/2019\/04\/Resim14.png\" alt=\"\" width=\"913\" height=\"957\" \/><figcaption class=\"wp-caption-text\">Picture-14<\/figcaption><\/figure>\n<p>As you can see in the image above, you can choose from many data sources other than InfluxDB.<\/p>\n<p>We choose InfluxDB and continue.<\/p>\n<p>After selecting InfluxDB, it will ask you to enter the necessary configuration settings for the InfluxDB you have installed.<\/p>\n<p>We enter the following values.<\/p>\n<p>URL : http:\/\/localhost:8086<br \/>\ndatabase : mshowto_influx<br \/>\nusername : telegraf<br \/>\npassword : superpa$$word<\/p>\n<p>We enter the information and save it.<\/p>\n<p>After the registration process, we successfully complete our data source addition process.<\/p>\n<figure style=\"width: 332px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mshowto.org\/images\/articles\/2019\/04\/Resim15.png\" alt=\"\" width=\"332\" height=\"104\" \/><figcaption class=\"wp-caption-text\">Picture-15<\/figcaption><\/figure>\n<p>After performing all these operations on our Linux server, we will make the necessary adjustments to monitor SQL Server with Telegraf.<\/p>\n<p>For Telegraf, you can use the telegraf.exe and telegraf.conf file that I will share in the attachment.<\/p>\n<h3>Configuration of the &#8220;Telegraf.conf&#8221; file<\/h3>\n<p>You should open the telegraf.conf file I shared attached with a text editor and enter the SQL Server information you want to follow.<\/p>\n<p>However, for this process, you must first create a user named telegraf on SQL Server with the code block below and provide the necessary authorization.<\/p>\n<pre class=\"lang:default decode:true \">USE master;\r\nGO\r\nCREATE LOGIN [telegrafuser] WITH PASSWORD = N\u2019superpa$$word\u2019;\r\nGO\r\nGRANT VIEW SERVER STATE TO [telegrafuser];\r\nGO\r\nGRANT VIEW ANY DEFINITION TO [telegrafuser];\r\nGO<\/pre>\n<p>After defining the user, we need to enter the access information for InfluxDB in the OUTPUT PLUGINS section in the telegraf.conf file.<\/p>\n<figure style=\"width: 678px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mshowto.org\/images\/articles\/2019\/04\/Resim16.png\" alt=\"\" width=\"678\" height=\"463\" \/><figcaption class=\"wp-caption-text\">Picture-16<\/figcaption><\/figure>\n<p>After making the InfluxDB settings as shown in the example, you must enter your SQL Server access information that you want to monitor in the INPUT PLUGINS section.<\/p>\n<figure style=\"width: 821px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mshowto.org\/images\/articles\/2019\/04\/Resim17.png\" alt=\"\" width=\"821\" height=\"274\" \/><figcaption class=\"wp-caption-text\">Picture-17<\/figcaption><\/figure>\n<p>In the Servers section, you can enter the server information you want to access more than once.<\/p>\n<p>After entering this information, you need to run telegraf.exe as a Windows service with the configuration file you prepared.<\/p>\n<p>To do this, you can run Powershell or the command line as an administrator and use the code block below. (I assume that the file directory I shared in the attachment is under the Program Files folder.)<\/p>\n<figure style=\"width: 846px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mshowto.org\/images\/articles\/2019\/04\/Resim18.png\" alt=\"\" width=\"846\" height=\"150\" \/><figcaption class=\"wp-caption-text\">Picture-18<\/figcaption><\/figure>\n<p>As you can see above, our data collection process via telegraph has started to work successfully.<\/p>\n<p>Now all we have to do is configure the dashboard via Grafana.<\/p>\n<p>I usually use one of Grafana&#8217;s ready-made dashboards for this. (https:\/\/grafana.com\/dashboards\/409)<\/p>\n<p>To load the ready dashboard, I apply draft number 409 from the Import menu on Grafana.<\/p>\n<figure style=\"width: 886px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mshowto.org\/images\/articles\/2019\/04\/Resim19.png\" alt=\"\" width=\"886\" height=\"954\" \/><figcaption class=\"wp-caption-text\">Picture-19<\/figcaption><\/figure>\n<p>It asks me to choose a data source for the Dashboard.<\/p>\n<p>I select InfluxDB and import it.<\/p>\n<p>After the import process, I can monitor my SQL Server server with the screen as below.<\/p>\n<figure style=\"width: 1896px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mshowto.org\/images\/articles\/2019\/04\/Resim20.png\" alt=\"\" width=\"1896\" height=\"798\" \/><figcaption class=\"wp-caption-text\">Picture-20<\/figcaption><\/figure>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_55438\" class=\"pvc_stats all  \" data-element-id=\"55438\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In our article today, we will be discussing how we can monitor SQL Server using open source systems (Influxdb and Grafana). First of all, let&#8217;s get to know our Open-Source products. InfluxDB It is an open source database that is prepared with GO with its superior features such as real -time analytical studies, storage of &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_55438\" class=\"pvc_stats all  \" data-element-id=\"55438\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":1414,"featured_media":55459,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[3],"tags":[],"class_list":["post-55438","post","type-post","status-publish","format-standard","has-post-thumbnail","","category-mssql"],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>SQL Server Monitoring With Influxdb And Grafana - Database Tutorials<\/title>\n<meta name=\"description\" content=\"In our article today, we will be discussing how we can monitor SQL Server using open source systems (Influxdb and Grafana).\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Server Monitoring With Influxdb And Grafana - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"In our article today, we will be discussing how we can monitor SQL Server using open source systems (Influxdb and Grafana).\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-12-02T08:24:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-02T08:26:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/12\/Ekran-goruntusu-2023-12-02-112041.png\" \/>\n\t<meta property=\"og:image:width\" content=\"770\" \/>\n\t<meta property=\"og:image:height\" content=\"343\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"\u00c7a\u011flar \u00d6zen\u00e7\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u00c7a\u011flar \u00d6zen\u00e7\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/\"},\"author\":{\"name\":\"\u00c7a\u011flar \u00d6zen\u00e7\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/92baa6fd666fb707d903177fed07d6ab\"},\"headline\":\"SQL Server Monitoring With Influxdb And Grafana\",\"datePublished\":\"2023-12-02T08:24:07+00:00\",\"dateModified\":\"2023-12-02T08:26:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/\"},\"wordCount\":1097,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/12\/Ekran-goruntusu-2023-12-02-112041.png\",\"articleSection\":[\"MSSQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/\",\"name\":\"SQL Server Monitoring With Influxdb And Grafana - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/12\/Ekran-goruntusu-2023-12-02-112041.png\",\"datePublished\":\"2023-12-02T08:24:07+00:00\",\"dateModified\":\"2023-12-02T08:26:43+00:00\",\"description\":\"In our article today, we will be discussing how we can monitor SQL Server using open source systems (Influxdb and Grafana).\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/12\/Ekran-goruntusu-2023-12-02-112041.png\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/12\/Ekran-goruntusu-2023-12-02-112041.png\",\"width\":770,\"height\":343},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Server Monitoring With Influxdb And Grafana\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dbtut.com\/#website\",\"url\":\"https:\/\/dbtut.com\/\",\"name\":\"Database Tutorials\",\"description\":\"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux\",\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dbtut.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/dbtut.com\/#organization\",\"name\":\"dbtut\",\"url\":\"https:\/\/dbtut.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"width\":223,\"height\":36,\"caption\":\"dbtut\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/92baa6fd666fb707d903177fed07d6ab\",\"name\":\"\u00c7a\u011flar \u00d6zen\u00e7\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/997658bc236de4f5a0f3f46e64535566e31ba96824c77c01165e863fc38fd1ba?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/997658bc236de4f5a0f3f46e64535566e31ba96824c77c01165e863fc38fd1ba?s=96&d=mm&r=g\",\"caption\":\"\u00c7a\u011flar \u00d6zen\u00e7\"},\"url\":\"https:\/\/dbtut.com\/index.php\/author\/caglarozenc\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SQL Server Monitoring With Influxdb And Grafana - Database Tutorials","description":"In our article today, we will be discussing how we can monitor SQL Server using open source systems (Influxdb and Grafana).","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/","og_locale":"en_US","og_type":"article","og_title":"SQL Server Monitoring With Influxdb And Grafana - Database Tutorials","og_description":"In our article today, we will be discussing how we can monitor SQL Server using open source systems (Influxdb and Grafana).","og_url":"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/","og_site_name":"Database Tutorials","article_published_time":"2023-12-02T08:24:07+00:00","article_modified_time":"2023-12-02T08:26:43+00:00","og_image":[{"width":770,"height":343,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/12\/Ekran-goruntusu-2023-12-02-112041.png","type":"image\/png"}],"author":"\u00c7a\u011flar \u00d6zen\u00e7","twitter_card":"summary_large_image","twitter_misc":{"Written by":"\u00c7a\u011flar \u00d6zen\u00e7","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/"},"author":{"name":"\u00c7a\u011flar \u00d6zen\u00e7","@id":"https:\/\/dbtut.com\/#\/schema\/person\/92baa6fd666fb707d903177fed07d6ab"},"headline":"SQL Server Monitoring With Influxdb And Grafana","datePublished":"2023-12-02T08:24:07+00:00","dateModified":"2023-12-02T08:26:43+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/"},"wordCount":1097,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/12\/Ekran-goruntusu-2023-12-02-112041.png","articleSection":["MSSQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/","url":"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/","name":"SQL Server Monitoring With Influxdb And Grafana - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/12\/Ekran-goruntusu-2023-12-02-112041.png","datePublished":"2023-12-02T08:24:07+00:00","dateModified":"2023-12-02T08:26:43+00:00","description":"In our article today, we will be discussing how we can monitor SQL Server using open source systems (Influxdb and Grafana).","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/12\/Ekran-goruntusu-2023-12-02-112041.png","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/12\/Ekran-goruntusu-2023-12-02-112041.png","width":770,"height":343},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2023\/12\/02\/sql-server-monitoring-with-influxdb-and-grafana\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"SQL Server Monitoring With Influxdb And Grafana"}]},{"@type":"WebSite","@id":"https:\/\/dbtut.com\/#website","url":"https:\/\/dbtut.com\/","name":"Database Tutorials","description":"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux","publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dbtut.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dbtut.com\/#organization","name":"dbtut","url":"https:\/\/dbtut.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","width":223,"height":36,"caption":"dbtut"},"image":{"@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/dbtut.com\/#\/schema\/person\/92baa6fd666fb707d903177fed07d6ab","name":"\u00c7a\u011flar \u00d6zen\u00e7","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/997658bc236de4f5a0f3f46e64535566e31ba96824c77c01165e863fc38fd1ba?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/997658bc236de4f5a0f3f46e64535566e31ba96824c77c01165e863fc38fd1ba?s=96&d=mm&r=g","caption":"\u00c7a\u011flar \u00d6zen\u00e7"},"url":"https:\/\/dbtut.com\/index.php\/author\/caglarozenc\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/55438","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/users\/1414"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=55438"}],"version-history":[{"count":1,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/55438\/revisions"}],"predecessor-version":[{"id":55460,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/55438\/revisions\/55460"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/55459"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=55438"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=55438"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=55438"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}