{"id":16352,"date":"2024-10-31T19:30:09","date_gmt":"2024-10-31T19:30:09","guid":{"rendered":"https:\/\/truehost.com\/support\/?post_type=docs&#038;p=16352"},"modified":"2024-11-02T05:55:01","modified_gmt":"2024-11-02T05:55:01","password":"","slug":"how-to-use-prometheus-and-grafana-for-server-monitoring","status":"publish","type":"docs","link":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-use-prometheus-and-grafana-for-server-monitoring\/","title":{"rendered":"How to Use Prometheus and Grafana for Server Monitoring"},"content":{"rendered":"\n<p>Prometheus and Grafana are popular open-source tools for monitoring and visualizing server and application performance. Prometheus collects and stores metrics, while Grafana provides a beautiful dashboard for visualization. Here\u2019s a guide to setting up server monitoring using Prometheus and Grafana on a Linux server.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Install Prometheus<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Download Prometheus<\/strong>:\n<ul class=\"wp-block-list\">\n<li>Visit the <a>Prometheus downloads page<\/a> and copy the link for the latest release for your OS, or run:<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>wget https:\/\/github.com\/prometheus\/prometheus\/releases\/download\/v2.40.0\/prometheus-2.40.0.linux-amd64.tar.gz<\/code><\/pre>\n\n\n\n<p>2. <strong>Extract the Prometheus package<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>tar -xvf prometheus-2.40.0.linux-amd64.tar.gz<br>cd prometheus-2.40.0.linux-amd64<\/code><\/pre>\n\n\n\n<p>3. <strong>Move Prometheus binaries to <code>\/usr\/local\/bin<\/code><\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mv prometheus \/usr\/local\/bin\/<br>sudo mv promtool \/usr\/local\/bin\/<\/code><\/pre>\n\n\n\n<p>4. <strong>Set up Prometheus configuration<\/strong>:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Create a directory for Prometheus configuration:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mkdir \/etc\/prometheus<br>sudo mv prometheus.yml \/etc\/prometheus\/<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Edit <code>prometheus.yml<\/code> to define targets:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>global:\n  scrape_interval: 15s\n  evaluation_interval: 15s\n\nscrape_configs:\n  - job_name: 'prometheus'\n    static_configs:\n      - targets: &#91;'localhost:9090']\n<\/code><\/pre>\n\n\n\n<p>5. <strong>Create a Prometheus systemd service file<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo nano \/etc\/systemd\/system\/prometheus.service<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add the following:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;Unit]\nDescription=Prometheus Service\nWants=network-online.target\nAfter=network-online.target\n\n&#91;Service]\nUser=prometheus\nExecStart=\/usr\/local\/bin\/prometheus --config.file=\/etc\/prometheus\/prometheus.yml --storage.tsdb.path=\/var\/lib\/prometheus\/\n\n&#91;Install]\nWantedBy=multi-user.target\n<\/code><\/pre>\n\n\n\n<p>6. <strong>Start and enable Prometheus<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl daemon-reload\nsudo systemctl start prometheus\nsudo systemctl enable prometheus<\/code><\/pre>\n\n\n\n<p>7. <strong>Verify Prometheus is running<\/strong> by navigating to <code>http:\/\/&lt;your_server_ip>:9090<\/code>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Install and Configure Node Exporter<\/h3>\n\n\n\n<p>Node Exporter collects metrics from the server, such as CPU, memory, and disk usage.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Download Node Exporter<\/strong>:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>wget https:\/\/github.com\/prometheus\/node_exporter\/releases\/download\/v1.4.0\/node_exporter-1.4.0.linux-amd64.tar.gz<\/code><\/pre>\n\n\n\n<p> 2. <strong>Extract Node Exporter<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>tar -xvf node_exporter-1.4.0.linux-amd64.tar.gz<br>sudo mv node_exporter-1.4.0.linux-amd64\/node_exporter \/usr\/local\/bin\/<\/code><\/pre>\n\n\n\n<p>3. <strong>Create a Node Exporter systemd service file<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vi \/etc\/systemd\/system\/node_exporter.service<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add the following:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;Unit]\nDescription=Node Exporter\nAfter=network.target\n\n&#91;Service]\nUser=prometheus\nExecStart=\/usr\/local\/bin\/node_exporter\n\n&#91;Install]\nWantedBy=default.target<\/code><\/pre>\n\n\n\n<p><strong>4.  Start and enable Node Exporter:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl daemon-reload\nsudo systemctl start node_exporter\nsudo systemctl enable node_exporter<\/code><\/pre>\n\n\n\n<p>5. <strong>Configure Prometheus to scrape Node Exporter metrics<\/strong>:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Edit <code>\/etc\/prometheus\/prometheus.yml<\/code> to add Node Exporter as a target:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>scrape_configs:\n  - job_name: 'node_exporter'\n    static_configs:\n      - targets: &#91;'localhost:9100']<\/code><\/pre>\n\n\n\n<p>6. <strong>Restart Prometheus<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart prometheus<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Install Grafana<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Add the Grafana APT repository<\/strong>:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get install -y software-properties-common\n\nsudo apt-add-repository \"deb https:\/\/packages.grafana.com\/oss\/deb stable main\"\n\nwget -q -O - https:\/\/packages.grafana.com\/gpg.key | sudo apt-key add -<\/code><\/pre>\n\n\n\n<p>2. <strong>Install Grafana<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get update<br>sudo apt-get install grafana -y<\/code><\/pre>\n\n\n\n<p>3. <strong>Start and enable Grafana<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl start grafana-server\nsudo systemctl enable grafana-server<\/code><\/pre>\n\n\n\n<p>4. <strong>Access Grafana<\/strong>:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Open your browser and navigate to <code>http:\/\/&lt;your_server_ip>:3000<\/code>. The default login is <code>admin<\/code> for both the username and password (you\u2019ll be prompted to change the password after logging in).<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Configure Grafana to Use Prometheus as a Data Source<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Add Prometheus as a data source<\/strong>:\n<ul class=\"wp-block-list\">\n<li>In the Grafana dashboard, go to <strong>Configuration > Data Sources<\/strong>.<\/li>\n\n\n\n<li>Select <strong>Add data source<\/strong> and choose <strong>Prometheus<\/strong>.<\/li>\n\n\n\n<li>Set the URL to <code>http:\/\/localhost:9090<\/code> and click <strong>Save &amp; Test<\/strong> to ensure it\u2019s connected.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Create a Dashboard<\/strong>:\n<ul class=\"wp-block-list\">\n<li>Go to <strong>+ > Dashboard<\/strong> to create a new dashboard.<\/li>\n\n\n\n<li>Select <strong>Add New Panel<\/strong> and choose metrics you want to visualize from Prometheus.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5: Create Alerts (Optional)<\/h3>\n\n\n\n<p>Grafana and Prometheus support alerting based on metric conditions. Here\u2019s a basic setup for server load alerts:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Configure Prometheus alert rules<\/strong>:<\/li>\n<\/ol>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Create a new rules file for Prometheus<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vi \/etc\/prometheus\/alert.rules<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Define an alert rule (e.g., high CPU usage):<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>groups:\n  - name: example_alert\n    rules:\n      - alert: HighCPUUsage\n        expr: node_cpu_seconds_total{mode=\"idle\"} &lt; 20\n        for: 5m\n        labels:\n          severity: \"critical\"\n        annotations:\n          summary: \"High CPU Usage Detected\"\n          description: \"CPU usage has been above 80% for the last 5 minutes.\"<\/code><\/pre>\n\n\n\n<p>2. <strong>Update Prometheus configuration to load the alert rules<\/strong>:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Edit <code>\/etc\/prometheus\/prometheus.yml<\/code> and add:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>rule_files:\n  - \"\/etc\/prometheus\/alert.rules\"\n<\/code><\/pre>\n\n\n\n<p>3. <strong>Restart Prometheus<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart prometheus<\/code><\/pre>\n\n\n\n<p>4. <strong>Set up Grafana Alerting<\/strong> (for more advanced alerting):<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In Grafana, go to <strong>Alerting > Notification channels<\/strong> to set up notification channels (e.g., email or Slack).<\/li>\n\n\n\n<li>Define alert conditions in your Grafana dashboards, setting thresholds to trigger notifications.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6: Monitor and Visualize<\/h3>\n\n\n\n<p>With Prometheus and Grafana set up:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Check Prometheus<\/strong> at <code>http:\/\/&lt;your_server_ip>:9090<\/code> to ensure metrics are being collected.<\/li>\n\n\n\n<li><strong>View Grafana Dashboards<\/strong> at <code>http:\/\/&lt;your_server_ip>:3000<\/code> to see your data visualizations.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Author&#8217;s Final Word<\/h2>\n\n\n\n<p>By following these steps, you\u2019ll have a fully functioning monitoring solution for your server. Prometheus and Grafana will gather and display metrics, helping you keep track of your server\u2019s performance and set up alerts for proactive monitoring.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Prometheus and Grafana are popular open-source tools for monitoring and visualizing server and application performance. Prometheus collects and stores metrics, while Grafana provides a beautiful dashboard for visualization. Here\u2019s a guide to setting up server monitoring using Prometheus and Grafana on a Linux server. Step 1: Install Prometheus 2. Extract the Prometheus package: 3. Move [&hellip;]<\/p>\n","protected":false},"author":9,"featured_media":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_eb_attr":"","_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"doc_category":[1820,1824,1879,2128],"doc_tag":[],"class_list":["post-16352","docs","type-docs","status-publish","hentry","doc_category-cloud-servers-in-kenya","doc_category-dedicated-servers","doc_category-servers","doc_category-vps-servers"],"year_month":"2026-06","word_count":781,"total_views":0,"reactions":{"happy":0,"normal":0,"sad":0},"author_info":{"name":"Eugene","author_nicename":"eugene","author_url":"https:\/\/truehost.com\/support\/author\/eugene\/"},"doc_category_info":[{"term_name":"Cloud servers in Kenya","term_url":"https:\/\/truehost.com\/support\/docs-category\/cloud-servers-in-kenya\/"},{"term_name":"dedicated servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/dedicated-servers\/"},{"term_name":"Servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/servers\/"},{"term_name":"VPS-Servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/vps-servers\/"}],"doc_tag_info":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Use Prometheus and Grafana for Server Monitoring -<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/truehost.com\/support\/knowledge-base\/how-to-use-prometheus-and-grafana-for-server-monitoring\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Use Prometheus and Grafana for Server Monitoring -\" \/>\n<meta property=\"og:description\" content=\"Prometheus and Grafana are popular open-source tools for monitoring and visualizing server and application performance. Prometheus collects and stores metrics, while Grafana provides a beautiful dashboard for visualization. Here\u2019s a guide to setting up server monitoring using Prometheus and Grafana on a Linux server. Step 1: Install Prometheus 2. Extract the Prometheus package: 3. Move [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/truehost.com\/support\/knowledge-base\/how-to-use-prometheus-and-grafana-for-server-monitoring\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-02T05:55:01+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-use-prometheus-and-grafana-for-server-monitoring\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-use-prometheus-and-grafana-for-server-monitoring\\\/\",\"name\":\"How to Use Prometheus and Grafana for Server Monitoring -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#website\"},\"datePublished\":\"2024-10-31T19:30:09+00:00\",\"dateModified\":\"2024-11-02T05:55:01+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-use-prometheus-and-grafana-for-server-monitoring\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-use-prometheus-and-grafana-for-server-monitoring\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-use-prometheus-and-grafana-for-server-monitoring\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Use Prometheus and Grafana for Server Monitoring\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#website\",\"url\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/\",\"name\":\"\",\"description\":\"Help In a Click\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#organization\",\"name\":\"Truehost Kenya\",\"url\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"width\":240,\"height\":48,\"caption\":\"Truehost Kenya\"},\"image\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Use Prometheus and Grafana for Server Monitoring -","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:\/\/truehost.com\/support\/knowledge-base\/how-to-use-prometheus-and-grafana-for-server-monitoring\/","og_locale":"en_US","og_type":"article","og_title":"How to Use Prometheus and Grafana for Server Monitoring -","og_description":"Prometheus and Grafana are popular open-source tools for monitoring and visualizing server and application performance. Prometheus collects and stores metrics, while Grafana provides a beautiful dashboard for visualization. Here\u2019s a guide to setting up server monitoring using Prometheus and Grafana on a Linux server. Step 1: Install Prometheus 2. Extract the Prometheus package: 3. Move [&hellip;]","og_url":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-use-prometheus-and-grafana-for-server-monitoring\/","article_modified_time":"2024-11-02T05:55:01+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-use-prometheus-and-grafana-for-server-monitoring\/","url":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-use-prometheus-and-grafana-for-server-monitoring\/","name":"How to Use Prometheus and Grafana for Server Monitoring -","isPartOf":{"@id":"https:\/\/www.truehost.com\/support\/#website"},"datePublished":"2024-10-31T19:30:09+00:00","dateModified":"2024-11-02T05:55:01+00:00","breadcrumb":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-use-prometheus-and-grafana-for-server-monitoring\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/truehost.com\/support\/knowledge-base\/how-to-use-prometheus-and-grafana-for-server-monitoring\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-use-prometheus-and-grafana-for-server-monitoring\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.truehost.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Use Prometheus and Grafana for Server Monitoring"}]},{"@type":"WebSite","@id":"https:\/\/www.truehost.com\/support\/#website","url":"https:\/\/www.truehost.com\/support\/","name":"","description":"Help In a Click","publisher":{"@id":"https:\/\/www.truehost.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.truehost.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.truehost.com\/support\/#organization","name":"Truehost Kenya","url":"https:\/\/www.truehost.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.truehost.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","width":240,"height":48,"caption":"Truehost Kenya"},"image":{"@id":"https:\/\/www.truehost.com\/support\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16352","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/comments?post=16352"}],"version-history":[{"count":2,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16352\/revisions"}],"predecessor-version":[{"id":16550,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16352\/revisions\/16550"}],"wp:attachment":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/media?parent=16352"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_category?post=16352"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_tag?post=16352"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}