{"id":2997,"date":"2016-01-19T01:20:29","date_gmt":"2016-01-19T01:20:29","guid":{"rendered":"http:\/\/www.garysieling.com\/blog\/?p=2997"},"modified":"2016-01-19T01:20:29","modified_gmt":"2016-01-19T01:20:29","slug":"regular-expression-to-match-postgres-vacuum-log-statements","status":"publish","type":"post","link":"https:\/\/www.garysieling.com\/blog\/regular-expression-to-match-postgres-vacuum-log-statements\/","title":{"rendered":"Regular Expression to match Postgres Vacuum log statements"},"content":{"rendered":"<p>You can get log entries for every vacuum in Postgres by enabling this setting in postgresql.conf:<\/p>\n<pre>\nlog_autovacuum_min_duration=0\n<\/pre>\n<p>Obviously you may prefer to increase the timing too, if you get a lot of entries. This is what the log entries look like:<\/p>\n<pre>\nautomatic vacuum of table \"db.pg_catalog.pg_class\": index scans: 1\n\tpages: 0 removed, 143 remain\n\ttuples: 204 removed, 4498 remain\n\tbuffer usage: 463 hits, 87 misses, 131 dirtied\n\tavg read rate: 1.654 MB\/s, avg write rate: 2.490 MB\/s\n\tsystem usage: CPU 0.00s\/0.00u sec elapsed 0.41 sec\n<\/pre>\n<p>For monitoring purposes it is helpful to extract all these values. In testing this, I found that &#8220;system usage&#8221; was not always reported, so there are actually two regexes:<\/p>\n<pre lang=\"regex\">\nautomatic vacuum of table \"(?P&lt;vacuum_table_database>[^\"]*)\\.\n(?P&lt;vacuum_table_schema&gt;[^\"]*)\\.(?P&lt;vacuum_table_name&gt'[^\"]*)\": \nindex scans: (?P&lt;vacuum_index_scans&gt;\\d*).*pages: \n(?P&lt;vacuum_pages_removed&gt;\\d*) removed, \n(?P&lt;vacuum_pages_remain&gt;\\d*) remain.*tuples: \n(?P&lt;vacuum_tuples_removed&gt;\\d*) removed, \n(?P&lt;vacuum_tuples_remain&gt;\\d*) remain.*buffer usage: \n(?P&lt;vacuum_buffer_usage_hits&gt;\\d*) hits, \n(?P&lt;vacuum_buffer_usage_misses&gt;\\d*) misses, \n(?P&lt;vacuum_buffer_usage_dirtied&gt;\\d*) dirtied.*\navg read rate: (?P&lt;vacuum_avg_read_rate&gt;[0-9.]*) \n(?P&lt;vacuum_read_rate_units&gt;[^,]*), \navg write rate: (?P&lt;vacuum_avg_write_rate&gt;[0-9.]*) \n(?P&lt;vacuum_write_rate_units&gt;[^,]*)\t\n<\/pre>\n<p>And:<\/p>\n<pre lang=\"regex\">\n.*system usage: CPU (?P&lt;vacuum_cpu_seconds&gt;[0-9.]*)s.\n(?P&lt;vacuum_cpu_time&gt;[0-9.]*)u sec elapsed \n(?P&lt;vacuum_elapsed_time&gt;[0-9.]*) \n(?P&lt;vacuum_cpu_elapsed_unit&gt;.*)\t\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>You can get log entries for every vacuum in Postgres by enabling this setting in postgresql.conf: log_autovacuum_min_duration=0 Obviously you may prefer to increase the timing too, if you get a lot of entries. This is what the log entries look like: automatic vacuum of table &#8220;db.pg_catalog.pg_class&#8221;: index scans: 1 pages: 0 removed, 143 remain tuples: &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.garysieling.com\/blog\/regular-expression-to-match-postgres-vacuum-log-statements\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Regular Expression to match Postgres Vacuum log statements&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"footnotes":""},"categories":[4],"tags":[186,370,437,522,565],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"You can get log entries for every vacuum in Postgres by enabling this setting in postgresql.conf: log_autovacuum_min_duration=0 Obviously you may prefer to increase the timing too, if you get a lot of entries. This is what the log entries look like: automatic vacuum of table &quot;db.pg_catalog.pg_class&quot;: index scans: 1 pages: 0 removed, 143 remain tuples:\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"gary\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.garysieling.com\/blog\/regular-expression-to-match-postgres-vacuum-log-statements\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Gary Sieling - Software Engineer\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Regular Expression to match Postgres Vacuum log statements - Gary Sieling\" \/>\n\t\t<meta property=\"og:description\" content=\"You can get log entries for every vacuum in Postgres by enabling this setting in postgresql.conf: log_autovacuum_min_duration=0 Obviously you may prefer to increase the timing too, if you get a lot of entries. This is what the log entries look like: automatic vacuum of table &quot;db.pg_catalog.pg_class&quot;: index scans: 1 pages: 0 removed, 143 remain tuples:\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.garysieling.com\/blog\/regular-expression-to-match-postgres-vacuum-log-statements\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2016-01-19T01:20:29+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2016-01-19T01:20:29+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Regular Expression to match Postgres Vacuum log statements - Gary Sieling\" \/>\n\t\t<meta name=\"twitter:description\" content=\"You can get log entries for every vacuum in Postgres by enabling this setting in postgresql.conf: log_autovacuum_min_duration=0 Obviously you may prefer to increase the timing too, if you get a lot of entries. This is what the log entries look like: automatic vacuum of table &quot;db.pg_catalog.pg_class&quot;: index scans: 1 pages: 0 removed, 143 remain tuples:\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/regular-expression-to-match-postgres-vacuum-log-statements\\\/#blogposting\",\"name\":\"Regular Expression to match Postgres Vacuum log statements - Gary Sieling\",\"headline\":\"Regular Expression to match Postgres Vacuum log statements\",\"author\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\"},\"datePublished\":\"2016-01-19T01:20:29+00:00\",\"dateModified\":\"2016-01-19T01:20:29+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/regular-expression-to-match-postgres-vacuum-log-statements\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/regular-expression-to-match-postgres-vacuum-log-statements\\\/#webpage\"},\"articleSection\":\"Code Examples, elk, monitoring, postgres, splunk, vacuum\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/regular-expression-to-match-postgres-vacuum-log-statements\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.garysieling.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/code-examples\\\/#listItem\",\"name\":\"Code Examples\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/code-examples\\\/#listItem\",\"position\":2,\"name\":\"Code Examples\",\"item\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/code-examples\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/regular-expression-to-match-postgres-vacuum-log-statements\\\/#listItem\",\"name\":\"Regular Expression to match Postgres Vacuum log statements\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/regular-expression-to-match-postgres-vacuum-log-statements\\\/#listItem\",\"position\":3,\"name\":\"Regular Expression to match Postgres Vacuum log statements\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/code-examples\\\/#listItem\",\"name\":\"Code Examples\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\",\"name\":\"Gary Sieling\",\"description\":\"Software Engineer\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/\",\"name\":\"gary\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/regular-expression-to-match-postgres-vacuum-log-statements\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0be925276d848ffe98a6a9dc8cf33e67?s=96&d=identicon&r=g\",\"width\":96,\"height\":96,\"caption\":\"gary\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/regular-expression-to-match-postgres-vacuum-log-statements\\\/#webpage\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/regular-expression-to-match-postgres-vacuum-log-statements\\\/\",\"name\":\"Regular Expression to match Postgres Vacuum log statements - Gary Sieling\",\"description\":\"You can get log entries for every vacuum in Postgres by enabling this setting in postgresql.conf: log_autovacuum_min_duration=0 Obviously you may prefer to increase the timing too, if you get a lot of entries. This is what the log entries look like: automatic vacuum of table \\\"db.pg_catalog.pg_class\\\": index scans: 1 pages: 0 removed, 143 remain tuples:\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/regular-expression-to-match-postgres-vacuum-log-statements\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"datePublished\":\"2016-01-19T01:20:29+00:00\",\"dateModified\":\"2016-01-19T01:20:29+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/\",\"name\":\"Gary Sieling\",\"description\":\"Software Engineer\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Regular Expression to match Postgres Vacuum log statements - Gary Sieling","description":"You can get log entries for every vacuum in Postgres by enabling this setting in postgresql.conf: log_autovacuum_min_duration=0 Obviously you may prefer to increase the timing too, if you get a lot of entries. This is what the log entries look like: automatic vacuum of table \"db.pg_catalog.pg_class\": index scans: 1 pages: 0 removed, 143 remain tuples:","canonical_url":"https:\/\/www.garysieling.com\/blog\/regular-expression-to-match-postgres-vacuum-log-statements\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.garysieling.com\/blog\/regular-expression-to-match-postgres-vacuum-log-statements\/#blogposting","name":"Regular Expression to match Postgres Vacuum log statements - Gary Sieling","headline":"Regular Expression to match Postgres Vacuum log statements","author":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"publisher":{"@id":"https:\/\/www.garysieling.com\/blog\/#organization"},"datePublished":"2016-01-19T01:20:29+00:00","dateModified":"2016-01-19T01:20:29+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.garysieling.com\/blog\/regular-expression-to-match-postgres-vacuum-log-statements\/#webpage"},"isPartOf":{"@id":"https:\/\/www.garysieling.com\/blog\/regular-expression-to-match-postgres-vacuum-log-statements\/#webpage"},"articleSection":"Code Examples, elk, monitoring, postgres, splunk, vacuum"},{"@type":"BreadcrumbList","@id":"https:\/\/www.garysieling.com\/blog\/regular-expression-to-match-postgres-vacuum-log-statements\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.garysieling.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/#listItem","name":"Code Examples"}},{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/#listItem","position":2,"name":"Code Examples","item":"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/regular-expression-to-match-postgres-vacuum-log-statements\/#listItem","name":"Regular Expression to match Postgres Vacuum log statements"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/regular-expression-to-match-postgres-vacuum-log-statements\/#listItem","position":3,"name":"Regular Expression to match Postgres Vacuum log statements","previousItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/#listItem","name":"Code Examples"}}]},{"@type":"Organization","@id":"https:\/\/www.garysieling.com\/blog\/#organization","name":"Gary Sieling","description":"Software Engineer","url":"https:\/\/www.garysieling.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author","url":"https:\/\/www.garysieling.com\/blog\/author\/gary\/","name":"gary","image":{"@type":"ImageObject","@id":"https:\/\/www.garysieling.com\/blog\/regular-expression-to-match-postgres-vacuum-log-statements\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/0be925276d848ffe98a6a9dc8cf33e67?s=96&d=identicon&r=g","width":96,"height":96,"caption":"gary"}},{"@type":"WebPage","@id":"https:\/\/www.garysieling.com\/blog\/regular-expression-to-match-postgres-vacuum-log-statements\/#webpage","url":"https:\/\/www.garysieling.com\/blog\/regular-expression-to-match-postgres-vacuum-log-statements\/","name":"Regular Expression to match Postgres Vacuum log statements - Gary Sieling","description":"You can get log entries for every vacuum in Postgres by enabling this setting in postgresql.conf: log_autovacuum_min_duration=0 Obviously you may prefer to increase the timing too, if you get a lot of entries. This is what the log entries look like: automatic vacuum of table \"db.pg_catalog.pg_class\": index scans: 1 pages: 0 removed, 143 remain tuples:","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.garysieling.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.garysieling.com\/blog\/regular-expression-to-match-postgres-vacuum-log-statements\/#breadcrumblist"},"author":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"creator":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"datePublished":"2016-01-19T01:20:29+00:00","dateModified":"2016-01-19T01:20:29+00:00"},{"@type":"WebSite","@id":"https:\/\/www.garysieling.com\/blog\/#website","url":"https:\/\/www.garysieling.com\/blog\/","name":"Gary Sieling","description":"Software Engineer","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.garysieling.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Gary Sieling - Software Engineer","og:type":"article","og:title":"Regular Expression to match Postgres Vacuum log statements - Gary Sieling","og:description":"You can get log entries for every vacuum in Postgres by enabling this setting in postgresql.conf: log_autovacuum_min_duration=0 Obviously you may prefer to increase the timing too, if you get a lot of entries. This is what the log entries look like: automatic vacuum of table &quot;db.pg_catalog.pg_class&quot;: index scans: 1 pages: 0 removed, 143 remain tuples:","og:url":"https:\/\/www.garysieling.com\/blog\/regular-expression-to-match-postgres-vacuum-log-statements\/","article:published_time":"2016-01-19T01:20:29+00:00","article:modified_time":"2016-01-19T01:20:29+00:00","twitter:card":"summary_large_image","twitter:title":"Regular Expression to match Postgres Vacuum log statements - Gary Sieling","twitter:description":"You can get log entries for every vacuum in Postgres by enabling this setting in postgresql.conf: log_autovacuum_min_duration=0 Obviously you may prefer to increase the timing too, if you get a lot of entries. This is what the log entries look like: automatic vacuum of table &quot;db.pg_catalog.pg_class&quot;: index scans: 1 pages: 0 removed, 143 remain tuples:"},"aioseo_meta_data":{"post_id":"2997","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2023-02-04 16:34:30","updated":"2026-07-06 01:24:44","ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.garysieling.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/\" title=\"Code Examples\">Code Examples<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tRegular Expression to match Postgres Vacuum log statements\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.garysieling.com\/blog"},{"label":"Code Examples","link":"https:\/\/www.garysieling.com\/blog\/category\/code-examples\/"},{"label":"Regular Expression to match Postgres Vacuum log statements","link":"https:\/\/www.garysieling.com\/blog\/regular-expression-to-match-postgres-vacuum-log-statements\/"}],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts\/2997"}],"collection":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/comments?post=2997"}],"version-history":[{"count":0,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts\/2997\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/media?parent=2997"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/categories?post=2997"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/tags?post=2997"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}