{"id":16578,"date":"2025-11-03T12:54:52","date_gmt":"2025-11-03T07:24:52","guid":{"rendered":"https:\/\/www.skynats.com\/?p=16578"},"modified":"2025-11-03T13:01:11","modified_gmt":"2025-11-03T07:31:11","slug":"how-to-send-logs-to-loki-using-fluent-bit","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-send-logs-to-loki-using-fluent-bit\/","title":{"rendered":"How to Send Logs to Loki Using Fluent Bit"},"content":{"rendered":"\n<p>In this blog,\u00a0we help you guide how to send logs into Loki using Fluent Bit and its official Loki output plugin. Fluent Bit is a lightweight log collector, processor, and forwarder, capable of ingesting logs from applications and delivering them to destinations like Loki. We\u2019ll use the \u201cforward\u201d input plugin to receive logs and then configure Fluent Bit to send them into Loki.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-dependencies\"><strong>Dependencies<\/strong><\/h2>\n\n\n\n<p>Before starting, make sure you have:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Docker<\/li>\n\n\n\n<li>Docker Compose<br>These tools are required to bring up the demo environment.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>$dnf config-manager --add-repo=https:\/\/download.docker.com\/linux\/centos\/docker-ce.repo\n$dnf install docker-ce docker-ce-cli containerd.io\n$systemctl start docker\n$systemctl enable docker\n$docker --version\n$curl -L \"https:\/\/github.com\/docker\/compose\/releases\/download\/1.29.2\/docker-compose-$(uname -s)-$(uname -m)\" -o \/usr\/local\/bin\/docker-compose\n$chmod +x \/usr\/local\/bin\/docker-compose\n$docker-compose --version<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Scenario<\/strong><\/h2>\n\n\n\n<p>For more understanding, we use a sample application (the \u201cCarnivorous Greenhouse\u201d) with micro-services like a user service, plant service, simulation service, websocket service, bug service (that triggers failures randomly), main app and database. All of these services are instrumented with Fluent Bit so they send logs via the Fluent Bit forward protocol.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Step 1: Environment Setup<\/strong><\/h3>\n\n\n\n<p>First, clone the repository that holds our demo application and observability stack:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>git clone -b fluentbit-official  https:\/\/github.com\/grafana\/loki-fundamentals.git<\/code><\/pre>\n\n\n\n<p>Next, spin up the stack using <a href=\"https:\/\/www.docker.com\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">Docker<\/mark><\/a> Compose:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>docker compose -f loki-fundamentals\/docker-compose.yml up -d<\/code><\/pre>\n\n\n\n<p>Running this will bring up containers including Grafana, Loki and Fluent Bit. You can then go to <em>http:\/\/localhost:3000<\/em> to check Grafana is up.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Step 2: Configure Fluent Bit to Send Logs to Loki<\/strong><\/h3>\n\n\n\n<p>Open the <em>fluent-bit.conf<\/em> file in the <em>loki-fundamentals<\/em> directory; this file is where we define inputs, filters, and outputs for Fluent Bit.&nbsp;<\/p>\n\n\n\n<h4 class=\"wp-block-heading has-small-font-size\"><strong>Receiving logs via the forward plugin<\/strong><\/h4>\n\n\n\n<p>Add the following snippet into fluent-bit.conf to allow Fluent Bit to listen for incoming logs:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;INPUT]\n    Name             forward\n    Listen            0.0.0.0\n    Port              24224<\/code><\/pre>\n\n\n\n<p>Here, we\u2019re using the forward input plugin, listening on all IPs (0.0.0.0) at port 24224.<\/p>\n\n\n\n<h4 class=\"wp-block-heading has-small-font-size\"><strong>Exporting logs to Loki using the Loki output plugin<\/strong><\/h4>\n\n\n\n<p>Then add this block to send matching logs to Loki:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;OUTPUT]\n    name   loki\n    match  service.**\n    host   loki\n    port   3100\n    labels agent=fluent-bit\n    label_map_path \/fluent-bit\/etc\/conf\/logmap.json<\/code><\/pre>\n\n\n\n<p>Let\u2019s unpack it:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><em>name<\/em>: Specifies the output plugin (here \u201cloki\u201d)<br><\/li>\n\n\n\n<li><em>match<\/em>: Uses the tag pattern service. ** to select logs<br><\/li>\n\n\n\n<li><em>host &amp; port<\/em>: Direct logs to the Loki service (host = loki, port = 3100)<br><\/li>\n\n\n\n<li><em>labels<\/em>: Adds an extra label (agent=fluent-bit) to each log entry<br><\/li>\n\n\n\n<li><em>label_map_path<\/em>: Provides a mapping file (logmap.json) specifying how log fields map to Loki labels<\/li>\n<\/ul>\n\n\n\n<p>&nbsp;And the <em>logmap.json <\/em>file looks like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"service\": \"service_name\",\n  \"instance_id\": \"instance_id\"\n}<\/code><\/pre>\n\n\n\n<p>This points the log field service to the label service_name, and instance_id to instance_id.<\/p>\n\n\n\n<p>&nbsp;After updating the configuration, restart the Fluent Bit container:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>docker restart loki-fundamentals-fluent-bit-1<\/code><\/pre>\n\n\n\n<p>Then check its logs to confirm the configuration loaded properly:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>docker logs loki-fundamentals-fluent-bit-1<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-3-start-the-application-nbsp\"><strong>Step 3: Start the Application <\/strong>&nbsp;<\/h3>\n\n\n\n<p>Now launch the Carnivorous Greenhouse demo application:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>docker compose -f loki-fundamentals\/greenhouse\/docker-compose-micro.yml up -d --build<\/code><\/pre>\n\n\n\n<p>This sets up all microservices (db, websocket, bug service, user service, plant service, simulation service, main app). You can access the app at <em>http:\/\/localhost:5005<\/em>. Then perform actions (create user, log in, create plants, enable bug mode) so logs get generated. Finally, head to Loki\u2019s Explore view in Grafana: <em>http:\/\/localhost:3000\/a\/grafana-lokiexplore-app\/explore<\/em> to view your logs.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Conclusion<\/strong><\/h3>\n\n\n\n<p>In this blog we demonstrated how to send logs from Fluent Bit into Loki. We configured Fluent Bit to receive logs from the microservices application, set up the Loki output plugin, including labels and mapping, and then launched the application to generate and view logs via Grafana.<\/p>\n\n\n\n<p>If you\u2019re looking to streamline your logging and monitoring setup or need help integrating tools like Fluent Bit and Loki into your infrastructure, the experts at Skynats are here to assist. Our <a href=\"https:\/\/www.skynats.com\/devops-support\/\">DevOps Support Services<\/a> cover everything from configuration and automation to full-scale observability solutions, ensuring your systems run smoothly and efficiently.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog,\u00a0we help you guide how to send logs into Loki using Fluent Bit and its official Loki output plugin. Fluent Bit is a lightweight log collector, processor, and forwarder, capable of ingesting logs from applications and delivering them to destinations like Loki. We\u2019ll use the \u201cforward\u201d input plugin to receive logs and then [&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":[1064,1153],"class_list":["post-16578","post","type-post","status-publish","format-standard","hentry","category-blog","tag-devops-support-services","tag-send-logs-to-loki-using-fluent-bit"],"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>Send Logs to Loki Using Fluent Bit | Simplify Log Management<\/title>\n<meta name=\"description\" content=\"Send Logs to Loki Using Fluent Bit with ease! Learn setup steps &amp; boost observability. Get expert DevOps help 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-send-logs-to-loki-using-fluent-bit\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Send Logs to Loki Using Fluent Bit\" \/>\n<meta property=\"og:description\" content=\"Send Logs to Loki Using Fluent Bit with ease! Learn setup steps &amp; boost observability. Get expert DevOps help today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-send-logs-to-loki-using-fluent-bit\/\" \/>\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-03T07:24:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-03T07:31:11+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\\\/how-to-send-logs-to-loki-using-fluent-bit\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-send-logs-to-loki-using-fluent-bit\\\/\"},\"author\":{\"name\":\"Merin John\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/b80e05405ba11197c3f60db56df40ded\"},\"headline\":\"How to Send Logs to Loki Using Fluent Bit\",\"datePublished\":\"2025-11-03T07:24:52+00:00\",\"dateModified\":\"2025-11-03T07:31:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-send-logs-to-loki-using-fluent-bit\\\/\"},\"wordCount\":560,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"devops support services\",\"Send Logs to Loki Using Fluent Bit\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-send-logs-to-loki-using-fluent-bit\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-send-logs-to-loki-using-fluent-bit\\\/\",\"name\":\"Send Logs to Loki Using Fluent Bit | Simplify Log Management\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-11-03T07:24:52+00:00\",\"dateModified\":\"2025-11-03T07:31:11+00:00\",\"description\":\"Send Logs to Loki Using Fluent Bit with ease! Learn setup steps & boost observability. Get expert DevOps help today!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-send-logs-to-loki-using-fluent-bit\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-send-logs-to-loki-using-fluent-bit\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-send-logs-to-loki-using-fluent-bit\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Send Logs to Loki Using Fluent Bit\"}]},{\"@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":"Send Logs to Loki Using Fluent Bit | Simplify Log Management","description":"Send Logs to Loki Using Fluent Bit with ease! Learn setup steps & boost observability. Get expert DevOps help 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-send-logs-to-loki-using-fluent-bit\/","og_locale":"en_US","og_type":"article","og_title":"How to Send Logs to Loki Using Fluent Bit","og_description":"Send Logs to Loki Using Fluent Bit with ease! Learn setup steps & boost observability. Get expert DevOps help today!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-send-logs-to-loki-using-fluent-bit\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-11-03T07:24:52+00:00","article_modified_time":"2025-11-03T07:31:11+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\/how-to-send-logs-to-loki-using-fluent-bit\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-send-logs-to-loki-using-fluent-bit\/"},"author":{"name":"Merin John","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/b80e05405ba11197c3f60db56df40ded"},"headline":"How to Send Logs to Loki Using Fluent Bit","datePublished":"2025-11-03T07:24:52+00:00","dateModified":"2025-11-03T07:31:11+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-send-logs-to-loki-using-fluent-bit\/"},"wordCount":560,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["devops support services","Send Logs to Loki Using Fluent Bit"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-send-logs-to-loki-using-fluent-bit\/","url":"https:\/\/www.skynats.com\/blog\/how-to-send-logs-to-loki-using-fluent-bit\/","name":"Send Logs to Loki Using Fluent Bit | Simplify Log Management","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-11-03T07:24:52+00:00","dateModified":"2025-11-03T07:31:11+00:00","description":"Send Logs to Loki Using Fluent Bit with ease! Learn setup steps & boost observability. Get expert DevOps help today!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-send-logs-to-loki-using-fluent-bit\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-send-logs-to-loki-using-fluent-bit\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-send-logs-to-loki-using-fluent-bit\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Send Logs to Loki Using Fluent Bit"}]},{"@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\/16578","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=16578"}],"version-history":[{"count":3,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/16578\/revisions"}],"predecessor-version":[{"id":16582,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/16578\/revisions\/16582"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=16578"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=16578"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=16578"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}