{"id":881,"date":"2024-11-15T08:00:00","date_gmt":"2024-11-15T13:00:00","guid":{"rendered":"https:\/\/www.sqltabletalk.com\/?p=881"},"modified":"2024-11-11T23:29:44","modified_gmt":"2024-11-12T04:29:44","slug":"monitoring-sql-server-linux-native-tools","status":"publish","type":"post","link":"https:\/\/www.sqltabletalk.com\/?p=881","title":{"rendered":"Monitoring SQL Server on Linux with Native Linux Tools"},"content":{"rendered":"<h2>Introduction<\/h2>\n<p>As organizations deploy SQL Server on Linux, leveraging native Linux tools for monitoring becomes essential to ensure optimal performance and reliability. Tools like <code>htop<\/code>, <code>vmstat<\/code>, and <code>iostat<\/code> provide valuable insights into system resources and help identify potential bottlenecks. This blog explores how to use these native Linux tools to monitor SQL Server effectively.<\/p>\n<h2>1. htop: Real-Time System Monitoring<\/h2>\n<p><code>htop<\/code> is an interactive process viewer that offers a dynamic real-time view of system performance. It provides a more user-friendly interface compared to the traditional <code>top<\/code> command, making it easier to monitor SQL Server processes and overall system health.<\/p>\n<h3>Key Features:<\/h3>\n<ul>\n<li><strong>Process Management:<\/strong> View and manage running processes, including SQL Server (<code>sqlservr<\/code>) processes.<\/li>\n<li><strong>Resource Utilization:<\/strong> Monitor CPU usage, memory consumption, and load averages.<\/li>\n<li><strong>Customization:<\/strong> Sort processes by various criteria such as CPU or memory usage.<\/li>\n<\/ul>\n<h3>Using htop:<\/h3>\n<ol>\n<li><strong>Install htop:<\/strong>\n<pre><code>sudo apt-get install htop   # For Debian\/Ubuntu\nsudo dnf install htop       # For RHEL\/CentOS<\/code><\/pre>\n<\/li>\n<li><strong>Run htop:<\/strong>\n<pre><code>htop<\/code><\/pre>\n<\/li>\n<li><strong>Monitor SQL Server:<\/strong>\n<ul>\n<li>Look for the <code>sqlservr<\/code> process to observe its CPU and memory usage.<\/li>\n<li>Identify any processes consuming excessive resources, which could indicate performance issues.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<h3>Example:<\/h3>\n<p>In <code>htop<\/code>, you might notice that the <code>sqlservr<\/code> process is consistently using high CPU. This could prompt further investigation into query performance or resource allocation.<\/p>\n<h2>2. vmstat: Assessing Memory and CPU Performance<\/h2>\n<p><code>vmstat<\/code> provides a snapshot of system performance, focusing on memory, swap, I\/O, system processes, and CPU activity. It\u2019s particularly useful for identifying memory leaks or CPU bottlenecks that could affect SQL Server performance.<\/p>\n<h3>Key Metrics:<\/h3>\n<ul>\n<li><strong>Memory (<code>free<\/code>, <code>buff<\/code>, <code>cache<\/code>):<\/strong> Indicates available memory and how it&#8217;s being utilized.<\/li>\n<li><strong>Swap (<code>si<\/code>, <code>so<\/code>):<\/strong> Shows swap-in and swap-out activity, signaling memory pressure.<\/li>\n<li><strong>I\/O (<code>bi<\/code>, <code>bo<\/code>):<\/strong> Reflects block input\/output operations per second.<\/li>\n<li><strong>CPU (<code>us<\/code>, <code>sy<\/code>, <code>id<\/code>):<\/strong> Breaks down CPU usage into user, system, and idle times.<\/li>\n<\/ul>\n<h3>Using vmstat:<\/h3>\n<ol>\n<li><strong>Run vmstat:<\/strong>\n<pre><code>vmstat 5 5<\/code><\/pre>\n<p>This command provides five reports at five-second intervals.<\/li>\n<li><strong>Interpret the Output:<\/strong>\n<ul>\n<li><strong>Memory:<\/strong> High values in <code>si<\/code> and <code>so<\/code> indicate excessive swapping, which can degrade SQL Server performance.<\/li>\n<li><strong>CPU:<\/strong> Low <code>id<\/code> (idle) percentage and high <code>us<\/code> (user) or <code>sy<\/code> (system) percentages suggest CPU saturation.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<h3>Example:<\/h3>\n<p>If <code>vmstat<\/code> shows high <code>bi<\/code> and <code>bo<\/code> values, it may indicate disk I\/O bottlenecks affecting SQL Server\u2019s ability to read and write data efficiently.<\/p>\n<h2>3. iostat: Monitoring Disk I\/O Performance<\/h2>\n<p><code>iostat<\/code> is a powerful tool for monitoring disk I\/O performance, providing detailed statistics on device utilization, throughput, and latency. Since SQL Server relies heavily on disk operations for data storage and retrieval, monitoring disk performance is crucial.<\/p>\n<h3>Key Metrics:<\/h3>\n<ul>\n<li><strong>tps (transactions per second):<\/strong> Number of I\/O operations per second.<\/li>\n<li><strong>kB_read\/s and kB_wrtn\/s:<\/strong> Amount of data read from and written to disks per second.<\/li>\n<li><strong>await:<\/strong> Average time (in milliseconds) for I\/O requests to be served.<\/li>\n<li><strong>%util:<\/strong> Percentage of time the disk is busy handling I\/O requests.<\/li>\n<\/ul>\n<h3>Using iostat:<\/h3>\n<ol>\n<li><strong>Install iostat:<\/strong>\n<pre><code>sudo apt-get install sysstat   # For Debian\/Ubuntu\nsudo dnf install sysstat       # For RHEL\/CentOS<\/code><\/pre>\n<\/li>\n<li><strong>Run iostat:<\/strong>\n<pre><code>iostat -xz 5 3<\/code><\/pre>\n<p>This command provides extended statistics with detailed output every five seconds, three times.<\/li>\n<li><strong>Analyze Disk Performance:<\/strong>\n<ul>\n<li><strong>High <code>%util<\/code>:<\/strong> Indicates that the disk is frequently busy, which can lead to increased latency for SQL Server operations.<\/li>\n<li><strong>High <code>await<\/code>:<\/strong> Suggests that I\/O requests are taking longer to process, potentially slowing down database transactions.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<h3>Example:<\/h3>\n<p>If <code>iostat<\/code> reveals a disk with consistently high <code>%util<\/code> and <code>await<\/code>, it may be necessary to upgrade the storage subsystem or optimize SQL Server\u2019s I\/O patterns to alleviate the bottleneck.<\/p>\n<h2>Integrating Insights for Optimal Performance<\/h2>\n<p>By combining the insights from <code>htop<\/code>, <code>vmstat<\/code>, and <code>iostat<\/code>, administrators can gain a comprehensive understanding of the system\u2019s performance:<\/p>\n<ul>\n<li><strong>CPU and Memory Monitoring with htop and vmstat:<\/strong> Identify resource-hungry processes and memory constraints that could impact SQL Server\u2019s efficiency.<\/li>\n<li><strong>Disk I\/O Analysis with iostat:<\/strong> Detect storage performance issues that may slow down data access and transaction processing.<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>Effective monitoring is key to maintaining the performance and reliability of SQL Server on Linux. Native Linux tools like <code>htop<\/code>, <code>vmstat<\/code>, and <code>iostat<\/code> provide essential metrics and real-time insights, enabling administrators to proactively address performance issues. By regularly monitoring these metrics, you can ensure that your SQL Server instances operate smoothly and efficiently within a Linux environment.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>As organizations deploy SQL Server on Linux, leveraging native Linux tools for monitoring becomes essential to ensure optimal performance and reliability. Tools like htop, vmstat, and iostat provide valuable insights into system resources and help identify potential bottlenecks. This blog explores how to use these native Linux tools to monitor SQL Server effectively.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[54,6,5,20,183],"tags":[159,371,373,19,375,370,131,374,372],"class_list":["post-881","post","type-post","status-publish","format-standard","hentry","category-maintenance","category-memory","category-performance","category-sql-server-on-linux","category-sql-server-tools","tag-database-administration","tag-htop","tag-iostat","tag-linux","tag-linux-tools","tag-monitoring","tag-sql-server","tag-system-performance","tag-vmstat"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Monitoring SQL Server on Linux with Native Linux Tools - SQL Table Talk<\/title>\n<meta name=\"description\" content=\"As organizations deploy SQL Server on Linux, leveraging native Linux tools for monitoring becomes essential to ensure optimal performance and reliability. Tools like htop, vmstat, and iostat provide valuable insights into system resources and help identify potential bottlenecks. This blog explores how to use these native Linux tools to monitor SQL Server effectively.\" \/>\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.sqltabletalk.com\/?p=881\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Monitoring SQL Server on Linux with Native Linux Tools - SQL Table Talk\" \/>\n<meta property=\"og:description\" content=\"As organizations deploy SQL Server on Linux, leveraging native Linux tools for monitoring becomes essential to ensure optimal performance and reliability. Tools like htop, vmstat, and iostat provide valuable insights into system resources and help identify potential bottlenecks. This blog explores how to use these native Linux tools to monitor SQL Server effectively.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqltabletalk.com\/?p=881\" \/>\n<meta property=\"og:site_name\" content=\"SQL Table Talk\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-15T13:00:00+00:00\" \/>\n<meta name=\"author\" content=\"Stephen Planck\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Stephen Planck\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=881#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=881\"},\"author\":{\"name\":\"Stephen Planck\",\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0\"},\"headline\":\"Monitoring SQL Server on Linux with Native Linux Tools\",\"datePublished\":\"2024-11-15T13:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=881\"},\"wordCount\":638,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0\"},\"keywords\":[\"database administration\",\"htop\",\"iostat\",\"Linux\",\"Linux Tools\",\"Monitoring\",\"SQL Server\",\"System Performance\",\"vmstat\"],\"articleSection\":[\"Maintenance\",\"Memory\",\"Performance\",\"SQL Server on Linux\",\"SQL Server Tools\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.sqltabletalk.com\/?p=881#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=881\",\"url\":\"https:\/\/www.sqltabletalk.com\/?p=881\",\"name\":\"Monitoring SQL Server on Linux with Native Linux Tools - SQL Table Talk\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/#website\"},\"datePublished\":\"2024-11-15T13:00:00+00:00\",\"description\":\"As organizations deploy SQL Server on Linux, leveraging native Linux tools for monitoring becomes essential to ensure optimal performance and reliability. Tools like htop, vmstat, and iostat provide valuable insights into system resources and help identify potential bottlenecks. This blog explores how to use these native Linux tools to monitor SQL Server effectively.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=881#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sqltabletalk.com\/?p=881\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=881#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.sqltabletalk.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Monitoring SQL Server on Linux with Native Linux Tools\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.sqltabletalk.com\/#website\",\"url\":\"https:\/\/www.sqltabletalk.com\/\",\"name\":\"SQL Table Talk\",\"description\":\"Breaking Down SQL Server, One Post at a Time.\",\"publisher\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.sqltabletalk.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0\",\"name\":\"Stephen Planck\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/64181114edc3de3d99072c049bcec024f025c9536dc89fc8ff1bac58976ca81e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/64181114edc3de3d99072c049bcec024f025c9536dc89fc8ff1bac58976ca81e?s=96&d=mm&r=g\",\"caption\":\"Stephen Planck\"},\"logo\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/image\/\"},\"sameAs\":[\"https:\/\/dexterwiki.com\",\"https:\/\/www.linkedin.com\/in\/stephen-planck-4611b692?trk=people-guest_people_search-card&challengeId=AQErf8gbBmcVMwAAAYsyIsxO-0UvU8z7cHrBpZoo_n3xt9qEKpRN5B_jd_LmAMu-OfeArkQ7GDjobJ2uRoQQV35EQdh_rR6kxA&submissionId=09de7067-c335-8e17-40b8-8dc32b60ed6c&challengeSource=AgEcUCw35zpPmAAAAYsyI4vAWhJTV7Nt4vZYKc3V1qiDBpCkKgUvtlOBgYXcE84&challegeType=AgE_wZiTT09IAQAAAYsyI4vDmNvbZIYe6XHju5V2bXVvM3IVxnJslgY&memberId=AgESFTkUShzs_gAAAYsyI4vGYk0Gic1uc5kB6cKOABA26Gw&recognizeDevice=AgHdSZyUSI5CEwAAAYsyI4vKd_koF9JgpsCJShT8QfbK1QMiv8SI\",\"https:\/\/www.youtube.com\/linuxmate\"],\"url\":\"https:\/\/www.sqltabletalk.com\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Monitoring SQL Server on Linux with Native Linux Tools - SQL Table Talk","description":"As organizations deploy SQL Server on Linux, leveraging native Linux tools for monitoring becomes essential to ensure optimal performance and reliability. Tools like htop, vmstat, and iostat provide valuable insights into system resources and help identify potential bottlenecks. This blog explores how to use these native Linux tools to monitor SQL Server effectively.","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.sqltabletalk.com\/?p=881","og_locale":"en_US","og_type":"article","og_title":"Monitoring SQL Server on Linux with Native Linux Tools - SQL Table Talk","og_description":"As organizations deploy SQL Server on Linux, leveraging native Linux tools for monitoring becomes essential to ensure optimal performance and reliability. Tools like htop, vmstat, and iostat provide valuable insights into system resources and help identify potential bottlenecks. This blog explores how to use these native Linux tools to monitor SQL Server effectively.","og_url":"https:\/\/www.sqltabletalk.com\/?p=881","og_site_name":"SQL Table Talk","article_published_time":"2024-11-15T13:00:00+00:00","author":"Stephen Planck","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Stephen Planck","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.sqltabletalk.com\/?p=881#article","isPartOf":{"@id":"https:\/\/www.sqltabletalk.com\/?p=881"},"author":{"name":"Stephen Planck","@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0"},"headline":"Monitoring SQL Server on Linux with Native Linux Tools","datePublished":"2024-11-15T13:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.sqltabletalk.com\/?p=881"},"wordCount":638,"commentCount":0,"publisher":{"@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0"},"keywords":["database administration","htop","iostat","Linux","Linux Tools","Monitoring","SQL Server","System Performance","vmstat"],"articleSection":["Maintenance","Memory","Performance","SQL Server on Linux","SQL Server Tools"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.sqltabletalk.com\/?p=881#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.sqltabletalk.com\/?p=881","url":"https:\/\/www.sqltabletalk.com\/?p=881","name":"Monitoring SQL Server on Linux with Native Linux Tools - SQL Table Talk","isPartOf":{"@id":"https:\/\/www.sqltabletalk.com\/#website"},"datePublished":"2024-11-15T13:00:00+00:00","description":"As organizations deploy SQL Server on Linux, leveraging native Linux tools for monitoring becomes essential to ensure optimal performance and reliability. Tools like htop, vmstat, and iostat provide valuable insights into system resources and help identify potential bottlenecks. This blog explores how to use these native Linux tools to monitor SQL Server effectively.","breadcrumb":{"@id":"https:\/\/www.sqltabletalk.com\/?p=881#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqltabletalk.com\/?p=881"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqltabletalk.com\/?p=881#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqltabletalk.com\/"},{"@type":"ListItem","position":2,"name":"Monitoring SQL Server on Linux with Native Linux Tools"}]},{"@type":"WebSite","@id":"https:\/\/www.sqltabletalk.com\/#website","url":"https:\/\/www.sqltabletalk.com\/","name":"SQL Table Talk","description":"Breaking Down SQL Server, One Post at a Time.","publisher":{"@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sqltabletalk.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0","name":"Stephen Planck","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/64181114edc3de3d99072c049bcec024f025c9536dc89fc8ff1bac58976ca81e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/64181114edc3de3d99072c049bcec024f025c9536dc89fc8ff1bac58976ca81e?s=96&d=mm&r=g","caption":"Stephen Planck"},"logo":{"@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/image\/"},"sameAs":["https:\/\/dexterwiki.com","https:\/\/www.linkedin.com\/in\/stephen-planck-4611b692?trk=people-guest_people_search-card&challengeId=AQErf8gbBmcVMwAAAYsyIsxO-0UvU8z7cHrBpZoo_n3xt9qEKpRN5B_jd_LmAMu-OfeArkQ7GDjobJ2uRoQQV35EQdh_rR6kxA&submissionId=09de7067-c335-8e17-40b8-8dc32b60ed6c&challengeSource=AgEcUCw35zpPmAAAAYsyI4vAWhJTV7Nt4vZYKc3V1qiDBpCkKgUvtlOBgYXcE84&challegeType=AgE_wZiTT09IAQAAAYsyI4vDmNvbZIYe6XHju5V2bXVvM3IVxnJslgY&memberId=AgESFTkUShzs_gAAAYsyI4vGYk0Gic1uc5kB6cKOABA26Gw&recognizeDevice=AgHdSZyUSI5CEwAAAYsyI4vKd_koF9JgpsCJShT8QfbK1QMiv8SI","https:\/\/www.youtube.com\/linuxmate"],"url":"https:\/\/www.sqltabletalk.com\/?author=1"}]}},"jetpack_featured_media_url":"","jetpack-related-posts":[],"jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"_links":{"self":[{"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/posts\/881","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=881"}],"version-history":[{"count":1,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/posts\/881\/revisions"}],"predecessor-version":[{"id":882,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/posts\/881\/revisions\/882"}],"wp:attachment":[{"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=881"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=881"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=881"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}