{"id":2883,"date":"2019-05-08T23:43:38","date_gmt":"2019-05-08T20:43:38","guid":{"rendered":"https:\/\/kifarunix.com\/?p=2883"},"modified":"2020-05-31T09:30:31","modified_gmt":"2020-05-31T06:30:31","slug":"install-and-setup-tig-stack-on-fedora-30","status":"publish","type":"post","link":"https:\/\/kifarunix.com\/install-and-setup-tig-stack-on-fedora-30\/","title":{"rendered":"Install and Setup TIG Stack on Fedora 30"},"content":{"rendered":"\n<p>In this guide, we are going to learn how to install and setup TIG stack on Fedora 30 for monitoring system metrics such as memory, disk, logged in users, system load, swap usage, system uptime, system processes. TIG stack is a group of powerful open-source monitoring tools, Telegraf, InfluxDB and Grafana where;<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a rel=\"noreferrer noopener\" aria-label=\"Telegraf (opens in a new tab)\" href=\"https:\/\/www.influxdata.com\/time-series-platform\/telegraf\/\" target=\"_blank\">Telegraf<\/a> is an open-source server agent for collecting and sending metrics and events from databases, systems, and IoT sensors.<\/li><li><a rel=\"noreferrer noopener\" aria-label=\"InfluxDB (opens in a new tab)\" href=\"https:\/\/www.influxdata.com\/\" target=\"_blank\">InfluxDB<\/a> is an open-source time series database and provides datastore for metrics, events, and real-time analytics.<\/li><li><a rel=\"noreferrer noopener\" aria-label=\"Grafana (opens in a new tab)\" href=\"https:\/\/grafana.com\/docs\/\" target=\"_blank\">Grafana<\/a> is a data visualization and monitoring tool and supports time series datastores such as Graphite, InfluxDB, Prometheus, Elasticsearch.<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Install and Setup TIG Stack on Fedora 30<\/h2>\n\n\n\n<p>In order to setup TIG stack on Fedora 30, you need to install and configure each component of the stack. We have already covered the installation of Telegraf and InfluxDB  on Fedora 30 in our previous guides. See the links below for the installation procedure.<\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/install-telegraf-on-fedora-30-fedora-29\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">Install Telegraf on Fedora 30\/Fedora 29<\/a><\/p>\n\n\n\n<p><a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/install-influxdb-on-fedora-30-fedora-29\/\" target=\"_blank\">Install InfluxDB on Fedora 30\/Fedora 29<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Install Grafana on Fedora 30<\/h2>\n\n\n\n<p>Grafana can be installed on Fedora 30 using the RPM binary package or directly via Grafana repository using DNF package manager. To install using an RPM binary package, <\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>dnf install https:\/\/dl.grafana.com\/oss\/release\/grafana-5.4.2-1.x86_64.rpm<\/code><\/pre>\n\n\n\n<p>To install Grafana from Grafana repository, you need to create the repository as shown below;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cat > \/etc\/yum.repos.d\/grafana.repo &lt;&lt; EOF\n&#91;grafana]\nname=grafana\nbaseurl=https:\/\/packages.grafana.com\/oss\/rpm\nrepo_gpgcheck=1\nenabled=1\ngpgcheck=1\ngpgkey=https:\/\/packages.grafana.com\/gpg.key\nsslverify=1\nsslcacert=\/etc\/pki\/tls\/certs\/ca-bundle.crt\nEOF<\/code><\/pre>\n\n\n\n<p>Then install Grafana via the <code>dnf<\/code>&nbsp;command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>dnf install grafana<\/code><\/pre>\n\n\n\n<p>Start the Grafana server and enable it to run on boot.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>systemctl status grafana-server<br>systemctl enable grafana-server<\/code><\/pre>\n\n\n\n<p>Open Grafana port on firewalld to allow external access.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>firewall-cmd --add-port=3000\/tcp --permanent<br>firewall-cmd --reload<\/code><\/pre>\n\n\n\n<p>You can now access Grafana via the address <strong>http:\/\/server-IP:3000<\/strong>. The default credentials for username and password are admin. Reset the password when prompted and proceed to Grafana dashboard.<\/p>\n\n\n\n<p>Learn how to Install Grafana on Fedora 29, Debian 9, Ubuntu 18.04 by following the links below;<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/install-grafana-monitoring-tool-on-fedora-29\/\" target=\"_blank\">Install Grafana Monitoring Tool on Fedora 29<\/a><\/li><li><a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/install-grafana-metrics-monitoring-tool-on-debian-9\/\" target=\"_blank\">Install Grafana Metrics Monitoring Tool on Debian 9<\/a><\/li><li><a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/install-grafana-data-visualization-tool-on-ubuntu-18-04\/\" target=\"_blank\">Install Grafana Data Visualization Tool on Ubuntu 18.04<\/a><\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Configure TIG Stack on Fedora 30<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"step-create-influxdb-database-and-user\">Create InfluxDB Database and User<\/h3>\n\n\n\n<p>Once you have installed InfluxDB, you need to create a database that will used to store the time series metrics collected by the Telegraf agent. Hence, connect to InfluxDB and create a database and databaseas shown below;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>influx<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>Connected to http:\/\/localhost:8086 version 1.7.6\nInfluxDB shell version: 1.7.6\nEnter an InfluxQL query\n> create database telegraf\n> use telegraf\nUsing database telegraf\n> create user telegraf with password 'StrongP@SS'<\/code><\/pre>\n\n\n\n<p>You can verify this by running the commands below;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>> show databases\nname: databases\nname\n----\n_internal\ntelegraf\n> show users\nuser     admin\n----     -----\ntelegraf false\n><\/code><\/pre>\n\n\n\n<p>Test connection to the database using the username and password created.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>influx -username 'telegraf' -password 'StrongP@SS' -database telegraf<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>Connected to http:\/\/localhost:8086 version 1.7.6\nInfluxDB shell version: 1.7.6\nEnter an InfluxQL query\n> <\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Configuring Telegraf<\/h3>\n\n\n\n<p>Once the installation of Telegraf is done, proceed with configuration. Telegraf is plugin-driven with 4 distinct plugin types:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/github.com\/influxdata\/telegraf#input-plugins\" target=\"_blank\">Input Plugins<\/a> collect metrics from the system, services<\/li><li><a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/github.com\/influxdata\/telegraf#processor-plugins\" target=\"_blank\">Processor Plugins<\/a>&nbsp;transform, decorate, and\/or filter metrics<\/li><li><a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/github.com\/influxdata\/telegraf#aggregator-plugins\" target=\"_blank\">Aggregator Plugins<\/a>&nbsp;create aggregate metrics (e.g. mean, min, max, quantiles, etc.)<\/li><li><a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/github.com\/influxdata\/telegraf#output-plugins\" target=\"_blank\">Output Plugins<\/a> write metrics to various destinations such as InfluxDB for our case.<\/li><\/ul>\n\n\n\n<p>Well, in this guide, we are going to configure TIG stack to monitor system memory usage, system processes, disk usage, system load, system uptime and logged in users.<\/p>\n\n\n\n<p>The default configuration file for Telegraf is <strong>\/etc\/telegraf\/telegraf.conf<\/strong>. Before we can continue, we will make a backup of the default configuration.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>mv \/etc\/telegraf\/telegraf.conf \/etc\/telegraf\/telegraf.conf.bak<\/code><\/pre>\n\n\n\n<p>Next, create a new configuration with your specific metrics. To generate a configuration file, Telegraf provides a command line tool, <strong>telegraf<\/strong>, that can be used to define specific input plugins, output plugins.<\/p>\n\n\n\n<p>For example to to generate a configuration file with input plugins such as system memory usage, cpu, swap, load, logged in users, processes and define output as InfluxDB, run the command below;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>telegraf config -input-filter cpu:mem:swap:system:processes -output-filter influxdb &gt; \/etc\/telegraf\/telegraf.conf<\/code><\/pre>\n\n\n\n<p>Next, edit the configuration file to define the URL for InfluxDB, the metrics database, the user and password to connect to metrics database such that your Telegraf configuration file looks like below without comment lines.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;global_tags]\n&#91;agent]\n  interval = \"10s\"\n  round_interval = true\n  metric_batch_size = 1000\n  metric_buffer_limit = 10000\n  collection_jitter = \"0s\"\n  flush_interval = \"10s\"\n  flush_jitter = \"0s\"\n  precision = \"\"\n  debug = false\n  quiet = false\n  logfile = \"\"\n  hostname = \"\"\n  omit_hostname = false\n&#91;&#91;outputs.influxdb]]\n  urls = &#91;\"http:\/\/127.0.0.1:8086\"]\n  database = \"telegraf\"\n  username = \"telegraf\"\n  password = \"StrongP@SS\"\n&#91;&#91;inputs.cpu]]\n  percpu = true\n  totalcpu = true\n  collect_cpu_time = false\n  report_active = false\n&#91;&#91;inputs.disk]]\n  ignore_fs = &#91;\"tmpfs\", \"devtmpfs\", \"devfs\", \"overlay\", \"aufs\", \"squashfs\"]\n&#91;&#91;inputs.diskio]]\n&#91;&#91;inputs.kernel]]\n&#91;&#91;inputs.mem]]\n&#91;&#91;inputs.processes]]\n&#91;&#91;inputs.swap]]\n&#91;&#91;inputs.system]]<\/code><\/pre>\n\n\n\n<p>To learn more options used, check <a rel=\"noreferrer noopener\" aria-label=\"Telegraf administration configuration (opens in a new tab)\" href=\"https:\/\/docs.influxdata.com\/telegraf\/v1.10\/administration\/configuration\/\" target=\"_blank\">Telegraf administration configuration<\/a> page.<\/p>\n\n\n\n<p>Once you are done with Telegraf configuration, restart it.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>systemctl restart telegraf<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Telegraf configuration tests<\/h3>\n\n\n\n<p>Telegraf enables you to run configuration tests outputing metrics to stdout. To run a general test for all metrics defined;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>telegraf --config telegraf.conf --test<\/code><\/pre>\n\n\n\n<p>To run configuration test for a specific metric for example, system input plugin;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>telegraf -test -config \/etc\/telegraf\/telegraf.conf --input-filter system<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>2019-05-08T03:01:29Z I! Starting Telegraf 1.10.3\n> system,host=fedora30.example.com load1=0,load15=0,load5=0,n_cpus=1i,n_users=2i 1557284489000000000\n> system,host=fedora30.example.com uptime=33495i 1557284489000000000\n> system,host=fedora30.example.com uptime_format=\" 9:18\" 1557284489000000000<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Configure Grafana<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">Add Data source<\/h4>\n\n\n\n<p>Login to Grafana dashboard as admin with your new password.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/grafana_dashboard.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1353\" height=\"643\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/grafana_dashboard.png\" alt=\"install and setup TIG stack  on Fedora 30\" class=\"wp-image-2884\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/grafana_dashboard.png 1353w, https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/grafana_dashboard-768x365.png 768w\" sizes=\"(max-width: 1353px) 100vw, 1353px\" \/><\/a><\/figure>\n\n\n\n<p>Next, you need to add the data source. In this case, our data source is InfluxDB, hence click on <strong>Add data source<\/strong> and select InfluxDB.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/influxdb-ds.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1316\" height=\"594\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/influxdb-ds.png\" alt=\"grafana influxdb datasource\" class=\"wp-image-2885\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/influxdb-ds.png 1316w, https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/influxdb-ds-768x347.png 768w\" sizes=\"(max-width: 1316px) 100vw, 1316px\" \/><\/a><\/figure>\n\n\n\n<p>Set the Name and URL of the InfuxDB data source (Leave it as http:\/\/localhost:8086 for local connection).<\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/influxdb-ds-name-url.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1297\" height=\"583\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/influxdb-ds-name-url.png\" alt=\"InfluxDB data source name and URL\" class=\"wp-image-2886\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/influxdb-ds-name-url.png 1297w, https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/influxdb-ds-name-url-768x345.png 768w\" sizes=\"(max-width: 1297px) 100vw, 1297px\" \/><\/a><\/figure>\n\n\n\n<p>Scroll down and set the InfluxDB database connection details defined above.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/influxdb-con-details.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1298\" height=\"589\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/influxdb-con-details.png\" alt=\"Set influxdb database credentials\" class=\"wp-image-2887\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/influxdb-con-details.png 1298w, https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/influxdb-con-details-768x348.png 768w\" sizes=\"(max-width: 1298px) 100vw, 1298px\" \/><\/a><\/figure>\n\n\n\n<p>Next, click on <strong>Save &amp; Test<\/strong> to test the connection to the InfluxDB database.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/test-ds-connection.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1352\" height=\"640\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/test-ds-connection.png\" alt=\"test connection to InfluxDB database\" class=\"wp-image-2888\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/test-ds-connection.png 1352w, https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/test-ds-connection-768x364.png 768w\" sizes=\"(max-width: 1352px) 100vw, 1352px\" \/><\/a><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">Setup Grafana Dashboard<\/h4>\n\n\n\n<p>You can either create your own dashboards or import an already customized dashboard from <a rel=\"noreferrer noopener\" aria-label=\"Grafana community (opens in a new tab)\" href=\"https:\/\/grafana.com\/dashboards\" target=\"_blank\">Grafana community<\/a>. In this guide, we are going to download a dashboard that a user jmutai has <a rel=\"noreferrer noopener\" aria-label=\"customized (opens in a new tab)\" href=\"https:\/\/grafana.com\/dashboards\/5955\" target=\"_blank\">customized<\/a>. All credit goes back to him.<\/p>\n\n\n\n<p>Hence, click the plus (<strong>+<\/strong>) on the left panel and select import. After that, copy the ID of the dashboard and paste it as shown in the screenshot below.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1225\" height=\"575\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/dashboard-id.png\" alt=\"Grafana Dashboard ID\" class=\"wp-image-2889\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/dashboard-id.png 1225w, https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/dashboard-id-768x360.png 768w\" sizes=\"(max-width: 1225px) 100vw, 1225px\" \/><\/figure>\n\n\n\n<p>After a few, location of the Grafana dashboard to import is updated. Next, select the InfluxDB data source and import the dashboard.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/import-dashboard.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1207\" height=\"637\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/import-dashboard.png\" alt=\"import grafana dashboard\" class=\"wp-image-2890\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/import-dashboard.png 1207w, https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/import-dashboard-768x405.png 768w\" sizes=\"(max-width: 1207px) 100vw, 1207px\" \/><\/a><\/figure>\n\n\n\n<p>Immediately your dashboard is imported, you should be able to see your dashboards.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/grafana-metrics-dashboard.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1337\" height=\"649\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/grafana_metrics_dashboard.png\" alt=\"Grafana Metrics Dashboard 5595\" class=\"wp-image-2936\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/grafana_metrics_dashboard.png 1337w, https:\/\/kifarunix.com\/wp-content\/uploads\/2019\/05\/grafana_metrics_dashboard-768x373.png 768w\" sizes=\"(max-width: 1337px) 100vw, 1337px\" \/><\/a><\/figure>\n\n\n\n<p>You have successfully installed and setup TIG Stack on Fedora 30 for collecting and monitoring system metrics. Feel free to explore this awesome monitoring tools.<\/p>\n\n\n\n<p>You can also check how to install and setup TIG stack on Ubuntu 20.04 by following the link below;<\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/install-and-setup-tig-stack-on-ubuntu-20-04\/\" target=\"_blank\" rel=\"noreferrer noopener\">Install and Setup TIG Stack on Ubuntu 20.04<\/a><\/p>\n\n\n\n<p>Want to also try Elastic stack on Ubuntu 18.04? See our guide by following the link below.<\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/install-elastic-stack-7-on-ubuntu-18-04-debian-9-8\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">Install Elastic Stack 7 on Ubuntu 18.04\/Debian 9.8<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this guide, we are going to learn how to install and setup TIG stack on Fedora 30 for monitoring system metrics such as memory,<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"rank_math_lock_modified_date":false,"footnotes":""},"categories":[72,939],"tags":[302,937,935],"class_list":["post-2883","post","type-post","status-publish","format-standard","hentry","category-monitoring","category-tig-stack","tag-grafana","tag-influxdb","tag-telegraf","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-50"],"_links":{"self":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/2883"}],"collection":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/comments?post=2883"}],"version-history":[{"count":4,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/2883\/revisions"}],"predecessor-version":[{"id":5969,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/2883\/revisions\/5969"}],"wp:attachment":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/media?parent=2883"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/categories?post=2883"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/tags?post=2883"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}