{"id":17059,"date":"2025-11-28T18:05:54","date_gmt":"2025-11-28T12:35:54","guid":{"rendered":"https:\/\/www.skynats.com\/?p=17059"},"modified":"2025-11-28T18:05:56","modified_gmt":"2025-11-28T12:35:56","slug":"a-guide-for-monitoring-cpu-usage-and-processes-in-linux","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\/","title":{"rendered":"A Guide for Monitoring CPU Usage and Processes in Linux"},"content":{"rendered":"\n<p>When you are using Linux, knowing how to check your system\u2019s CPU and process usage is a very useful skill. It helps you diagnose performance issues, find processes hogging resources, and keep everything running smoothly. In this blog, we will go through the process of Monitoring CPU Usage and Processes in Linux.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-why-monitor-cpu-and-processes\"><strong>Why Monitor CPU and Processes?<\/strong><\/h2>\n\n\n\n<p>A system under heavy load because of too many processes, a misbehaving program, or just high demand&nbsp; can slow down or even become unresponsive. Monitoring CPU usage and running processes gives you insight into what\u2019s happening on your server like which processes are using CPU or memory, how busy the system really is, and whether something unexpected is causing trouble.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-useful-commands-to-know\"><strong>Useful Commands to Know<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-top-real-time-process-monitoring\"><strong>top<\/strong><strong> \u2014 Real-time process monitoring<\/strong><\/h3>\n\n\n\n<p>The top command gives you a continuous, real-time view of running processes and resource usage. It shows a table with columns like PID (process ID), USER (owner), %CPU (how much CPU that process is using), %MEM (memory usage), and COMMAND (process name).<\/p>\n\n\n\n<p>You can also:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Press P to sort by CPU usage,<\/li>\n\n\n\n<li>Press M to sort by memory usage,<\/li>\n\n\n\n<li>Press k then enter a PID to kill a misbehaving process,<\/li>\n\n\n\n<li>Change the screen refresh delay or iteration count.<\/li>\n<\/ul>\n\n\n\n<p>This makes top a quick, powerful tool to spot and handle resource hogs.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-htop-a-more-user-friendly-alternative\"><strong>htop<\/strong><strong> \u2014 A more user-friendly alternative<\/strong><\/h3>\n\n\n\n<p>If you prefer something more interactive and easier to read, htop is a great option. It has colored bars for CPU, memory, swap usage, and lets you scroll through processes, filter, and kill processes directly.<a href=\"https:\/\/medium.com\/%40pankajchougale1008\/monitoring-cpu-usage-processes-in-linux-with-examples-439b89be7a31\">&nbsp;<\/a><\/p>\n\n\n\n<p>On many systems, you\u2019ll need to install it first:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install htop<\/code><\/pre>\n\n\n\n<p>Once installed, just run htop, and you get a more intuitive \u201ctask manager\u201d-style view.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>ps<\/strong><strong> \u2014 Snapshot of processes<\/strong><\/h3>\n\n\n\n<p>While top\/htop show a live, updating view, ps gives you a one-time snapshot of what\u2019s running right now.&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ps aux<\/code><\/pre>\n\n\n\n<p>This lists all running processes. You can combine ps with other commands (like grep) to filter for a specific program.<\/p>\n\n\n\n<p>If you want to find the top CPU-consuming processes in a quick snapshot, you might do:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ps aux --sort=-%cpu | head -n 10<\/code><\/pre>\n\n\n\n<p>This helps when you want to check CPU users without a constantly updating interface.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Advanced \/ Additional Tools<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>pidstat<\/strong> (from the sysstat package) \u2014 gives per-process CPU (and optionally memory or I\/O) usage over time. Useful if you want to track which process uses resources persistently.<\/li>\n\n\n\n<li><strong>Other tools<\/strong> like vmstat, mpstat, iostat, etc., can help monitor CPU, memory, disk I\/O, and more which is useful if you suspect performance issues beyond just CPU load.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Putting It into Practice \u2014 Example Scenarios<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Spotting a rogue process<\/strong>: Run top or htop, look for unusually high %CPU, note the PID or process name, then decide whether to kill or investigate further.<\/li>\n\n\n\n<li><strong>Getting a quick system snapshot<\/strong>: Use ps aux or ps aux &#8211;sort=-%cpu to get a list of current processes and how much CPU they use.<\/li>\n\n\n\n<li><strong>Tracking resource usage over time<\/strong>: Use pidstat (or system monitoring tools) to log CPU usage periodically.<\/li>\n\n\n\n<li><strong>Checking overall system load<\/strong>: If CPU usage is high or system seems sluggish, these tools help reveal if the CPU is overwhelmed or if another resource (memory, I\/O) is the bottleneck.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Conclusion<\/strong><\/h3>\n\n\n\n<p>Monitoring CPU usage and processes in Linux doesn\u2019t have to be complicated. With a few simple commands (top, htop, ps, pidstat, etc.), you can get an idea on what is happening inside your server. Whether you\u2019re managing a server, debugging an application, or just curious about your system\u2019s performance, these tools are very helpful. Using them regularly helps you troubleshoot problems, optimize resource use, and keep your system running smoothly.<\/p>\n\n\n\n<p>If you\u2019re finding it challenging to continuously track performance, troubleshoot resource spikes, or optimize server health, our expert team is here to help. At Skynats, we offer professional <a href=\"https:\/\/www.skynats.com\/server-management\/\">Server Management services<\/a> designed to ensure smooth operation, real-time monitoring, and proactive issue resolution across Linux environments. Whether you need hands-on guidance or full ongoing support in Monitoring CPU Usage and Processes in Linux, our certified engineers are available 24\/7 to assist.<\/p>\n\n\n\n<p><br><\/p>\n","protected":false},"excerpt":{"rendered":"<p>When you are using Linux, knowing how to check your system\u2019s CPU and process usage is a very useful skill. It helps you diagnose performance issues, find processes hogging resources, and keep everything running smoothly. In this blog, we will go through the process of Monitoring CPU Usage and Processes in Linux. Why Monitor CPU [&hellip;]<\/p>\n","protected":false},"author":16,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[1177,302],"class_list":["post-17059","post","type-post","status-publish","format-standard","hentry","category-blog","tag-monitoring-cpu-usage-and-processes-in-linux","tag-server-management-services"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Monitoring CPU Usage and Processes in Linux: Quick Guide<\/title>\n<meta name=\"description\" content=\"Learn Monitoring CPU Usage and Processes in Linux with simple steps. Improve performance and optimize your server efficiently.\" \/>\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.skynats.com\/blog\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"A Guide for Monitoring CPU Usage and Processes in Linux\" \/>\n<meta property=\"og:description\" content=\"Learn Monitoring CPU Usage and Processes in Linux with simple steps. Improve performance and optimize your server efficiently.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-28T12:35:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-28T12:35:56+00:00\" \/>\n<meta name=\"author\" content=\"Merin John\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Merin John\" \/>\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.skynats.com\\\/blog\\\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\\\/\"},\"author\":{\"name\":\"Merin John\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/b80e05405ba11197c3f60db56df40ded\"},\"headline\":\"A Guide for Monitoring CPU Usage and Processes in Linux\",\"datePublished\":\"2025-11-28T12:35:54+00:00\",\"dateModified\":\"2025-11-28T12:35:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\\\/\"},\"wordCount\":682,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"Monitoring CPU Usage and Processes in Linux\",\"server management services\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\\\/\",\"name\":\"Monitoring CPU Usage and Processes in Linux: Quick Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-11-28T12:35:54+00:00\",\"dateModified\":\"2025-11-28T12:35:56+00:00\",\"description\":\"Learn Monitoring CPU Usage and Processes in Linux with simple steps. Improve performance and optimize your server efficiently.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"A Guide for Monitoring CPU Usage and Processes in Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/b80e05405ba11197c3f60db56df40ded\",\"name\":\"Merin John\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g\",\"caption\":\"Merin John\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Monitoring CPU Usage and Processes in Linux: Quick Guide","description":"Learn Monitoring CPU Usage and Processes in Linux with simple steps. Improve performance and optimize your server efficiently.","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.skynats.com\/blog\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\/","og_locale":"en_US","og_type":"article","og_title":"A Guide for Monitoring CPU Usage and Processes in Linux","og_description":"Learn Monitoring CPU Usage and Processes in Linux with simple steps. Improve performance and optimize your server efficiently.","og_url":"https:\/\/www.skynats.com\/blog\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-11-28T12:35:54+00:00","article_modified_time":"2025-11-28T12:35:56+00:00","author":"Merin John","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Merin John","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\/"},"author":{"name":"Merin John","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/b80e05405ba11197c3f60db56df40ded"},"headline":"A Guide for Monitoring CPU Usage and Processes in Linux","datePublished":"2025-11-28T12:35:54+00:00","dateModified":"2025-11-28T12:35:56+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\/"},"wordCount":682,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["Monitoring CPU Usage and Processes in Linux","server management services"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\/","url":"https:\/\/www.skynats.com\/blog\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\/","name":"Monitoring CPU Usage and Processes in Linux: Quick Guide","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-11-28T12:35:54+00:00","dateModified":"2025-11-28T12:35:56+00:00","description":"Learn Monitoring CPU Usage and Processes in Linux with simple steps. Improve performance and optimize your server efficiently.","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/a-guide-for-monitoring-cpu-usage-and-processes-in-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"A Guide for Monitoring CPU Usage and Processes in Linux"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/b80e05405ba11197c3f60db56df40ded","name":"Merin John","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g","caption":"Merin John"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/17059","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=17059"}],"version-history":[{"count":1,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/17059\/revisions"}],"predecessor-version":[{"id":17060,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/17059\/revisions\/17060"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=17059"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=17059"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=17059"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}