{"id":28773,"date":"2023-11-13T14:12:04","date_gmt":"2023-11-13T13:12:04","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=28773"},"modified":"2024-09-11T10:16:05","modified_gmt":"2024-09-11T08:16:05","slug":"monitor-microsoft-sql-server-with-zabbix","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/monitor-microsoft-sql-server-with-zabbix\/","title":{"rendered":"Monitor Microsoft SQL Server with Zabbix"},"content":{"rendered":"\n<p>In this blog post, we will quickly see what is required to monitor a Microsoft SQL Server with Zabbix.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-agent-setup\">Agent Setup<\/h2>\n\n\n\n<p>Agent setup is not required by <em>MSSQL by ODBC<\/em> template; thus this step can be skipped.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-setup-monitoring-account\">Setup Monitoring Account<\/h2>\n\n\n\n<p>The best practice is to create an account in the database dedicated to monitoring which will have limited permissions (view, select). Setup chapter of <a href=\"https:\/\/www.zabbix.com\/integrations\/mssql\" target=\"_blank\" rel=\"noreferrer noopener\">MS SQL integration<\/a> on Zabbix web site explains it well.<\/p>\n\n\n\n<p>In our example, this user will be named <em>zbx_monitor<\/em>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-odbc-driver-linux\">ODBC Driver Linux<\/h2>\n\n\n\n<p>Zabbix server will trigger SQL queries directly against MS SQL Server. To achieve this, it requires ODBC to be set up locally.<\/p>\n\n\n\n<p>You can refer to Microsoft web site (link <a href=\"https:\/\/learn.microsoft.com\/en-us\/sql\/connect\/odbc\/linux-mac\/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-ver16&amp;tabs=alpine18-install%2Credhat17-install%2Cdebian8-install%2Credhat7-13-install%2Crhel7-offline#17\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a>) which provides all the steps to install ODBC driver depending on your linux flavor. Roughly, installation is composed of following steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Add MSSQL repository<\/li>\n\n\n\n<li>Uninstall any installed ODBC packages<\/li>\n\n\n\n<li>Install Microsoft driver<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-setup-data-source-name-dsn\">Setup Data Source Name (DSN)<\/h2>\n\n\n\n<p>Before being able to use driver, we must declare it in <code>\/etc\/odbcinst.ini<\/code>:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n&#x5B;ODBC Driver 17 for SQL Server]\nDescription=Microsoft ODBC Driver 17 for SQL Server\nDriver=\/opt\/microsoft\/msodbcsql17\/lib64\/libmsodbcsql-17.10.so.5.1\nUsageCount=1\n<\/pre><\/div>\n\n\n<p>Next, we can declare DSN in <code>\/etc\/odbc.ini<\/code>:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n&#x5B;mssql-mfiles]\nDescription = MS SQL M-Files Database\nDriver = ODBC Driver 17 for SQL Server\nServer = &amp;lt;IP&amp;gt;\nPort = 1433\nUser = zbx_monitor\nPassword = &amp;lt;password&amp;gt;\nDatabase = msdb\n<\/pre><\/div>\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p>The name between square bracket is the DSN that we will use later in the Zabbix configuration. Note that the ODBC driver does not use password from that file.<\/p>\n\n\n\n<p>Finally, we can test our ODBC setup with the command:<\/p>\n<\/div><\/div>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\nisql -v mssql-mfiles zbx_monitor &lt;password&gt;\n<\/pre><\/div>\n\n\n<p>If all worked as expected, you should see this output and get a SQL prompt:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n+---------------------------------------+\n| Connected!                            |\n|                                       |\n| sql-statement                         |\n| help &#x5B;tablename]                      |\n| echo &#x5B;string]                         |\n| quit                                  |\n|                                       |\n+---------------------------------------+\nSQL&amp;gt;\n<\/pre><\/div>\n\n\n<p>To active ODBC poller on Zabbix, we must uncomment line in <code>\/etc\/zabbix\/zabbix_server.conf<\/code>:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nStartODBCPollers=5\n<\/pre><\/div>\n\n\n<p>Followed by a zabbix_server service restart.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-link-mssql-by-odbc-template\">Link <em>MSSQL by ODBC<\/em> Template<\/h2>\n\n\n\n<p>Next step is in the Zabbix UI. Link <em>MSSQL by ODBC<\/em> template to the host and set the following macros:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>{$MSSQL.USER}<\/li>\n\n\n\n<li>{$MSSQL.PASSWORD}<\/li>\n\n\n\n<li>{$MSSQL.DSN} as defined in <code>\/etc\/odbc.ini<\/code> (ie. mssql-mfiles)<\/li>\n\n\n\n<li>{$MSSQL.INSTANCE} if different from <code>SQLServer<\/code><\/li>\n<\/ul>\n\n\n\n<p>As an example, it might look like this:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"942\" height=\"309\" src=\"http:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/2023-11-13-13_59_01-zabbix_-Configuration-of-hosts-\u2014-Mozilla-Firefox.png\" alt=\"\" class=\"wp-image-29366\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/2023-11-13-13_59_01-zabbix_-Configuration-of-hosts-\u2014-Mozilla-Firefox.png 942w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/2023-11-13-13_59_01-zabbix_-Configuration-of-hosts-\u2014-Mozilla-Firefox-300x98.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/2023-11-13-13_59_01-zabbix_-Configuration-of-hosts-\u2014-Mozilla-Firefox-768x252.png 768w\" sizes=\"auto, (max-width: 942px) 100vw, 942px\" \/><\/figure>\n\n\n\n<p>After few seconds, you should see discovered databases and new items:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"491\" src=\"http:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/2023-11-13-14_02_16-zabbix_-Latest-data-\u2014-Mozilla-Firefox-1024x491.png\" alt=\"\" class=\"wp-image-29367\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/2023-11-13-14_02_16-zabbix_-Latest-data-\u2014-Mozilla-Firefox-1024x491.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/2023-11-13-14_02_16-zabbix_-Latest-data-\u2014-Mozilla-Firefox-300x144.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/2023-11-13-14_02_16-zabbix_-Latest-data-\u2014-Mozilla-Firefox-768x369.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/2023-11-13-14_02_16-zabbix_-Latest-data-\u2014-Mozilla-Firefox.png 1073w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>As well as pre-built dashboards:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"844\" height=\"684\" src=\"http:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/2023-11-13-14_04_36-zabbix_-Dashboards-\u2014-Mozilla-Firefox.png\" alt=\"\" class=\"wp-image-29368\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/2023-11-13-14_04_36-zabbix_-Dashboards-\u2014-Mozilla-Firefox.png 844w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/2023-11-13-14_04_36-zabbix_-Dashboards-\u2014-Mozilla-Firefox-300x243.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/11\/2023-11-13-14_04_36-zabbix_-Dashboards-\u2014-Mozilla-Firefox-768x622.png 768w\" sizes=\"auto, (max-width: 844px) 100vw, 844px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>In this blog post, we will quickly see what is required to monitor a Microsoft SQL Server with Zabbix. Agent Setup Agent setup is not required by MSSQL by ODBC template; thus this step can be skipped. Setup Monitoring Account The best practice is to create an account in the database dedicated to monitoring which [&hellip;]<\/p>\n","protected":false},"author":40,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[197,229],"tags":[1346,2430],"type_dbi":[],"class_list":["post-28773","post","type-post","status-publish","format-standard","hentry","category-application-integration-middleware","category-database-administration-monitoring","tag-sqlserver","tag-zabbix"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Monitor Microsoft SQL Server with Zabbix - dbi Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/monitor-microsoft-sql-server-with-zabbix\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Monitor Microsoft SQL Server with Zabbix\" \/>\n<meta property=\"og:description\" content=\"In this blog post, we will quickly see what is required to monitor a Microsoft SQL Server with Zabbix. Agent Setup Agent setup is not required by MSSQL by ODBC template; thus this step can be skipped. Setup Monitoring Account The best practice is to create an account in the database dedicated to monitoring which [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/monitor-microsoft-sql-server-with-zabbix\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-13T13:12:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-11T08:16:05+00:00\" \/>\n<meta name=\"author\" content=\"Middleware Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Middleware Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/monitor-microsoft-sql-server-with-zabbix\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/monitor-microsoft-sql-server-with-zabbix\\\/\"},\"author\":{\"name\":\"Middleware Team\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/8d8563acfc6e604cce6507f45bac0ea1\"},\"headline\":\"Monitor Microsoft SQL Server with Zabbix\",\"datePublished\":\"2023-11-13T13:12:04+00:00\",\"dateModified\":\"2024-09-11T08:16:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/monitor-microsoft-sql-server-with-zabbix\\\/\"},\"wordCount\":315,\"commentCount\":9,\"keywords\":[\"SQLServer\",\"Zabbix\"],\"articleSection\":[\"Application integration &amp; Middleware\",\"Database Administration &amp; Monitoring\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/monitor-microsoft-sql-server-with-zabbix\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/monitor-microsoft-sql-server-with-zabbix\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/monitor-microsoft-sql-server-with-zabbix\\\/\",\"name\":\"Monitor Microsoft SQL Server with Zabbix - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"datePublished\":\"2023-11-13T13:12:04+00:00\",\"dateModified\":\"2024-09-11T08:16:05+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/8d8563acfc6e604cce6507f45bac0ea1\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/monitor-microsoft-sql-server-with-zabbix\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/monitor-microsoft-sql-server-with-zabbix\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/monitor-microsoft-sql-server-with-zabbix\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Monitor Microsoft SQL Server with Zabbix\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/8d8563acfc6e604cce6507f45bac0ea1\",\"name\":\"Middleware Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"caption\":\"Middleware Team\"},\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/author\\\/middleware-team\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Monitor Microsoft SQL Server with Zabbix - dbi Blog","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:\/\/www.dbi-services.com\/blog\/monitor-microsoft-sql-server-with-zabbix\/","og_locale":"en_US","og_type":"article","og_title":"Monitor Microsoft SQL Server with Zabbix","og_description":"In this blog post, we will quickly see what is required to monitor a Microsoft SQL Server with Zabbix. Agent Setup Agent setup is not required by MSSQL by ODBC template; thus this step can be skipped. Setup Monitoring Account The best practice is to create an account in the database dedicated to monitoring which [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/monitor-microsoft-sql-server-with-zabbix\/","og_site_name":"dbi Blog","article_published_time":"2023-11-13T13:12:04+00:00","article_modified_time":"2024-09-11T08:16:05+00:00","author":"Middleware Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Middleware Team","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/monitor-microsoft-sql-server-with-zabbix\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/monitor-microsoft-sql-server-with-zabbix\/"},"author":{"name":"Middleware Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1"},"headline":"Monitor Microsoft SQL Server with Zabbix","datePublished":"2023-11-13T13:12:04+00:00","dateModified":"2024-09-11T08:16:05+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/monitor-microsoft-sql-server-with-zabbix\/"},"wordCount":315,"commentCount":9,"keywords":["SQLServer","Zabbix"],"articleSection":["Application integration &amp; Middleware","Database Administration &amp; Monitoring"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/monitor-microsoft-sql-server-with-zabbix\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/monitor-microsoft-sql-server-with-zabbix\/","url":"https:\/\/www.dbi-services.com\/blog\/monitor-microsoft-sql-server-with-zabbix\/","name":"Monitor Microsoft SQL Server with Zabbix - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2023-11-13T13:12:04+00:00","dateModified":"2024-09-11T08:16:05+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/monitor-microsoft-sql-server-with-zabbix\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/monitor-microsoft-sql-server-with-zabbix\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/monitor-microsoft-sql-server-with-zabbix\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Monitor Microsoft SQL Server with Zabbix"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1","name":"Middleware Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","caption":"Middleware Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/middleware-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/28773","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/40"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=28773"}],"version-history":[{"count":16,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/28773\/revisions"}],"predecessor-version":[{"id":29731,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/28773\/revisions\/29731"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=28773"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=28773"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=28773"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=28773"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}