{"id":15834,"date":"2025-10-10T12:07:32","date_gmt":"2025-10-10T06:37:32","guid":{"rendered":"https:\/\/www.skynats.com\/?p=15834"},"modified":"2025-10-13T12:07:59","modified_gmt":"2025-10-13T06:37:59","slug":"how-to-install-and-configure-prometheus-on-ubuntu-for-system-monitoring","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-prometheus-on-ubuntu-for-system-monitoring\/","title":{"rendered":"How to Install and Configure Prometheus on Ubuntu for System Monitoring"},"content":{"rendered":"\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-introduction\"><strong>Introduction<\/strong><\/h2>\n\n\n\n<p>Prometheus is a powerful open-source monitoring system designed for collecting metrics from targets, storing them efficiently, and allowing users to query and analyze them in real time. In this blog we&#8217;ll learn how to install Prometheus on Ubuntu server, which will serve as the monitoring server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Step 1: Download and Install Prometheus<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-download-the-latest-stable-prometheus-release\"><strong>Download the latest stable Prometheus release:<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>wget https:\/\/github.com\/prometheus\/prometheus\/releases\/download\/v2.37.6\/prometheus-2.37.6.linux-amd64.tar.gz<\/code><\/pre>\n\n\n\n<p>Replace the version number with the latest one if needed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-extract-the-tarball\"><strong>Extract the tarball:<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>tar xvfz prometheus-2.37.6.linux-amd64.tar.gz<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-remove-the-archive-optional\"><strong>Remove the archive (optional):<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>rm prometheus-2.37.6.linux-amd64.tar.gz<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-create-necessary-directories\"><strong>Create necessary directories:<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mkdir \/etc\/prometheus \/var\/lib\/prometheus<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-move-into-the-extracted-directory\"><strong>Move into the extracted directory:<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>cd prometheus-2.37.6.linux-amd64<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-move-prometheus-binaries-to-the-system-path\"><strong>Move Prometheus binaries to the system path:<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mv prometheus promtool \/usr\/local\/bin\/<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-move-config-and-support-files\"><strong>Move config and support files:<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mv prometheus.yml \/etc\/prometheus\/\nsudo mv consoles\/ console_libraries\/ \/etc\/prometheus\/<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-verify-the-installation\"><strong>Verify the installation:<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>prometheus --version<\/code><\/pre>\n\n\n\n<p>Expected output:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>prometheus, version 2.37.6<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-step-2-configure-prometheus-as-a-systemd-service\"><strong>Step 2: Configure Prometheus as a systemd Service<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-create-a-prometheus-system-user\"><strong>Create a Prometheus system user:<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo useradd -rs \/bin\/false prometheus<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-set-directory-ownership\"><strong>Set directory ownership:<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo chown -R prometheus: \/etc\/prometheus \/var\/lib\/prometheus<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-create-a-systemd-service-file\"><strong>Create a systemd service file:<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vim \/etc\/systemd\/system\/prometheus.service<\/code><\/pre>\n\n\n\n<p>Paste the following configuration:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;Unit]\nDescription=Prometheus\nWants=network-online.target\nAfter=network-online.target\n\n&#91;Service]\nUser=prometheus\nGroup=prometheus\nType=simple\nRestart=on-failure\nRestartSec=5s\nExecStart=\/usr\/local\/bin\/prometheus \\\n  --config.file \/etc\/prometheus\/prometheus.yml \\\n  --storage.tsdb.path \/var\/lib\/prometheus\/ \\\n  --web.console.templates=\/etc\/prometheus\/consoles \\\n--web.console.libraries=\/etc\/prometheus\/console_libraries \\\n  --web.listen-address=0.0.0.0:9090 \\\n  --web.enable-lifecycle \\\n  --log.level=info\n\n&#91;Install]\nWantedBy=multi-user.target<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-reload-systemd-and-enable-the-service\"><strong>Reload systemd and enable the service:<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl daemon-reload\nsudo systemctl enable prometheus<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-start-prometheus\"><strong>Start Prometheus:<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl start prometheus<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-check-status\"><strong>Check status:<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl status prometheus<\/code><\/pre>\n\n\n\n<p>You should see active (running) status.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Step 3: Access the Prometheus Web UI<\/strong><\/h2>\n\n\n\n<p>Open a browser and go to:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>http:&#47;&#47;&lt;your-server-ip&gt;:9090<\/code><\/pre>\n\n\n\n<p>You\u2019ll see the Prometheus web UI. It\u2019s currently monitoring only itself.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Successfully installed and configured Prometheus on <a href=\"https:\/\/ubuntu.com\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">Ubuntu<\/mark><\/a> server, running it as a systemd service. This sets the stage for monitoring other systems by adding them to the prometheus.yml configuration later.<\/p>\n\n\n\n<p>Setting up Prometheus for efficient system monitoring can be challenging without the right expertise. If you\u2019re looking for reliable assistance on how to install Prometheus on Ubuntu or need complete <a href=\"https:\/\/www.skynats.com\/server-management\/\">Server Management services<\/a>, our experienced engineers are here to help<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Prometheus is a powerful open-source monitoring system designed for collecting metrics from targets, storing them efficiently, and allowing users to query and analyze them in real time. In this blog we&#8217;ll learn how to install Prometheus on Ubuntu server, which will serve as the monitoring server. Step 1: Download and Install Prometheus Download the [&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":[302],"class_list":["post-15834","post","type-post","status-publish","format-standard","hentry","category-blog","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>How to Install Prometheus on Ubuntu | Easy Setup Guide<\/title>\n<meta name=\"description\" content=\"Learn how to install Prometheus on Ubuntu for powerful system monitoring. Follow our guide &amp; boost performance\u2014start now!\" \/>\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-and-configure-prometheus-on-ubuntu-for-system-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 Prometheus on Ubuntu for System Monitoring\" \/>\n<meta property=\"og:description\" content=\"Learn how to install Prometheus on Ubuntu for powerful system monitoring. Follow our guide &amp; boost performance\u2014start now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-prometheus-on-ubuntu-for-system-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-10T06:37:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-13T06:37:59+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-and-configure-prometheus-on-ubuntu-for-system-monitoring\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-prometheus-on-ubuntu-for-system-monitoring\\\/\"},\"author\":{\"name\":\"Jishnu V\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/c63611da5e22d216e38d8658e5a605c5\"},\"headline\":\"How to Install and Configure Prometheus on Ubuntu for System Monitoring\",\"datePublished\":\"2025-10-10T06:37:32+00:00\",\"dateModified\":\"2025-10-13T06:37:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-prometheus-on-ubuntu-for-system-monitoring\\\/\"},\"wordCount\":250,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"server management services\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-prometheus-on-ubuntu-for-system-monitoring\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-prometheus-on-ubuntu-for-system-monitoring\\\/\",\"name\":\"How to Install Prometheus on Ubuntu | Easy Setup Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-10-10T06:37:32+00:00\",\"dateModified\":\"2025-10-13T06:37:59+00:00\",\"description\":\"Learn how to install Prometheus on Ubuntu for powerful system monitoring. Follow our guide & boost performance\u2014start now!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-prometheus-on-ubuntu-for-system-monitoring\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-prometheus-on-ubuntu-for-system-monitoring\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-and-configure-prometheus-on-ubuntu-for-system-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 Prometheus on Ubuntu for System 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":"How to Install Prometheus on Ubuntu | Easy Setup Guide","description":"Learn how to install Prometheus on Ubuntu for powerful system monitoring. Follow our guide & boost performance\u2014start now!","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-and-configure-prometheus-on-ubuntu-for-system-monitoring\/","og_locale":"en_US","og_type":"article","og_title":"How to Install and Configure Prometheus on Ubuntu for System Monitoring","og_description":"Learn how to install Prometheus on Ubuntu for powerful system monitoring. Follow our guide & boost performance\u2014start now!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-prometheus-on-ubuntu-for-system-monitoring\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-10-10T06:37:32+00:00","article_modified_time":"2025-10-13T06:37:59+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-and-configure-prometheus-on-ubuntu-for-system-monitoring\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-prometheus-on-ubuntu-for-system-monitoring\/"},"author":{"name":"Jishnu V","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/c63611da5e22d216e38d8658e5a605c5"},"headline":"How to Install and Configure Prometheus on Ubuntu for System Monitoring","datePublished":"2025-10-10T06:37:32+00:00","dateModified":"2025-10-13T06:37:59+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-prometheus-on-ubuntu-for-system-monitoring\/"},"wordCount":250,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["server management services"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-prometheus-on-ubuntu-for-system-monitoring\/","url":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-prometheus-on-ubuntu-for-system-monitoring\/","name":"How to Install Prometheus on Ubuntu | Easy Setup Guide","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-10-10T06:37:32+00:00","dateModified":"2025-10-13T06:37:59+00:00","description":"Learn how to install Prometheus on Ubuntu for powerful system monitoring. Follow our guide & boost performance\u2014start now!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-prometheus-on-ubuntu-for-system-monitoring\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-prometheus-on-ubuntu-for-system-monitoring\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-and-configure-prometheus-on-ubuntu-for-system-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 Prometheus on Ubuntu for System 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\/15834","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=15834"}],"version-history":[{"count":4,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15834\/revisions"}],"predecessor-version":[{"id":15840,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15834\/revisions\/15840"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=15834"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=15834"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=15834"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}