{"id":6320,"date":"2021-04-15T12:11:51","date_gmt":"2021-04-15T06:41:51","guid":{"rendered":"https:\/\/www.skynats.com\/?p=6320"},"modified":"2024-12-10T13:53:21","modified_gmt":"2024-12-10T08:23:21","slug":"fixing-event-data-getting-stale-in-nagios","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/fixing-event-data-getting-stale-in-nagios\/","title":{"rendered":"How to fix Event Data getting Stale in Nagios"},"content":{"rendered":"\n<p>Some of our clients using Nagios have reported an issue with event data getting stale in Nagios in certain versions. This bug has since been patched and will be included in future releases. If you are still experiencing this error or notice that <a href=\"https:\/\/www.nagios.org\/\">Nagios<\/a> services are taking longer than usual to start, it may be due to corruption in the MySQL table.<\/p>\n\n\n\n<p>Our technical team support will fix event data getting stale in Nagios under our&nbsp;<a href=\"https:\/\/www.skynats.com\/linux-server-management\/\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"color:#016b99\" class=\"has-inline-color\">server management<\/span><\/a> plan. You can also take assistance from our technical team support 24\/7 will handle similar issues or any sort of installation and migration.<\/p>\n\n\n\n<p><strong>Fixing the event data getting Stale in Nagios.<\/strong><\/p>\n\n\n\n<p>To fix the issue there are two types of steps to be followed.<\/p>\n\n\n\n<p><strong>Repair MySQL database:&nbsp;<\/strong>By running the command in the command line as root user, now you can repair the Nagios and Nagiosql databases.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># \/usr\/local\/nagiosxi\/scripts\/repairmysql.sh nagios\n# \/usr\/local\/nagiosxi\/scripts\/repairmysql.sh nagiosql\n# \/usr\/local\/nagiosxi\/scripts\/repairmysql.sh nagiosxi<\/code><\/pre>\n\n\n\n<p>Alternatively, you can also run the following command for Nagios XI 2014 and further versions:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># cd \/usr\/local\/nagiosxi\/scripts\/\n# .\/repair_databases.sh<\/code><\/pre>\n\n\n\n<p>This repair both databases.<\/p>\n\n\n\n<p>If you still experience an error which has shown below.<\/p>\n\n\n\n<p>SQL: DELETE FROM nagios_logentries WHERE logentry_time &lt; FROM_UNIXTIME(1293570334)<\/p>\n\n\n\n<p>SQL: SQL Error [ndoutils] :&lt;\/b&gt; Table &#8216;.\/nagios\/nagios_logentries&#8217; is marked as crashed and last (automatic?) repair failed CLEANING ndoutils TABLE &#8216;notifications&#8217;&#8230;<\/p>\n\n\n\n<p>You need to run the force repair on the tables by using the following commands.<\/p>\n\n\n\n<p><strong>RHEL 7|CentOS 7|Oracle Linux 7|Debian 9<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># systemctl stop mariadb.service\n# cd \/var\/lib\/mysql\/nagios\n# myisamchk -r -f nagios_&lt;corrupted_table&gt;\n# systemctl start mariadb.service\n# rm -f \/usr\/local\/nagiosxi\/var\/dbmaint.lock\n# php \/usr\/local\/nagiosxi\/cron\/dbmaint.php<\/code><\/pre>\n\n\n\n<p><strong>Debian 8|Ubuntu 16\/18<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># systemctl stop mysql.service\n# cd \/var\/lib\/mysql\/nagios\n# myisamchk -r -f nagios_&lt;corrupted_table&gt;\n# systemctl start mysql.service\n# rm -f \/usr\/local\/nagiosxi\/var\/dbmaint.lock\n# php \/usr\/local\/nagiosxi\/cron\/dbmaint.php\n<\/code><\/pre>\n\n\n\n<p><strong>Repair MySQL tables<\/strong><\/p>\n\n\n\n<p>Stop following the services.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># service nagios stop\n# service ndo2db stop\n# service mysqld stop<\/code><\/pre>\n\n\n\n<p>Later, run the following repair script for MySQL tables.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># \/usr\/local\/nagiosxi\/scripts\/repairmysql.sh nagios<\/code><\/pre>\n\n\n\n<p>Later copy and unzip the dbmaint file to<\/p>\n\n\n\n<p>\/usr\/local\/nagiosxi\/cron\/. This will overwrite the previous version.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># cd \/tmp\n# wget \nhttp:&#47;&#47;assets.nagios.com\/downloads\/nagiosxi\/patches\/dbmaint.zip\n# unzip dbmaint.zip\n# chmod +x dbmaint.php\n# cp dbmaint.php \/usr\/local\/nagiosxi\/cron<\/code><\/pre>\n\n\n\n<p>Run the command<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># service mysqld start\n# rm -f \/usr\/local\/nagiosxi\/var\/dbmaint.lock\n# \/usr\/local\/nagiosxi\/cron\/dbmaint.php<\/code><\/pre>\n\n\n\n<p>Start running the services after the script.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># service ndo2db start\n# service Nagios start<\/code><\/pre>\n\n\n\n<p>However, if we see any error output from this script, similar to this one:<\/p>\n\n\n\n<p>SQL: DELETE FROM nagios_logentries WHERE logentry_time &lt; FROM_UNIXTIME(1293570334)<\/p>\n\n\n\n<p>SQL: SQL Error [ndoutils] :&lt;\/b&gt; Table &#8216;.\/nagios\/nagios_logentries&#8217; is marked as crashed and last (automatic?) repair failedCLEANING ndoutils TABLE &#8216;notifications&#8217;&#8230;<\/p>\n\n\n\n<p>Run the following force repair on the tables<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># service mysqld stop\n# cd \/var\/lib\/mysql\/nagios\n# myisamchk -r -f nagios_&lt;corrupted_table&gt;\n# service mysqld start\n# rm -f \/usr\/local\/nagiosxi\/var\/dbmaint.lock\n\/usr\/local\/nagiosxi\/cron\/dbmaint.php<\/code><\/pre>\n\n\n\n<p><strong>Conclusion<\/strong><\/p>\n\n\n\n<p>In brief, you will get an apparent view of the cause for event data getting stale along with the stale in Nagios. You can also take our <a href=\"https:\/\/www.skynats.com\/contact-us\/\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"color:#046a96\" class=\"has-inline-color\">technical team support<\/span><\/a> for any assistance.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Some of our clients using Nagios have reported an issue with event data getting stale in Nagios in certain versions. This bug has since been patched and will be included in future releases. If you are still experiencing this error or notice that Nagios services are taking longer than usual to start, it may be [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5,208,277,239,257,309,230,229,68,223,212],"tags":[317,316,508,263,46,310,233,22,236],"class_list":["post-6320","post","type-post","status-publish","format-standard","hentry","category-blog","category-centos-7","category-centos-8","category-linux","category-mysql","category-nagios","category-rhel-7","category-rhel8","category-server-management","category-ubuntu-18-04","category-ubuntu-20-04","tag-centos","tag-debian","tag-event-data-is-stale","tag-linux-server","tag-mysql-server","tag-nagios","tag-rhel-8-7","tag-server-support","tag-ubuntu"],"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>How to fix Event Data getting Stale in Nagios<\/title>\n<meta name=\"description\" content=\"Learn how to fix Event Data getting Stale in Nagios with simple steps. Resolve issues fast\u2014read our guide 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\/fixing-event-data-getting-stale-in-nagios\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to fix Event Data getting Stale in Nagios\" \/>\n<meta property=\"og:description\" content=\"Learn how to fix Event Data getting Stale in Nagios with simple steps. Resolve issues fast\u2014read our guide now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/fixing-event-data-getting-stale-in-nagios\/\" \/>\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=\"2021-04-15T06:41:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-10T08:23:21+00:00\" \/>\n<meta name=\"author\" content=\"Nabeela\" \/>\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=\"Nabeela\" \/>\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\\\/fixing-event-data-getting-stale-in-nagios\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/fixing-event-data-getting-stale-in-nagios\\\/\"},\"author\":{\"name\":\"Nabeela\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/2968118a72bea0868796abf1237ab3e0\"},\"headline\":\"How to fix Event Data getting Stale in Nagios\",\"datePublished\":\"2021-04-15T06:41:51+00:00\",\"dateModified\":\"2024-12-10T08:23:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/fixing-event-data-getting-stale-in-nagios\\\/\"},\"wordCount\":374,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"centos\",\"debian\",\"event data is stale\",\"linux server&#039;\",\"mysql server\",\"nagios\",\"RHEL 8\\\/7\",\"server support\",\"Ubuntu\"],\"articleSection\":[\"Blog\",\"CentOs 7\",\"CentOS 8\",\"Linux\",\"MySQL\",\"Nagios\",\"RHEL 7\",\"RHEL8\",\"server management\",\"Ubuntu 18.04\",\"Ubuntu 20.04\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/fixing-event-data-getting-stale-in-nagios\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/fixing-event-data-getting-stale-in-nagios\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/fixing-event-data-getting-stale-in-nagios\\\/\",\"name\":\"How to fix Event Data getting Stale in Nagios\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2021-04-15T06:41:51+00:00\",\"dateModified\":\"2024-12-10T08:23:21+00:00\",\"description\":\"Learn how to fix Event Data getting Stale in Nagios with simple steps. Resolve issues fast\u2014read our guide now!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/fixing-event-data-getting-stale-in-nagios\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/fixing-event-data-getting-stale-in-nagios\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/fixing-event-data-getting-stale-in-nagios\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to fix Event Data getting Stale in Nagios\"}]},{\"@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\\\/2968118a72bea0868796abf1237ab3e0\",\"name\":\"Nabeela\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g\",\"caption\":\"Nabeela\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to fix Event Data getting Stale in Nagios","description":"Learn how to fix Event Data getting Stale in Nagios with simple steps. Resolve issues fast\u2014read our guide 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\/fixing-event-data-getting-stale-in-nagios\/","og_locale":"en_US","og_type":"article","og_title":"How to fix Event Data getting Stale in Nagios","og_description":"Learn how to fix Event Data getting Stale in Nagios with simple steps. Resolve issues fast\u2014read our guide now!","og_url":"https:\/\/www.skynats.com\/blog\/fixing-event-data-getting-stale-in-nagios\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2021-04-15T06:41:51+00:00","article_modified_time":"2024-12-10T08:23:21+00:00","author":"Nabeela","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Nabeela","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/fixing-event-data-getting-stale-in-nagios\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/fixing-event-data-getting-stale-in-nagios\/"},"author":{"name":"Nabeela","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/2968118a72bea0868796abf1237ab3e0"},"headline":"How to fix Event Data getting Stale in Nagios","datePublished":"2021-04-15T06:41:51+00:00","dateModified":"2024-12-10T08:23:21+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/fixing-event-data-getting-stale-in-nagios\/"},"wordCount":374,"commentCount":0,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["centos","debian","event data is stale","linux server&#039;","mysql server","nagios","RHEL 8\/7","server support","Ubuntu"],"articleSection":["Blog","CentOs 7","CentOS 8","Linux","MySQL","Nagios","RHEL 7","RHEL8","server management","Ubuntu 18.04","Ubuntu 20.04"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.skynats.com\/blog\/fixing-event-data-getting-stale-in-nagios\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/fixing-event-data-getting-stale-in-nagios\/","url":"https:\/\/www.skynats.com\/blog\/fixing-event-data-getting-stale-in-nagios\/","name":"How to fix Event Data getting Stale in Nagios","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2021-04-15T06:41:51+00:00","dateModified":"2024-12-10T08:23:21+00:00","description":"Learn how to fix Event Data getting Stale in Nagios with simple steps. Resolve issues fast\u2014read our guide now!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/fixing-event-data-getting-stale-in-nagios\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/fixing-event-data-getting-stale-in-nagios\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/fixing-event-data-getting-stale-in-nagios\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to fix Event Data getting Stale in Nagios"}]},{"@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\/2968118a72bea0868796abf1237ab3e0","name":"Nabeela","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g","caption":"Nabeela"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/6320","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\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=6320"}],"version-history":[{"count":0,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/6320\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=6320"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=6320"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=6320"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}