{"id":16264,"date":"2025-10-24T12:23:37","date_gmt":"2025-10-24T06:53:37","guid":{"rendered":"https:\/\/www.skynats.com\/?p=16264"},"modified":"2025-10-24T12:23:39","modified_gmt":"2025-10-24T06:53:39","slug":"how-to-install-node-exporter-on-a-client-for-prometheus-monitoring","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\/","title":{"rendered":"How to Install and Configure Node Exporter on a Client for Prometheus Monitoring"},"content":{"rendered":"\n<p>Monitoring infrastructure is crucial for system administrators and DevOps teams. Prometheus, a powerful open-source monitoring and alerting toolkit, is widely used for collecting and visualizing system metrics. However, to monitor a remote system, you need an agent running on that system and Node Exporter is Prometheus\u2019 recommended tool for this job.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-prerequisites\"><strong>Prerequisites<\/strong><\/h2>\n\n\n\n<p>Before proceeding:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ensure Prometheus is installed on your monitoring server. If not, check out this detailed guide: <a href=\"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-prometheus-on-ubuntu-for-system-monitoring\/\">How to Install and Configure Prometheus on Ubuntu for System Monitoring<\/a><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-what-is-node-exporter\"><strong>What is Node Exporter?<\/strong><\/h2>\n\n\n\n<p>It is a Prometheus exporter for hardware and OS metrics. It runs on client machines and makes system statistics available via HTTP on port 9100. Prometheus scrapes these metrics and stores them for querying and visualization.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-step-by-step-installing-node-exporter-on-client-machines\"><strong>Step-by-Step: Installing Node Exporter on Client Machines<\/strong><\/h2>\n\n\n\n<p>Repeat the following steps on every client machine you wish to monitor.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-1-open-port-9100-if-using-a-firewall\"><strong>1. Open Port 9100 (If Using a Firewall)<\/strong><\/h3>\n\n\n\n<p>It exposes metrics on port 9100. Make sure this port is open.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-2-download-the-latest-node-exporter-release\"><strong>2. Download the Latest Node Exporter Release<\/strong><\/h3>\n\n\n\n<p>First, navigate to the <a href=\"https:\/\/prometheus.io\/download\/#node_exporter\">Prometheus Node Exporter GitHub releases page<\/a> and find the latest version.<\/p>\n\n\n\n<p>For example, to download version 1.5.0, run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>wget https:\/\/github.com\/prometheus\/node_exporter\/releases\/download\/v1.5.0\/node_exporter-1.5.0.linux-amd64.tar.gz<\/code><\/pre>\n\n\n\n<p><strong>3. Extract and Install<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>tar xvfz node_exporter-1.5.0.linux-amd64.tar.gz\nsudo mv node_exporter-1.5.0.linux-amd64\/node_exporter \/usr\/local\/bin<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>4. Run Node Exporter (Two Options)<\/strong><\/h3>\n\n\n\n<h4 class=\"wp-block-heading has-small-font-size\"><strong>Option A: Run Manually (For Testing)<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>node_exporter<\/code><\/pre>\n\n\n\n<p>You\u2019ll see logs confirming that metrics are being collected.<\/p>\n\n\n\n<h4 class=\"wp-block-heading has-small-font-size\"><strong>Option B: Run as a Systemd Service (Recommended)<\/strong><\/h4>\n\n\n\n<p>1. Create a dedicated user:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo useradd -rs \/bin\/false node_exporter<\/code><\/pre>\n\n\n\n<p>2. Create a systemd service file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vi \/etc\/systemd\/system\/node_exporter.service<\/code><\/pre>\n\n\n\n<p>\u00a0Add the following:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;Unit]\nDescription=Node Exporter\nWants=network-online.target\nAfter=network-online.target\n\n&#91;Service]\nUser=node_exporter\nGroup=node_exporter\nType=simple\nRestart=on-failure\nRestartSec=5s\nExecStart=\/usr\/local\/bin\/node_exporter\n\n&#91;Install]\nWantedBy=multi-user.target<\/code><\/pre>\n\n\n\n<p>3. Enable and start the service:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl daemon-reload\nsudo systemctl enable node_exporter\nsudo systemctl start node_exporter<\/code><\/pre>\n\n\n\n<p>4. Confirm it&#8217;s running:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl status node_exporter<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>5. Verify Node Exporter<\/strong><\/h3>\n\n\n\n<p>Open your browser and go to: http:\/\/client_ip_address:9100<\/p>\n\n\n\n<p>You should see the interface. Click the Metrics link to view the exported system metrics.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Configuring Prometheus to Monitor Clients<\/strong><\/h2>\n\n\n\n<p>Once it is running on your clients, you need to update the Prometheus configuration to start collecting data from them.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>1. Edit Prometheus Configuration<\/strong><\/h3>\n\n\n\n<p>On the monitoring server, open the config file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vim \/etc\/prometheus\/prometheus.yml<\/code><\/pre>\n\n\n\n<p>Add a new job under scrape_configs:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>...\n- job_name: \"remote_collector\"\n  scrape_interval: 10s\n  static_configs:\n    - targets: &#91;\"remote_addr:9100\"]<\/code><\/pre>\n\n\n\n<p>Replace remote_addr with the actual IP addresses of your client machines.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>2. Restart Prometheus<\/strong><\/h3>\n\n\n\n<p>Apply the changes by restarting Prometheus:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart prometheus<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>3. Verify in Prometheus UI<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Open the Prometheus web interface: http:\/\/&lt;prometheus_server_ip>:9090<\/li>\n\n\n\n<li>Go to Status > Targets<\/li>\n\n\n\n<li>You should now see a job named remote_collector with each client IP listed<\/li>\n\n\n\n<li>Click on the UP links to confirm the metrics are available<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>By installing and configuring Node Exporter on your client machines, you can now easily monitor critical system metrics like CPU, memory, disk, and network usage using Prometheus. This setup provides real-time visibility into your infrastructure\u2019s health and performance.<\/p>\n\n\n\n<p>Need help setting up or managing Node Exporter for Prometheus? Our <a href=\"https:\/\/www.skynats.com\/server-management\/\">Server Management Services<\/a> team will handle the configuration, monitoring, and optimization for you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Monitoring infrastructure is crucial for system administrators and DevOps teams. Prometheus, a powerful open-source monitoring and alerting toolkit, is widely used for collecting and visualizing system metrics. However, to monitor a remote system, you need an agent running on that system and Node Exporter is Prometheus\u2019 recommended tool for this job. Prerequisites Before proceeding: What [&hellip;]<\/p>\n","protected":false},"author":14,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[1143,1144,302],"class_list":["post-16264","post","type-post","status-publish","format-standard","hentry","category-blog","tag-node-exporter","tag-prometheus-monitoring","tag-server-management-services"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Node Exporter Setup Guide for Prometheus Monitoring<\/title>\n<meta name=\"description\" content=\"Set up Node Exporter easily for Prometheus. Monitor servers like a pro\u2014start optimizing your system today!\" \/>\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\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install and Configure Node Exporter on a Client for Prometheus Monitoring\" \/>\n<meta property=\"og:description\" content=\"Set up Node Exporter easily for Prometheus. Monitor servers like a pro\u2014start optimizing your system today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\/\" \/>\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-10-24T06:53:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-24T06:53:39+00:00\" \/>\n<meta name=\"author\" content=\"Jishnu V\" \/>\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=\"Jishnu V\" \/>\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.skynats.com\\\/blog\\\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\\\/\"},\"author\":{\"name\":\"Jishnu V\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/c63611da5e22d216e38d8658e5a605c5\"},\"headline\":\"How to Install and Configure Node Exporter on a Client for Prometheus Monitoring\",\"datePublished\":\"2025-10-24T06:53:37+00:00\",\"dateModified\":\"2025-10-24T06:53:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\\\/\"},\"wordCount\":446,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"Node Exporter\",\"Prometheus Monitoring\",\"server management services\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\\\/\",\"name\":\"Node Exporter Setup Guide for Prometheus Monitoring\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-10-24T06:53:37+00:00\",\"dateModified\":\"2025-10-24T06:53:39+00:00\",\"description\":\"Set up Node Exporter easily for Prometheus. Monitor servers like a pro\u2014start optimizing your system today!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install and Configure Node Exporter on a Client for Prometheus Monitoring\"}]},{\"@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\\\/c63611da5e22d216e38d8658e5a605c5\",\"name\":\"Jishnu V\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"caption\":\"Jishnu V\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Node Exporter Setup Guide for Prometheus Monitoring","description":"Set up Node Exporter easily for Prometheus. Monitor servers like a pro\u2014start optimizing your system today!","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\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\/","og_locale":"en_US","og_type":"article","og_title":"How to Install and Configure Node Exporter on a Client for Prometheus Monitoring","og_description":"Set up Node Exporter easily for Prometheus. Monitor servers like a pro\u2014start optimizing your system today!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-10-24T06:53:37+00:00","article_modified_time":"2025-10-24T06:53:39+00:00","author":"Jishnu V","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Jishnu V","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\/"},"author":{"name":"Jishnu V","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/c63611da5e22d216e38d8658e5a605c5"},"headline":"How to Install and Configure Node Exporter on a Client for Prometheus Monitoring","datePublished":"2025-10-24T06:53:37+00:00","dateModified":"2025-10-24T06:53:39+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\/"},"wordCount":446,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["Node Exporter","Prometheus Monitoring","server management services"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\/","url":"https:\/\/www.skynats.com\/blog\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\/","name":"Node Exporter Setup Guide for Prometheus Monitoring","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-10-24T06:53:37+00:00","dateModified":"2025-10-24T06:53:39+00:00","description":"Set up Node Exporter easily for Prometheus. Monitor servers like a pro\u2014start optimizing your system today!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-node-exporter-on-a-client-for-prometheus-monitoring\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install and Configure Node Exporter on a Client for Prometheus Monitoring"}]},{"@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\/c63611da5e22d216e38d8658e5a605c5","name":"Jishnu V","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","caption":"Jishnu V"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/16264","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\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=16264"}],"version-history":[{"count":1,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/16264\/revisions"}],"predecessor-version":[{"id":16267,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/16264\/revisions\/16267"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=16264"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=16264"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=16264"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}