{"id":13840,"date":"2019-04-06T10:46:28","date_gmt":"2019-04-06T10:46:28","guid":{"rendered":"http:\/\/www.appservgrid.com\/paw92\/?p=13840"},"modified":"2019-04-06T10:46:28","modified_gmt":"2019-04-06T10:46:28","slug":"install-glances-influxdb-and-grafana-to-monitor-centos-7","status":"publish","type":"post","link":"https:\/\/www.appservgrid.com\/paw92\/index.php\/2019\/04\/06\/install-glances-influxdb-and-grafana-to-monitor-centos-7\/","title":{"rendered":"Install Glances, InfluxDB and Grafana to Monitor CentOS 7"},"content":{"rendered":"<p><a href=\"https:\/\/www.tecmint.com\/glances-an-advanced-real-time-system-monitoring-tool-for-linux\/\" target=\"_blank\" rel=\"noopener\">Glances<\/a>\u00a0is a free open source, modern, cross-platform, real-time\u00a0<a href=\"https:\/\/www.tecmint.com\/12-top-command-examples-in-linux\/\" target=\"_blank\" rel=\"noopener\">top<\/a>\u00a0and\u00a0<a href=\"https:\/\/www.tecmint.com\/install-htop-linux-process-monitoring-for-rhel-centos-fedora\/\" target=\"_blank\" rel=\"noopener\">htop-like<\/a>\u00a0monitoring tool with advanced features. It can run in different modes: as a standalone, in client\/server mode and\u00a0<a href=\"https:\/\/www.tecmint.com\/glances-monitor-remote-linux-in-web-server-mode\/\" target=\"_blank\" rel=\"noopener\">in web server mode<\/a>.<\/p>\n<p><strong>InfluxDB<\/strong>\u00a0is an open source and scalable time series database for metrics, events, and real-time analytics.<\/p>\n<p><a href=\"https:\/\/www.tecmint.com\/install-grafana-analytics-in-centos-ubuntu-debian\/\" target=\"_blank\" rel=\"noopener\">Grafana<\/a>\u00a0is an open source, feature rich, powerful, elegant and highly-extensible, cross-platform tool for monitoring and metric analytics, with beautiful and customizable dashboards. It is a de facto software for data analytics.<\/p>\n<p>In this article, we will explain how to install and configure\u00a0<strong>Glances<\/strong>,\u00a0<strong>InfluxDB<\/strong>\u00a0and\u00a0<strong>Grafana<\/strong>\u00a0to monitor performance of a\u00a0<strong>CentOS 7<\/strong>\u00a0server.<\/p>\n<h3>Step 1: Install Glances in CentOS 7<\/h3>\n<p><strong>1.<\/strong>\u00a0First start by installing latest stable version of\u00a0<strong>glances<\/strong>\u00a0(<strong>v2.11.1<\/strong>) using\u00a0<a href=\"https:\/\/www.tecmint.com\/install-pip-in-linux\/\" target=\"_blank\" rel=\"noopener\">PIP<\/a>. If you don\u2019t have\u00a0<strong>pip<\/strong>, install it as follows, including\u00a0<strong>Python-headers<\/strong>\u00a0required for installing\u00a0<strong>psutil<\/strong>.<\/p>\n<pre># yum install python-pip python-devel\t\r\n<\/pre>\n<p><strong>2.<\/strong>\u00a0Once you have\u00a0<strong>PIP<\/strong>\u00a0and the\u00a0<strong>Python-headers<\/strong>, run the following command to install the latest stable version of\u00a0<strong>glances<\/strong>\u00a0and verify the version.<\/p>\n<pre># pip install glances\r\n# glances -V\r\n\r\n<strong>Glances v2.11.1 with psutil v5.4.7<\/strong>\r\n<\/pre>\n<p>Alternatively, if you already have\u00a0<strong>glances<\/strong>\u00a0installed, you can upgrade it to the latest version using following command.<\/p>\n<pre># pip install --upgrade glances\r\n<\/pre>\n<p><strong>3.<\/strong>\u00a0Now you need to start glances via\u00a0<strong>systemd<\/strong>\u00a0so that it runs as a service. Create a new unit by creating a file called\u00a0<strong>glances.service<\/strong>\u00a0in\u00a0<strong>\/etc\/systemd\/system\/<\/strong>.<\/p>\n<pre># vim \/etc\/systemd\/system\/glances.service\r\n<\/pre>\n<p>Copy and paste the following configuration in the file\u00a0<strong>glances.service<\/strong>. The\u00a0<code>--config<\/code>\u00a0specifies the config file,\u00a0<code>--export-influxdb<\/code>\u00a0option tells glances to export stats to an InfluxDB server and the\u00a0<code>--disable-ip<\/code>\u00a0option disables the IP module.<\/p>\n<pre>[Unit]\r\nDescription=Glances\r\nAfter=network.target influxd.service\r\n\r\n[Service]\r\nExecStart=\/usr\/bin\/glances --config \/home\/admin\/.config\/glances\/glances.conf --quiet --export-influxdb --disable-ip\r\nRestart=on-failure\r\nRestartSec=30s\r\nTimeoutSec=30s\r\n\r\n[Install]\r\nWantedBy=multi-user.target\r\n<\/pre>\n<p>Save the file and close it.<\/p>\n<p><strong>4.<\/strong>\u00a0Then reload systemd manager configuration, start the glances service, view its status, and enable it to auto-start at boot time.<\/p>\n<pre># systemctl daemon-reload \r\n# systemctl start glances.service\r\n# systemctl status glances.service\r\n# systemctl enable glances.service\r\n<\/pre>\n<p><strong>5.<\/strong>\u00a0Next, you need to download the glances configuration file provided by the developer using\u00a0<a href=\"https:\/\/www.tecmint.com\/10-wget-command-examples-in-linux\/\" target=\"_blank\" rel=\"noopener\">wget command<\/a>\u00a0as shown.<\/p>\n<pre># mkdir ~\/.config\/glances\/\r\n# wget https:\/\/raw.githubusercontent.com\/nicolargo\/glances\/master\/conf\/glances.conf -P ~\/.config\/glances\/ \r\n<\/pre>\n<p><strong>6.<\/strong>\u00a0In order to export\u00a0<strong>Glances<\/strong>\u00a0stats to an\u00a0<strong>InfluxDB<\/strong>\u00a0database, you need the\u00a0<strong>Python InfluxdDB<\/strong>\u00a0lib, which you can install it using pip command.<\/p>\n<pre># sudo pip install influxdb\r\n<\/pre>\n<h3>Step 2: Install InfluxDB in CentOS 7<\/h3>\n<p><strong>7.<\/strong>\u00a0Next, you need to add the InfluxDB Yum repository to install latest vesrion of\u00a0<strong>InfluxDB<\/strong>\u00a0package as shown.<\/p>\n<pre># cat &lt;&lt;EOF | sudo tee \/etc\/yum.repos.d\/influxdb.repo\r\n[influxdb]\r\nname = InfluxDB Repository - RHEL $releasever\r\nbaseurl = https:\/\/repos.influxdata.com\/rhel\/$releasever\/$basearch\/stable\r\nenabled = 1\r\ngpgcheck = 1\r\ngpgkey = https:\/\/repos.influxdata.com\/influxdb.key\r\nEOF\r\n<\/pre>\n<p><strong>8.<\/strong>\u00a0After adding the repository to the YUM configuration, install the\u00a0<strong>InfluxDB<\/strong>\u00a0package by running.<\/p>\n<pre># yum install influxdb\r\n<\/pre>\n<p><strong>9.<\/strong>\u00a0Next, start the\u00a0<strong>InfluxDB<\/strong>\u00a0service via systemd, confirm that it is running by viewing its status and enable it to auto-start at system boot.<\/p>\n<pre># systemctl start influxdb\r\n# systemctl status influxdb\r\n# systemctl enable influxdb\r\n<\/pre>\n<p><strong>10.<\/strong>\u00a0By default, InfluxDB uses TCP port\u00a0<strong>8086<\/strong>\u00a0for client-server communication over InfluxDB\u2019s HTTP API, you need to open this port in your firewall using the firewall-cmd.<\/p>\n<pre># firewall-cmd --add-port=8086\/tcp --permanent\r\n# firewall-cmd --reload\r\n<\/pre>\n<p><strong>11.<\/strong>\u00a0Next, you need to create a database in\u00a0<strong>InfluxDB<\/strong>\u00a0for storing data from\u00a0<strong>glances<\/strong>. The\u00a0<strong>influx<\/strong>\u00a0command which is included in the InfluxDB packages is the simplest way to interact with the database. So execute\u00a0<strong>influx<\/strong>\u00a0to start the CLI and automatically connect to the local InfluxDB instance.<\/p>\n<pre># influx\r\n<\/pre>\n<p>Run the following commands to create a database called\u00a0<strong>glances<\/strong>\u00a0and view available databases.<\/p>\n<pre>Connected to http:\/\/localhost:8086 version 1.6.2\r\nInfluxDB shell version: 1.6.2\r\n&gt; <strong>CREATE DATABASE glances<\/strong>\r\n&gt; <strong>SHOW DATABASES<\/strong>\r\nname: databases\r\nname\r\n----\r\n_internal\r\nglances\r\n&gt; \r\n<\/pre>\n<p>To exit the\u00a0<strong>InfluxQL<\/strong>\u00a0shell, type\u00a0<strong>exit<\/strong>\u00a0and hit\u00a0<strong>Enter<\/strong>.<\/p>\n<h3>Step 3: Install Grafana in CentOS 7<\/h3>\n<p><strong>12.<\/strong>\u00a0Now, install\u00a0<strong>Grafana<\/strong>\u00a0from its official YUM repository, start by adding the following configuration to\u00a0<strong>\/etc\/yum.repos.d\/grafana.repo<\/strong>\u00a0repository file.<\/p>\n<pre>[grafana]\r\nname=grafana\r\nbaseurl=https:\/\/packagecloud.io\/grafana\/stable\/el\/7\/$basearch\r\nrepo_gpgcheck=1\r\nenabled=1\r\ngpgcheck=1\r\ngpgkey=https:\/\/packagecloud.io\/gpg.key https:\/\/grafanarel.s3.amazonaws.com\/RPM-GPG-KEY-grafana\r\nsslverify=1\r\nsslcacert=\/etc\/pki\/tls\/certs\/ca-bundle.crt\r\n<\/pre>\n<p><strong>13.<\/strong>\u00a0After adding the repository to the YUM configuration, install the\u00a0<strong>Grafana<\/strong>\u00a0package by running.<\/p>\n<pre># yum install grafana\r\n<\/pre>\n<p><strong>14.<\/strong>\u00a0Once you have installed\u00a0<strong>Grafana<\/strong>, reload systemd manager configuration, start the grafana server, check if the service is up and running by viewing its status and enable it to auto-start at boot time.<\/p>\n<pre># systemctl daemon-reload \r\n# systemctl start grafana-server \r\n# systemctl status grafana-server \r\n# systemctl enable grafana-server\r\n<\/pre>\n<p><strong>15.<\/strong>\u00a0Next, open port\u00a0<strong>3000<\/strong>\u00a0which\u00a0<strong>Grafana<\/strong>\u00a0server listens on, in your firewall using the firewall-cmd.<\/p>\n<pre># firewall-cmd --add-port=3000\/tcp --permanent\r\n# firewall-cmd --reload\r\n<\/pre>\n<h3>Step 4: Monitor CentOS 7 Server Metrics Via Grafana<\/h3>\n<p><strong>16.<\/strong>\u00a0At this point, you can use the following URL to access\u00a0<strong>Grafana<\/strong>\u00a0web interface, which will redirect to the login page, use the default credentials to login.<\/p>\n<pre>URL: <strong>http:\/\/SERVER_IP:3000<\/strong>\r\nUsername: <strong>admin<\/strong> \r\nPassword: <strong>admin<\/strong>\r\n<\/pre>\n<p>You will be asked to create a new password, once you have done that, you will be redirected to the home dashboard, as shown in the screenshot below.<\/p>\n<div id=\"attachment_30344\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Grafana-Login.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-30344\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Grafana-Login.png\" sizes=\"auto, (max-width: 1244px) 100vw, 1244px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Grafana-Login.png 1244w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Grafana-Login-768x532.png 768w\" alt=\"Grafana Admin Login\" width=\"1244\" height=\"861\" aria-describedby=\"caption-attachment-30344\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-30344\" class=\"wp-caption-text\">Grafana Admin Login<\/p>\n<\/div>\n<div id=\"attachment_30343\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Grafana-Set-Admin-Password.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-30343\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Grafana-Set-Admin-Password.png\" sizes=\"auto, (max-width: 1244px) 100vw, 1244px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Grafana-Set-Admin-Password.png 1244w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Grafana-Set-Admin-Password-768x532.png 768w\" alt=\"Grafana Set Admin Password\" width=\"1244\" height=\"861\" aria-describedby=\"caption-attachment-30343\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-30343\" class=\"wp-caption-text\">Grafana Set Admin Password<\/p>\n<\/div>\n<div id=\"attachment_30345\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Grafana-Dashboard.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-30345\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Grafana-Dashboard.png\" sizes=\"auto, (max-width: 1244px) 100vw, 1244px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Grafana-Dashboard.png 1244w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Grafana-Dashboard-768x532.png 768w\" alt=\"Grafana Dashboard\" width=\"1244\" height=\"861\" aria-describedby=\"caption-attachment-30345\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-30345\" class=\"wp-caption-text\">Grafana Dashboard<\/p>\n<\/div>\n<p><strong>17.<\/strong>\u00a0Next, click on\u00a0<strong>Create your first data source<\/strong>, which should be an InfluxDB database. Under\u00a0<strong>Settings<\/strong>, enter a suitable name e.g\u00a0<strong>Glances Import<\/strong>, then use the following values for the other two important variables (<strong>HTTP URL<\/strong>\u00a0and\u00a0<strong>InfluxDB Database<\/strong>) as shown in the screenshot.<\/p>\n<pre>HTTP URL: <strong>http:\/\/localhost:8086<\/strong>\r\nInfluxDB Details - Database: <strong>glances<\/strong>\r\n<\/pre>\n<p>Then click on\u00a0<strong>Save &amp; Test<\/strong>\u00a0to connect to the data source. You should receive a feedback indicating \u201c<strong>Data source is working<\/strong>\u201d.<\/p>\n<div id=\"attachment_30346\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Create-Data-Source.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-30346\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Create-Data-Source.png\" sizes=\"auto, (max-width: 1010px) 100vw, 1010px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Create-Data-Source.png 1010w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Create-Data-Source-768x783.png 768w\" alt=\"Create Data Source\" width=\"1010\" height=\"1030\" aria-describedby=\"caption-attachment-30346\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-30346\" class=\"wp-caption-text\">Create Data Source<\/p>\n<\/div>\n<p><strong>18.<\/strong>\u00a0Now you need to import the\u00a0<strong>Glances<\/strong>\u00a0dashboard. Click on the plus\u00a0<code>(+)<\/code>\u00a0and go to\u00a0<strong>Import<\/strong>\u00a0as shown in the screenshot.<\/p>\n<div id=\"attachment_30348\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Import-Glances.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-30348\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Import-Glances.png\" sizes=\"auto, (max-width: 1170px) 100vw, 1170px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Import-Glances.png 1170w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Import-Glances-768x570.png 768w\" alt=\"Import Glances\" width=\"1170\" height=\"868\" aria-describedby=\"caption-attachment-30348\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-30348\" class=\"wp-caption-text\">Import Glances<\/p>\n<\/div>\n<p>17. You will need either the\u00a0<strong>Glances Dashboard URL<\/strong>\u00a0or ID or upload its\u00a0<code>.JSON<\/code>\u00a0file which you can find from\u00a0<strong>Grafana.com<\/strong>. In this case, we will use the\u00a0<strong>Glances Dashboard<\/strong>\u00a0created by the developer of Glances, its URL is\u00a0<strong>https:\/\/grafana.com\/dashboards\/2387<\/strong>\u00a0or ID is\u00a0<strong>2387<\/strong>.<\/p>\n<div id=\"attachment_30347\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Import-Glances-Dashboard.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-30347\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Import-Glances-Dashboard.png\" sizes=\"auto, (max-width: 1170px) 100vw, 1170px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Import-Glances-Dashboard.png 1170w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Import-Glances-Dashboard-768x570.png 768w\" alt=\"Import Glances Dashboard\" width=\"1170\" height=\"868\" aria-describedby=\"caption-attachment-30347\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-30347\" class=\"wp-caption-text\">Import Glances Dashboard<\/p>\n<\/div>\n<p><strong>18.<\/strong>\u00a0Once the Grafana dashboard has been loaded, under options, find glances and choose an InluxDB data source (<strong>Glances Import<\/strong>) which you created earlier on, then click on\u00a0<strong>Import<\/strong>\u00a0as shown in the following screenshot.<\/p>\n<div id=\"attachment_30349\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Import-Glances-Settings.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-30349\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Import-Glances-Settings.png\" sizes=\"auto, (max-width: 1170px) 100vw, 1170px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Import-Glances-Settings.png 1170w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Import-Glances-Settings-768x570.png 768w\" alt=\"Import Glances Settings\" width=\"1170\" height=\"868\" aria-describedby=\"caption-attachment-30349\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-30349\" class=\"wp-caption-text\">Import Glances Settings<\/p>\n<\/div>\n<p><strong>19.<\/strong>\u00a0After successfully importing the\u00a0<strong>Glances<\/strong>\u00a0dashboard, you should be able to watch graphs showing metrics from your server as provided by glances via influxdb.<\/p>\n<div id=\"attachment_30350\" class=\"wp-caption aligncenter\">\n<p><a href=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Monitor-CentOS-Using-Grafana.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-30350\" src=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Monitor-CentOS-Using-Grafana.png\" sizes=\"auto, (max-width: 1401px) 100vw, 1401px\" srcset=\"https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Monitor-CentOS-Using-Grafana.png 1401w, https:\/\/www.tecmint.com\/wp-content\/uploads\/2018\/08\/Monitor-CentOS-Using-Grafana-768x550.png 768w\" alt=\"Monitor CentOS Using Grafana\" width=\"1401\" height=\"1003\" aria-describedby=\"caption-attachment-30350\" data-lazy-loaded=\"true\" \/><\/a><\/p>\n<p id=\"caption-attachment-30350\" class=\"wp-caption-text\">Monitor CentOS Using Grafana<\/p>\n<\/div>\n<p>That\u2019s all for now! In this article, we have explained how to monitor CentOS 7 server with Glances, InfluxDB and Grafana. If you have any queries, or information to share, use the comment form below to do so.<\/p>\n<p><a href=\"https:\/\/www.tecmint.com\/install-glances-influxdb-grafana-to-monitor-centos-7\/\" target=\"_blank\" rel=\"noopener\">Source<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Glances\u00a0is a free open source, modern, cross-platform, real-time\u00a0top\u00a0and\u00a0htop-like\u00a0monitoring tool with advanced features. It can run in different modes: as a standalone, in client\/server mode and\u00a0in web server mode. InfluxDB\u00a0is an open source and scalable time series database for metrics, events, and real-time analytics. Grafana\u00a0is an open source, feature rich, powerful, elegant and highly-extensible, cross-platform tool &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.appservgrid.com\/paw92\/index.php\/2019\/04\/06\/install-glances-influxdb-and-grafana-to-monitor-centos-7\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Install Glances, InfluxDB and Grafana to Monitor CentOS 7&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-13840","post","type-post","status-publish","format-standard","hentry","category-linux"],"_links":{"self":[{"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/posts\/13840","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/comments?post=13840"}],"version-history":[{"count":1,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/posts\/13840\/revisions"}],"predecessor-version":[{"id":13841,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/posts\/13840\/revisions\/13841"}],"wp:attachment":[{"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/media?parent=13840"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/categories?post=13840"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.appservgrid.com\/paw92\/index.php\/wp-json\/wp\/v2\/tags?post=13840"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}