{"id":7685,"date":"2024-07-03T19:35:12","date_gmt":"2024-07-04T02:35:12","guid":{"rendered":"https:\/\/ioflood.com\/blog\/?p=7685"},"modified":"2024-07-03T19:35:12","modified_gmt":"2024-07-04T02:35:12","slug":"linux-kibana-install","status":"publish","type":"post","link":"https:\/\/ioflood.com\/blog\/linux-kibana-install\/","title":{"rendered":"Kibana Install Help | Stable Setup Methods for Linux"},"content":{"rendered":"<div class=\"wp-block-image\">\n<figure class=\"alignright size-full is-resized\"><img decoding=\"async\" src=\"https:\/\/ioflood.com\/blog\/wp-content\/uploads\/2024\/07\/Coders-listing-Kibana-install-steps-whilst-providing-elasticsearch-tutorial-achieving-full-elk-stack-300x300.jpg\" alt=\"Coders listing Kibana install steps whilst providing elasticsearch tutorial achieving full elk stack\" width=\"300\" height=\"300\" title=\"\"><\/figure>\n<\/div>\n<p>While implementing visual solutions for data monitoring and analytics at <a href=\"https:\/\/ioflood.com\/\">IOFLOOD<\/a>, we looked to Kibana for its robust integration with Elasticsearch. We&#8217;ve gathered our most efficient installation steps methods and some examples to aid our customers looking to deploy a Kibana installation on their <a href=\"https:\/\/ioflood.com\/phoenix-dedicated-servers.php\">dedicated server hosting<\/a> services for dynamic data analysis tools.<\/p>\n<p><strong>In this Kibana guide we will navigate the installation process for Linux systems.<\/strong> We are going to provide you with instructions for Debian and Ubuntu using APT package management, and CentOS and AlmaLinux using YUM package manager. We&#8217;ll delve into more advanced topics like compiling Kibana from source, and installing a specific version. Finally, we will guide you on how to use Kibana in Linux.<\/p>\n<p>So, let&#8217;s get started with the step-by-step Kibana installation on your Linux system!<\/p>\n<h2>TL;DR: How can I Install Kibana on Linux?<\/h2>\n<blockquote><p>\n  Kibana can be installed on Linux using the package manager. For Debian-based distributions like Ubuntu, use the command <code>sudo apt-get install kibana<\/code>. For RPM-based distributions like CentOS, use <code>sudo yum install kibana<\/code>.\n<\/p><\/blockquote>\n<pre><code class=\"language-bash line-numbers\"># For Debian-based distributions\nsudo apt-get install kibana\n\n# For RPM-based distributions\nsudo yum install kibana\n\n# Output:\n# Reading package lists... Done\n# Building dependency tree\n# Reading state information... Done\n# kibana is already the newest version (7.14.1).\n# 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.\n<\/code><\/pre>\n<p>This is a basic way to install Kibana on Linux, but there&#8217;s much more to learn about installing Kibana and its usage. Continue reading for more detailed information, advanced installation options, and troubleshooting tips.<\/p>\n<h2>Starting Off: Linux Kibana Install<\/h2>\n<p>Kibana is an open-source data visualization and exploration tool used for log and time-series analytics, application monitoring, and operational intelligence use cases. It offers powerful and easy-to-use features such as histograms, line graphs, pie charts, heat maps, and built-in geospatial support. Also, it provides tight integration with Elasticsearch, a popular analytics and search engine.<\/p>\n<h3>Install Kibana with APT<\/h3>\n<p>For Debian-based distributions like Ubuntu, you can use the APT package manager to install Kibana. Here&#8217;s how you can do it:<\/p>\n<pre><code class=\"language-bash line-numbers\"># Update your package lists\nsudo apt-get update\n\n# Install Kibana\nsudo apt-get install kibana\n\n# Output:\n# Reading package lists... Done\n# Building dependency tree\n# Reading state information... Done\n# kibana is already the newest version (7.14.1).\n# 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.\n<\/code><\/pre>\n<p>In the above code, the first command updates your package lists. The second command installs Kibana. The output shows that Kibana is successfully installed.<\/p>\n<h3>Install Kibana with YUM<\/h3>\n<p>For RPM-based distributions like CentOS, you can use the YUM package manager to install Kibana. Here&#8217;s how:<\/p>\n<pre><code class=\"language-bash line-numbers\"># Update your package lists\nsudo yum check-update\n\n# Install Kibana\nsudo yum install kibana\n\n# Output:\n# Loaded plugins: fastestmirror, ovl\n# Loading mirror speeds from cached hostfile\n# Package kibana-7.14.1-1.x86_64 already installed and latest version\n# Nothing to do\n<\/code><\/pre>\n<p>In the above code, the first command checks for updates. The second command installs Kibana. The output shows that Kibana is successfully installed.<\/p>\n<h2>Install Kibana from Source<\/h2>\n<p>Sometimes, you might want to install Kibana from source. This can be useful if you want to modify the source code or try out the latest features before they&#8217;re released officially. Here&#8217;s how you can do it:<\/p>\n<pre><code class=\"language-bash line-numbers\"># Clone the Kibana repository\n\ngit clone https:\/\/github.com\/elastic\/kibana.git\n\n# Navigate to the Kibana directory\n\ncd kibana\n\n# Install dependencies\n\nyarn\n\n# Start the server\n\nyarn start\n\n# Output:\n# Server running at http:\/\/localhost:5601\n<\/code><\/pre>\n<p>The above commands clone the Kibana repository, navigate into the directory, install the necessary dependencies, and start the server.<\/p>\n<h2>Installing Specific Versions of Kibana<\/h2>\n<p>Different versions of Kibana offer various features, bug fixes, and improvements. You might want to install a specific version to access certain features or ensure compatibility with other software. Here&#8217;s how you can do it using APT and YUM package managers, and from source.<\/p>\n<h3>Specific Version Kibana Install with APT<\/h3>\n<pre><code class=\"language-bash line-numbers\"># Install a specific version of Kibana\n\nsudo apt-get install kibana=7.14.1\n\n# Output:\n# Reading package lists... Done\n# Building dependency tree\n# Reading state information... Done\n# kibana is already the newest version (7.14.1).\n# 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.\n<\/code><\/pre>\n<h3>Specific Version Kibana Install with YUM<\/h3>\n<pre><code class=\"language-bash line-numbers\"># Install a specific version of Kibana\n\nsudo yum install kibana-7.14.1\n\n# Output:\n# Loaded plugins: fastestmirror, ovl\n# Loading mirror speeds from cached hostfile\n# Package kibana-7.14.1-1.x86_64 already installed and latest version\n# Nothing to do\n<\/code><\/pre>\n<h3>Specific Version Kibana Install from Source<\/h3>\n<pre><code class=\"language-bash line-numbers\"># Clone the Kibana repository\n\ngit clone https:\/\/github.com\/elastic\/kibana.git\n\n# Navigate to the Kibana directory\n\ncd kibana\n\n# Checkout to a specific version\n\ngit checkout v7.14.1\n\n# Install dependencies\n\nyarn\n\n# Start the server\n\nyarn start\n\n# Output:\n# Server running at http:\/\/localhost:5601\n<\/code><\/pre>\n<h2>Using and Verifying New Kibana Install<\/h2>\n<p>After you&#8217;ve installed Kibana, you can access it by navigating to <code>http:\/\/localhost:5601<\/code> in your web browser. You should see the Kibana home page, indicating that the installation was successful. Here&#8217;s a simple example of how to use Kibana to verify that it&#8217;s installed correctly:<\/p>\n<pre><code class=\"language-bash line-numbers\"># Verify Kibana installation\n\ncurl http:\/\/localhost:5601\n\n# Output:\n# Kibana is up and running\n<\/code><\/pre>\n<p>In the above command, <code>curl<\/code> sends a request to the Kibana server running on <code>localhost<\/code> at port <code>5601<\/code>. The output indicates that Kibana is up and running.<\/p>\n<h2>Kibana Setup in Docker<\/h2>\n<p>Docker is a popular platform that simplifies software deployment using containerization. It can also be used to install Kibana, which can be beneficial if you want to maintain the same environment across different systems or if you want to avoid potential conflicts with other software on your system.<\/p>\n<p>Here&#8217;s how you can install Kibana using Docker:<\/p>\n<pre><code class=\"language-bash line-numbers\"># Pull the Kibana Docker image\n\ndocker pull docker.elastic.co\/kibana\/kibana:7.14.1\n\n# Run Kibana\n\ndocker run --name kibana -p 5601:5601 -d docker.elastic.co\/kibana\/kibana:7.14.1\n\n# Output:\n# Unable to find image 'docker.elastic.co\/kibana\/kibana:7.14.1' locally\n# 7.14.1: Pulling from kibana\/kibana\n# Digest: sha256:2a8fb5757e4b3a6430bd1385e2e4e71a2c11b36ae142c31a2a4a233ed13f65ec\n# Status: Downloaded newer image for docker.elastic.co\/kibana\/kibana:7.14.1\n# 2aeccbfa3643e2b2910f5c8e57a6aa348f4231008d982b3a36dc2b3884d1d2d7\n<\/code><\/pre>\n<p>The above commands pull the Kibana Docker image from the Docker repository and run it in a Docker container. The <code>-p<\/code> flag maps port <code>5601<\/code> of the container to port <code>5601<\/code> of the host machine, allowing you to access Kibana at <code>http:\/\/localhost:5601<\/code>.<\/p>\n<h3>Advantages of Docker Kibana Setup<\/h3>\n<ul>\n<li><strong>Consistency<\/strong>: Docker ensures that the software runs the same way, regardless of the environment.<\/li>\n<li><strong>Isolation<\/strong>: Docker isolates the software from the rest of the system, preventing potential conflicts.<\/li>\n<li><strong>Simplicity<\/strong>: Docker simplifies the installation and deployment of software.<\/li>\n<\/ul>\n<h3>Disadvantages of Using Docker<\/h3>\n<ul>\n<li><strong>Learning Curve<\/strong>: Docker can be complex and requires time to learn.<\/li>\n<li><strong>Overhead<\/strong>: Docker introduces some overhead because it runs an entire operating system for each container.<\/li>\n<\/ul>\n<h3>Recommendations<\/h3>\n<p>If you&#8217;re an experienced Linux user and you&#8217;re familiar with Docker, using Docker to install Kibana can be a good option. It provides consistency, isolation, and simplicity, but it also requires more resources and knowledge compared to traditional installation methods.<\/p>\n<h2>Troubleshooting Kibana Install Issues<\/h2>\n<p>While installing Kibana on Linux, you might encounter some issues. Here are a few common problems and their solutions.<\/p>\n<h3>Kibana Fails to Start<\/h3>\n<p>Sometimes, Kibana might fail to start due to various reasons such as incorrect configuration, port conflicts, or insufficient system resources. You can check the Kibana logs for any error messages.<\/p>\n<pre><code class=\"language-bash line-numbers\"># Check Kibana logs\n\nsudo journalctl -u kibana\n\n# Output:\n# -- Logs begin at Mon 2021-09-13 14:12:10 PDT, end at Mon 2021-09-13 15:03:01 PDT. --\n# Sep 13 15:03:01 localhost.localdomain kibana[1234]: {\"type\":\"log\",\"@timestamp\":\"2021-09-13T22:03:01Z\",\"tags\":[\"info\",\"plugins-service\"],\"pid\":1234,\"message\":\"Plugin \"visTypeXy\" is disabled.\"}\n<\/code><\/pre>\n<p>In the above command, <code>journalctl -u kibana<\/code> displays the logs for the Kibana service. The output shows the log entries, which can help you diagnose the problem.<\/p>\n<h3>Kibana is Not Accessible at <code>http:\/\/localhost:5601<\/code><\/h3>\n<p>If Kibana is running but you can&#8217;t access it at <code>http:\/\/localhost:5601<\/code>, there might be a network issue or a firewall blocking the port. You can check if Kibana is listening on the correct port using the <code>netstat<\/code> command.<\/p>\n<pre><code class=\"language-bash line-numbers\"># Check if Kibana is listening on port 5601\n\nsudo netstat -tuln | grep 5601\n\n# Output:\n# tcp        0      0 127.0.0.1:5601          0.0.0.0:*               LISTEN\n<\/code><\/pre>\n<p>In the above command, <code>netstat -tuln | grep 5601<\/code> checks if any process is listening on port <code>5601<\/code>. The output shows that Kibana is listening on <code>127.0.0.1:5601<\/code>.<\/p>\n<h3>Kibana Version Incompatibility with Elasticsearch<\/h3>\n<p>Kibana and Elasticsearch versions should be compatible. If they&#8217;re not, you might encounter errors. You can check the versions of Kibana and Elasticsearch to ensure compatibility.<\/p>\n<pre><code class=\"language-bash line-numbers\"># Check Kibana version\n\nkibana --version\n\n# Output:\n# 7.14.1\n\n# Check Elasticsearch version\n\ncurl -X GET \"localhost:9200\"\n\n# Output:\n# {\n#   \"name\" : \"Cp8oag6\",\n#   \"cluster_name\" : \"elasticsearch\",\n#   \"cluster_uuid\" : \"AT69_T_DTp-1qgIJlatQqA\",\n#   \"version\" : {\n#     \"number\" : \"7.14.1\",\n#     ...\n#   },\n#   \"tagline\" : \"You Know, for Search\"\n# }\n<\/code><\/pre>\n<p>In the above commands, <code>kibana --version<\/code> and <code>curl -X GET \"localhost:9200\"<\/code> check the versions of Kibana and Elasticsearch, respectively. The output shows that both are version <code>7.14.1<\/code>, indicating compatibility.<\/p>\n<h2>What is Elastic and Data Visualization<\/h2>\n<p>Before we delve deeper into Kibana, it&#8217;s essential to understand the underlying concepts of Elasticsearch and data visualization.<\/p>\n<h3>Elasticsearch: The Heart of Data Analysis<\/h3>\n<p>Elasticsearch is a powerful, open-source search and analytics engine. It&#8217;s capable of handling a wide variety of data types and volumes, making it a popular choice for log and event data, real-time application monitoring, and clickstream analysis.<\/p>\n<pre><code class=\"language-bash line-numbers\"># Example of a search query in Elasticsearch\n\ncurl -X GET \"localhost:9200\/_search?q=user:anton\"\n\n# Output:\n# {\n#   \"took\" : 3,\n#   \"timed_out\" : false,\n#   \"_shards\" : {\n#     \"total\" : 1,\n#     \"successful\" : 1,\n#     \"skipped\" : 0,\n#     \"failed\" : 0\n#   },\n#   \"hits\" : {\n#     \"total\" : {\n#       \"value\" : 1,\n#       \"relation\" : \"eq\"\n#     },\n#     \"max_score\" : 0.2876821,\n#     \"hits\" : [\n#       {\n#         \"_index\" : \"users\",\n#         \"_type\" : \"_doc\",\n#         \"_id\" : \"1\",\n#         \"_score\" : 0.2876821,\n#         \"_source\" : {\n#           \"user\" : \"anton\",\n#           \"post_date\" : \"2009-11-15T14:12:12\",\n#           \"message\" : \"Trying out Elasticsearch, so far so good!\"\n#         }\n#       }\n#     ]\n#   }\n# }\n<\/code><\/pre>\n<p>In the above example, we&#8217;re using a search query to find all documents in our Elasticsearch cluster where the user field is &#8216;anton&#8217;. The output shows the search results, including the document&#8217;s index, type, id, score, and source.<\/p>\n<h3>The Power of Data Visualization<\/h3>\n<p>Data visualization is a critical part of data analysis. It involves creating visual representations of data to uncover patterns, trends, and insights that might not be apparent from raw data. It&#8217;s a way to make sense of complex data sets by representing them in a more human-friendly and understandable format.<\/p>\n<p>Kibana excels in this domain. It provides various visualization options like charts, tables, maps, and more, allowing you to visualize your data in the way that makes the most sense for your analysis.<\/p>\n<pre><code class=\"language-bash line-numbers\"># Example of a Kibana visualization query\n\nGET \/_sql?format=txt\n{\n  \"query\": \"SELECT COUNT(*) AS count FROM log WHERE response = 200 GROUP BY agent.keyword\"\n}\n\n# Output:\n#   count  |  agent.keyword\n# ---------+------------------\n#      34  |  Mozilla\/5.0\n#      12  |  Opera\/9.80\n#       6  |  Mozilla\/4.0\n<\/code><\/pre>\n<p>In the above example, we&#8217;re using a SQL-like query in Kibana to count the number of logs with a 200 response for each user agent. The output shows the count and user agent, providing a clear visualization of the data.<\/p>\n<p>Understanding Elasticsearch and data visualization is crucial for making the most out of Kibana. They&#8217;re the foundation upon which Kibana builds, providing powerful data analysis and visualization capabilities.<\/p>\n<h2>Practical Uses of a Kibana Setup<\/h2>\n<p>Kibana is not just a tool for installing and managing Elasticsearch data. It&#8217;s a powerful platform that can greatly enhance your data analysis and monitoring capabilities. With Kibana, you can create visualizations and dashboards that allow you to interact with your data in real-time, giving you valuable insights that can help you make informed decisions.<\/p>\n<pre><code class=\"language-bash line-numbers\"># Example of a Kibana dashboard query\n\nGET \/_sql?format=txt\n{\n  \"query\": \"SELECT COUNT(*), AVG(response_time) AS avg_response_time FROM log GROUP BY user.keyword\"\n}\n\n# Output:\n#   count  |  avg_response_time  |  user.keyword\n# ---------+---------------------+------------------\n#      12  |              0.234  |  Mozilla\/5.0\n#       8  |              0.312  |  Opera\/9.80\n#       4  |              0.178  |  Mozilla\/4.0\n<\/code><\/pre>\n<p>In the above example, we&#8217;re using a SQL-like query in Kibana to create a dashboard that shows the count and average response time for each user agent. The output shows the count, average response time, and user agent, providing a clear visualization of the data.<\/p>\n<h2>Completing Your ELK Stack<\/h2>\n<p>While Kibana is a powerful tool on its own, its true potential is unlocked when used in conjunction with Elasticsearch and Logstash. Elasticsearch is a powerful search and analytics engine, while Logstash is a data processing pipeline that ingests data from multiple sources simultaneously, transforms it, and then sends it to a &#8216;stash&#8217; like Elasticsearch. Together, they form the ELK Stack, a powerful trio of tools that can handle everything from data aggregation and processing to search and visualization.<\/p>\n<pre><code class=\"language-bash line-numbers\"># Example of a Logstash pipeline configuration\n\ninput {\n  file {\n    path =&gt; \"\/path\/to\/logfile\"\n    start_position =&gt; \"beginning\"\n  }\n}\n\nfilter {\n  grok {\n    match =&gt; { \"message\" =&gt; \"%{COMBINEDAPACHELOG}\" }\n  }\n}\n\noutput {\n  elasticsearch {\n    hosts =&gt; [\"localhost:9200\"]\n  }\n}\n\n# Output:\n# Successfully started Logstash API endpoint {:port=&gt;9600}\n<\/code><\/pre>\n<p>In the above example, we&#8217;re configuring a Logstash pipeline that reads a log file, processes the log entries using a grok filter, and then sends the processed data to Elasticsearch. The output shows that the Logstash API endpoint has started successfully.<\/p>\n<h3>Further Resources for a Kibana Guide<\/h3>\n<p>If you&#8217;re interested in delving deeper into Kibana, Elasticsearch, and Logstash, here are some resources that you might find useful:<\/p>\n<ol>\n<li><a href=\"https:\/\/www.elastic.co\/guide\/en\/elasticsearch\/reference\/current\/index.html\" target=\"_blank\" rel=\"noopener\">Elasticsearch: The Definitive Guide<\/a> &#8211; A comprehensive guide to Elasticsearch, covering everything from basic concepts to advanced topics.<\/p>\n<\/li>\n<li>\n<p><a href=\"https:\/\/www.elastic.co\/guide\/en\/kibana\/current\/index.html\" target=\"_blank\" rel=\"noopener\">Kibana User Guide<\/a> &#8211; The official Kibana user guide, which provides detailed instructions on how to use Kibana&#8217;s various features.<\/p>\n<\/li>\n<li>\n<p><a href=\"https:\/\/www.elastic.co\/guide\/en\/logstash\/current\/index.html\" target=\"_blank\" rel=\"noopener\">Logstash Reference<\/a> &#8211; A detailed reference to Logstash, including installation instructions, configuration examples, and plugin documentation.<\/p>\n<\/li>\n<\/ol>\n<h2>Recap: Linux Kibana Install Methods<\/h2>\n<p>In this comprehensive guide, we have explored the process of installing Kibana on Linux, a powerful tool for visualizing Elasticsearch data.<\/p>\n<p>We began with the basics, explaining how to install Kibana using package managers like APT for Debian-based distributions and YUM for RPM-based distributions. We then delved into more advanced topics, such as installing Kibana from source and installing specific versions of Kibana.<\/p>\n<p>We also tackled common issues you might encounter during the installation process, such as Kibana failing to start, network issues, and version incompatibility with Elasticsearch. For each issue, we provided practical solutions and helpful tips.<\/p>\n<p>In addition, we explored alternative approaches to installing Kibana, such as using Docker. We discussed the advantages and disadvantages of these methods, providing a comprehensive view of the different ways to install Kibana on Linux.<\/p>\n<table>\n<thead>\n<tr>\n<th>Method<\/th>\n<th>Pros<\/th>\n<th>Cons<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Package Manager (APT\/YUM)<\/td>\n<td>Simple and fast<\/td>\n<td>Limited to available packages in the repository<\/td>\n<\/tr>\n<tr>\n<td>From Source<\/td>\n<td>Allows for specific version installation<\/td>\n<td>More complex, requires build tools<\/td>\n<\/tr>\n<tr>\n<td>Docker<\/td>\n<td>Consistent across different systems, isolated<\/td>\n<td>Requires knowledge of Docker, additional resources<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Whether you&#8217;re a beginner just starting out with Kibana, an intermediate user looking to level up your skills, or an expert interested in alternative installation methods, we hope this guide has been a valuable resource.<\/p>\n<p>Now, you&#8217;re well-equipped to install Kibana on Linux and start visualizing your Elasticsearch data. Happy data analyzing!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>While implementing visual solutions for data monitoring and analytics at IOFLOOD, we looked to Kibana for its robust integration with Elasticsearch. We&#8217;ve gathered our most efficient installation steps methods and some examples to aid our customers looking to deploy a Kibana installation on their dedicated server hosting services for dynamic data analysis tools. In this [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":21737,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[],"class_list":["post-7685","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","cat-3-id","has_thumb"],"_links":{"self":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/7685","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/comments?post=7685"}],"version-history":[{"count":19,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/7685\/revisions"}],"predecessor-version":[{"id":21812,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/7685\/revisions\/21812"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media\/21737"}],"wp:attachment":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media?parent=7685"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/categories?post=7685"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/tags?post=7685"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}