{"id":465,"date":"2026-06-20T02:34:26","date_gmt":"2026-06-20T02:34:26","guid":{"rendered":"https:\/\/virtualserversvps.com\/blog\/?p=465"},"modified":"2026-09-14T22:03:21","modified_gmt":"2026-09-14T22:03:21","slug":"vps-server-health-monitoring-checklist-linux","status":"publish","type":"post","link":"https:\/\/virtualserversvps.com\/blog\/vps-server-health-monitoring-checklist-linux\/","title":{"rendered":"Linux VPS Health Checks: Thresholds, One-Liners, and the Cron That Runs Them"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">A health check without a threshold is a log line. These are the nine checks worth automating on a production Linux VPS, the exact cutoff for each, and the command that evaluates it. Every check returns exit code 0 when healthy and 1 when it is not, so a single cron job can run all nine and alert on any failure.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Nine Checks and Their Cutoffs<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Check<\/th><th>Pass condition<\/th><th>Signal<\/th><\/tr><\/thead><tbody><tr><td>Disk usage<\/td><td>&lt; 85% on all real mounts<\/td><td>log growth, unrotated archives<\/td><\/tr><tr><td>Inode usage<\/td><td>&lt; 85%<\/td><td>millions of tiny session\/cache files<\/td><\/tr><tr><td>Available memory<\/td><td>&gt; 10% of MemTotal<\/td><td>leaks, runaway workers<\/td><\/tr><tr><td>Swap in\/out<\/td><td>0 pages\/s at steady load<\/td><td>host memory pressure<\/td><\/tr><tr><td>CPU steal<\/td><td>&lt; 5% averaged over 5 min<\/td><td>noisy neighbour<\/td><\/tr><tr><td>Load per core<\/td><td>&lt; 1.5 \u00d7 nproc<\/td><td>queueing, slow queries<\/td><\/tr><tr><td>TCP retransmits<\/td><td>&lt; 0.5% of segments out<\/td><td>MTU, NIC offload, congestion<\/td><\/tr><tr><td>Filesystem read-only<\/td><td>all mounts rw (except ro-design)<\/td><td>I\/O errors, failing volume<\/td><\/tr><tr><td>Service responders<\/td><td>nginx, php-fpm, sshd, db reachable<\/td><td>crashed unit<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">One Strict Shell Script, Nine Exit Codes<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>#!\/usr\/bin\/env bash\n# \/usr\/local\/bin\/vps-health.sh \u2014 exit 0 healthy, 1 unhealthy\nset -uo pipefail\nfail=0\nnote(){ printf '%s %s\\n' \"$(date -Is)\" \"$*\"; }\nbad(){ note \"FAIL: $*\"; fail=1; }\n\n# 1. disk\nwhile read -r pct mp; do\n  [ \"${pct%\\%}\" -ge 85 ] &amp;&amp; bad \"disk ${mp} at ${pct}\"\ndone &lt; &lt;(df -P --local -x tmpfs -x devtmpfs | awk 'NR&gt;1{print $5, $6}')\n\n# 2. inodes\nwhile read -r pct mp; do\n  [ \"${pct%\\%}\" -ge 85 ] &amp;&amp; bad \"inodes ${mp} at ${pct}\"\ndone &lt; &lt;(df -Pi --local -x tmpfs -x devtmpfs | awk 'NR&gt;1{print $5, $6}')\n\n# 3. memory\navail=$(awk '\/MemAvailable\/{print $2}' \/proc\/meminfo)\ntotal=$(awk '\/MemTotal\/{print $2}' \/proc\/meminfo)\nawk -v a=\"$avail\" -v t=\"$total\" 'BEGIN{exit !(a\/t &lt; 0.10)}' &amp;&amp; bad \"MemAvailable $((avail\/1024))MB of $((total\/1024))MB\"\n\n# 4. swap activity (two samples 5s apart)\ns1=$(awk '\/pswpin\/{print $2}' \/proc\/vmstat); sleep 5\ns2=$(awk '\/pswpin\/{print $2}' \/proc\/vmstat)\n[ $((s2 - s1)) -gt 0 ] &amp;&amp; bad \"swap-in $((s2-s1)) pages in 5s\"\n\n# 5. steal\nu1=$(awk '\/^cpu \/{print $9}' \/proc\/stat); t1=$(awk '\/^cpu \/{print $2+$3+$4+$5+$6+$7+$8+$9+$10}' \/proc\/stat)\nsleep 5\nu2=$(awk '\/^cpu \/{print $9}' \/proc\/stat); t2=$(awk '\/^cpu \/{print $2+$3+$4+$5+$6+$7+$8+$9+$10}' \/proc\/stat)\nawk -v d=$((u2-u1)) -v t=$((t2-t1)) 'BEGIN{exit !(100*d\/t &gt; 5)}' &amp;&amp; bad \"steal above 5%\"\n\n# 6. load per core\nl1=$(cut -d' ' -f1 \/proc\/loadavg); n=$(nproc)\nawk -v l=\"$l1\" -v n=\"$n\" 'BEGIN{exit !(l &gt; 1.5*n)}' &amp;&amp; bad \"load $l1 on $n cores\"\n\n# 7. TCP retransmits in currently open sockets\nss -ti 2&gt;\/dev\/null | grep -o 'retrans:[0-9\/]*' | awk -F'[:\/]' '$2&gt;0{bad++} END{exit !(bad&gt;0)}' &amp;&amp; bad \"active TCP retransmits detected\"\n\n# 8. read-only filesystems\nmount | awk '$4 ~ \/^ro\/ &amp;&amp; $3 !~ \/(squashfs|iso9660)\/{print}' | grep -q . &amp;&amp; bad \"filesystem mounted read-only\"\n\n# 9. service reachability\nfor u in http:\/\/127.0.0.1\/ ; do\n  curl -sf -o \/dev\/null --max-time 5 \"$u\" || bad \"endpoint $u not responding\"\ndone\npgrep -x sshd &gt;\/dev\/null || bad \"sshd not running\"\n\nnote \"health check complete (exit $fail)\"\nexit $fail<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Install it, run it by hand once to confirm the output, then schedule it. `systemd` timers give you journald integration for free and avoid cron&#8217;s environment surprises:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo install -m755 vps-health.sh \/usr\/local\/bin\/vps-health.sh\nsudo tee \/etc\/systemd\/system\/vps-health.service &gt;\/dev\/null &lt;&lt;'EOF'\n[Unit]\nDescription=VPS health check\n[Service]\nType=oneshot\nExecStart=\/usr\/local\/bin\/vps-health.sh\nEOF\nsudo tee \/etc\/systemd\/system\/vps-health.timer &gt;\/dev\/null &lt;&lt;'EOF'\n[Unit]\nDescription=Run VPS health check every 5 minutes\n[Timer]\nOnBootSec=2min\nOnUnitActiveSec=5min\nAccuracySec=30s\n[Install]\nWantedBy=timers.target\nEOF\nsudo systemctl daemon-reload &amp;&amp; sudo systemctl enable --now vps-health.timer\njournalctl -u vps-health.service -n 40 --no-pager<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Reading the Output Without Guesswork<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The nine checks above will flag roughly four distinct root causes: runaway log or cache growth (checks 1\u20132), memory leaks (checks 3\u20134), hypervisor contention or genuine overload (checks 5\u20136), and network\/kernel misconfiguration (checks 7\u20138). If only check 9 fires while 1\u20138 are clean, you are looking at an application or dependency failure, not a server one \u2014 go read the unit&#8217;s journal first. `journalctl -u <service> -p err -S -1h &#8211;no-pager` is the fastest path.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Establish a Baseline Before the First Alert<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Thresholds above are generic. Your instance has its own normal, and an alert that fires during a nightly backup teaches you to ignore alerts. Capture a seven-day baseline first, then set your cutoffs relative to it:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Collect five core metrics every minute for a week (no agent required)\nsudo tee \/etc\/cron.d\/vps-baseline &gt;\/dev\/null &lt;&lt;'EOF'\n* * * * * root \/usr\/local\/bin\/vps-snapshot.sh &gt;\/dev\/null 2&gt;&amp;1\nEOF\nsudo tee \/usr\/local\/bin\/vps-snapshot.sh &gt;\/dev\/null &lt;&lt;'EOF'\n#!\/usr\/bin\/env bash\nts=$(date +%s)\nsteal=$(awk '\/^cpu \/{print $9}' \/proc\/stat)\nload1=$(cut -d' ' -f1 \/proc\/loadavg)\navail=$(awk '\/MemAvailable\/{print $2}' \/proc\/meminfo)\nswapin=$(awk '\/pswpin\/{print $2}' \/proc\/vmstat)\nrootpct=$(df -P \/ | awk 'NR==2{gsub(\/%\/,\"\",$5); print $5}')\necho \"$ts $steal $load1 $avail $swapin $rootpct\" &gt;&gt; \/var\/log\/vps-baseline.tsv\nEOF\nsudo chmod +x \/usr\/local\/bin\/vps-snapshot.sh\n\n# After a week, look at the daily peaks rather than the mean:\nawk 'BEGIN{max=0}{if($3&gt;max)max=$3} END{print \"peak load1:\", max}' \/var\/log\/vps-baseline.tsv\nawk 'BEGIN{max=0}{if($6&gt;max)max=$6} END{print \"peak root%:\", max}' \/var\/log\/vps-baseline.tsv<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Set the load cutoff at roughly 1.3x your observed peak, the memory floor at 60% of your observed minimum, and disk at 85% regardless of baseline \u2014 the filesystem-level cutoff is not negotiable. This turns a generic nine-check script into one that is quiet when your server is healthy and specific when it is not.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Healthy Quiet Actually Looks Like<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A well-tuned 2 vCPU \/ 4 GB VPS on a committed host, running nginx plus PHP-FPM plus MariaDB, idles at load 0.05\u20130.15, holds steal under 0.5%, keeps 40\u201360% of RAM in page cache, and never touches swap. If your idle signature is meaningfully worse than that, the problem predates any workload you have added \u2014 and the allocation mechanics in <a href=\"https:\/\/virtualserversvps.com\/\">our published VPS benchmark dataset<\/a> explain which host characteristics produce which idle signature.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Two thresholds people set wrong: load average and disk. Load average on a single-core VM of 1.5 is fine (waiting on I\/O counts as runnable); 6.0 on eight cores is a real problem. And 85% disk, not 95%, because ext4 needs roughly 5% free to avoid fragmentation-driven slow writes, and logrotate needs room to do its job. If you are consistently near the disk threshold, the reclaim workflow in <a href=\"https:\/\/virtualserversvps.com\/\">our VPS performance resources<\/a> will buy you back the space, and <a href=\"https:\/\/virtualserversvps.com\/#providers\">the provider comparison<\/a> is where to look if you have simply outgrown the volume size.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you are tuning a small VPS and want hardware that does not fight you, <a href=\"https:\/\/virtualserversvps.com\/#providers\">our VPS provider performance tables<\/a> break down CPU steal, NVMe IOPS, and RAM overcommit behaviour across the hosts we test on. Newer KVM nodes with dedicated vCPU pinning make the numbers in this article reproducible rather than aspirational. Two hosts we keep coming back to: <a href=\"https:\/\/interserver.net\/vps?id=1067805&#038;sid=virtualserversvps\" target=\"_blank\" rel=\"noreferrer noopener sponsored\">InterServer VPS<\/a> for flat-rate pricing with no RAM upcharge, and <a href=\"https:\/\/cloudways.com\/en\/?id=2010927&#038;data1=virtualserversvps\" target=\"_blank\" rel=\"noreferrer noopener sponsored\">Cloudways managed cloud<\/a> if you would rather not manage the kernel yourself. Compare the two against <a href=\"https:\/\/virtualserversvps.com\/\">the benchmark methodology we publish<\/a> before you commit.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A health check without a threshold is a log line. These are the nine checks worth automating on a production Linux VPS, the exact cutoff for each, and the command&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":6,"footnotes":""},"categories":[3],"tags":[],"class_list":["post-465","post","type-post","status-publish","format-standard","hentry","category-performance-optimization"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.1 (Yoast SEO v26.1) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Linux VPS Health Checks: Thresholds, One-Liners, and the Cron That Runs Them - Virtual Servers VPS Blog<\/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:\/\/virtualserversvps.com\/blog\/vps-server-health-monitoring-checklist-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Linux VPS Health Checks: Thresholds, One-Liners, and the Cron That Runs Them\" \/>\n<meta property=\"og:description\" content=\"Linux VPS Health Checks: Thresholds, One-Liners, and the Cron That Runs Them\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtualserversvps.com\/blog\/vps-server-health-monitoring-checklist-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual Servers VPS Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-20T02:34:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-09-14T22:03:21+00:00\" \/>\n<meta name=\"author\" content=\"Virtual-Servers-Vps-Editor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Virtual-Servers-Vps-Editor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/vps-server-health-monitoring-checklist-linux\/\",\"url\":\"https:\/\/virtualserversvps.com\/blog\/vps-server-health-monitoring-checklist-linux\/\",\"name\":\"Linux VPS Health Checks: Thresholds, One-Liners, and the Cron That Runs Them - Virtual Servers VPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#website\"},\"datePublished\":\"2026-06-20T02:34:26+00:00\",\"dateModified\":\"2026-09-14T22:03:21+00:00\",\"author\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0\"},\"breadcrumb\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/vps-server-health-monitoring-checklist-linux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtualserversvps.com\/blog\/vps-server-health-monitoring-checklist-linux\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/vps-server-health-monitoring-checklist-linux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtualserversvps.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Linux VPS Health Checks: Thresholds, One-Liners, and the Cron That Runs Them\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#website\",\"url\":\"https:\/\/virtualserversvps.com\/blog\/\",\"name\":\"Virtual Servers VPS Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/virtualserversvps.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0\",\"name\":\"Virtual-Servers-Vps-Editor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g\",\"caption\":\"Virtual-Servers-Vps-Editor\"},\"sameAs\":[\"https:\/\/virtualserversvps.com\/blog\"],\"url\":\"https:\/\/virtualserversvps.com\/blog\/author\/virtualserversvps\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Linux VPS Health Checks: Thresholds, One-Liners, and the Cron That Runs Them - Virtual Servers VPS Blog","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:\/\/virtualserversvps.com\/blog\/vps-server-health-monitoring-checklist-linux\/","og_locale":"en_US","og_type":"article","og_title":"Linux VPS Health Checks: Thresholds, One-Liners, and the Cron That Runs Them","og_description":"Linux VPS Health Checks: Thresholds, One-Liners, and the Cron That Runs Them","og_url":"https:\/\/virtualserversvps.com\/blog\/vps-server-health-monitoring-checklist-linux\/","og_site_name":"Virtual Servers VPS Blog","article_published_time":"2026-06-20T02:34:26+00:00","article_modified_time":"2026-09-14T22:03:21+00:00","author":"Virtual-Servers-Vps-Editor","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Virtual-Servers-Vps-Editor","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/virtualserversvps.com\/blog\/vps-server-health-monitoring-checklist-linux\/","url":"https:\/\/virtualserversvps.com\/blog\/vps-server-health-monitoring-checklist-linux\/","name":"Linux VPS Health Checks: Thresholds, One-Liners, and the Cron That Runs Them - Virtual Servers VPS Blog","isPartOf":{"@id":"https:\/\/virtualserversvps.com\/blog\/#website"},"datePublished":"2026-06-20T02:34:26+00:00","dateModified":"2026-09-14T22:03:21+00:00","author":{"@id":"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0"},"breadcrumb":{"@id":"https:\/\/virtualserversvps.com\/blog\/vps-server-health-monitoring-checklist-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtualserversvps.com\/blog\/vps-server-health-monitoring-checklist-linux\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/virtualserversvps.com\/blog\/vps-server-health-monitoring-checklist-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtualserversvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Linux VPS Health Checks: Thresholds, One-Liners, and the Cron That Runs Them"}]},{"@type":"WebSite","@id":"https:\/\/virtualserversvps.com\/blog\/#website","url":"https:\/\/virtualserversvps.com\/blog\/","name":"Virtual Servers VPS Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/virtualserversvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0","name":"Virtual-Servers-Vps-Editor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g","caption":"Virtual-Servers-Vps-Editor"},"sameAs":["https:\/\/virtualserversvps.com\/blog"],"url":"https:\/\/virtualserversvps.com\/blog\/author\/virtualserversvps\/"}]}},"_links":{"self":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts\/465","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/comments?post=465"}],"version-history":[{"count":5,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts\/465\/revisions"}],"predecessor-version":[{"id":1134,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts\/465\/revisions\/1134"}],"wp:attachment":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/media?parent=465"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/categories?post=465"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/tags?post=465"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}