{"id":4363,"date":"2011-10-08T14:14:14","date_gmt":"2011-10-08T08:44:14","guid":{"rendered":"https:\/\/2thenew.xyz\/blog\/?p=4363"},"modified":"2017-02-12T19:21:08","modified_gmt":"2017-02-12T13:51:08","slug":"mysql-top-just-like-we-have-top-command-in-linux","status":"publish","type":"post","link":"https:\/\/2thenew.xyz\/blog\/mysql-top-just-like-we-have-top-command-in-linux\/","title":{"rendered":"Mysql top just like we have top command in Linux"},"content":{"rendered":"<div>Once in my grails project i was facing the problem of freeze of server.When this happens tomcat becomes unresponsive.Later on by\u00a0analyzing\u00a0the thread dump we found that this problem might be due to the database and tomcat communication. So as to analyse how many connection are active at mysql end we found a query.<\/div>\n<p>Show processlist;<\/p>\n<p>Which gives us the result as:<br \/>\nOutput:<br \/>\n+&#8212;&#8211;+&#8212;&#8212;+&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;+&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<\/p>\n<p>| Id \u00a0| User | Host \u00a0 \u00a0 \u00a0| db \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0| Command | Time | State | Info \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 |<\/p>\n<p>+&#8212;&#8211;+&#8212;&#8212;+&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;+&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<\/p>\n<p>| 242 | root | localhost | \u00a0 \u00a0 \u00a0test_db \u00a0 \u00a0| Query \u00a0 | \u00a0 \u00a00 | NULL \u00a0| show processlist |<\/p>\n<p>+&#8212;&#8211;+&#8212;&#8212;+&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;+&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<\/p>\n<p>The output shows how many connections are active and their properties.<br \/>\nBut for this you need to run the query again and again to analyse the connections information. For a better experience we can use mytop \u00a0which is very easy to install and just like the top in linux, simple steps need to be followed to make it work.<\/p>\n<p>Step 1:Install mytop using the following command.<\/p>\n<p>anuj@intelligrape:~$ sudo apt-get install mytop<br \/>\nStep 2:<br \/>\nAfter installation we need make a configuration file .mysqlconfig any where<br \/>\ne.g<br \/>\nanuj@intelligrape:~$ vim .mysqlconfig<br \/>\nuser=<\/p>\n<p>pass=<\/p>\n<p>host=localhost<\/p>\n<p>db=db_name<\/p>\n<p>delay=5<\/p>\n<p>port=330<\/p>\n<p>6socket=<\/p>\n<p>batchmode=0<\/p>\n<p>header=1<\/p>\n<p>color=1<\/p>\n<p>idle=1<\/p>\n<p>For more option you can refer to documentation of mytop .<br \/>\nStep 3:<br \/>\nNow just need run this command to see the mysqltop working.<br \/>\nanuj@intelligrape:~$ mytop ~\/.mysqlconfig<br \/>\noutput:<\/p>\n<p>Thats it ! Internally it runs the query &#8220;show processlist&#8221; and is very elegant for analysing mysql connections.<\/p>\n<p>This helps me! Hope this helps you guys!<br \/>\nAnuj Aneja<\/p>\n<p>Intelligrape Software<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Once in my grails project i was facing the problem of freeze of server.When this happens tomcat becomes unresponsive.Later on by\u00a0analyzing\u00a0the thread dump we found that this problem might be due to the database and tomcat communication. So as to analyse how many connection are active at mysql end we found a query. Show processlist; [&hellip;]<\/p>\n","protected":false},"author":27,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":13,"footnotes":""},"categories":[7],"tags":[260,76],"class_list":["post-4363","post","type-post","status-publish","format-standard","hentry","category-grails","tag-linux","tag-mysql"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Once in my grails project i was facing the problem of freeze of server.When this happens tomcat becomes unresponsive.Later on by analyzing the thread dump we found that this problem might be due to the database and tomcat communication. So as to analyse how many connection are active at mysql end we found a query. Show processlist;\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Anuj Aneja\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.xyz\/blog\/mysql-top-just-like-we-have-top-command-in-linux\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Mysql top just like we have top command in Linux | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Once in my grails project i was facing the problem of freeze of server.When this happens tomcat becomes unresponsive.Later on by analyzing the thread dump we found that this problem might be due to the database and tomcat communication. So as to analyse how many connection are active at mysql end we found a query. Show processlist;\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.xyz\/blog\/mysql-top-just-like-we-have-top-command-in-linux\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Mysql top just like we have top command in Linux | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Once in my grails project i was facing the problem of freeze of server.When this happens tomcat becomes unresponsive.Later on by analyzing the thread dump we found that this problem might be due to the database and tomcat communication. So as to analyse how many connection are active at mysql end we found a query. Show processlist;\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/mysql-top-just-like-we-have-top-command-in-linux\\\/#article\",\"name\":\"Mysql top just like we have top command in Linux | TO THE NEW Blog\",\"headline\":\"Mysql top just like we have top command in Linux\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/anuj\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2011-10-08T14:14:14+05:30\",\"dateModified\":\"2017-02-12T19:21:08+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/mysql-top-just-like-we-have-top-command-in-linux\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/mysql-top-just-like-we-have-top-command-in-linux\\\/#webpage\"},\"articleSection\":\"Grails, Linux, MySql\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/mysql-top-just-like-we-have-top-command-in-linux\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"name\":\"Grails\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"position\":2,\"name\":\"Grails\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/mysql-top-just-like-we-have-top-command-in-linux\\\/#listItem\",\"name\":\"Mysql top just like we have top command in Linux\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/mysql-top-just-like-we-have-top-command-in-linux\\\/#listItem\",\"position\":3,\"name\":\"Mysql top just like we have top command in Linux\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"name\":\"Grails\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/anuj\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/anuj\\\/\",\"name\":\"Anuj Aneja\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/mysql-top-just-like-we-have-top-command-in-linux\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/26506d32d9a4d14f9fa04eedd76468df74b43724e0014df4900dadc5f9cd2ff7?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Anuj Aneja\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/mysql-top-just-like-we-have-top-command-in-linux\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/mysql-top-just-like-we-have-top-command-in-linux\\\/\",\"name\":\"Mysql top just like we have top command in Linux | TO THE NEW Blog\",\"description\":\"Once in my grails project i was facing the problem of freeze of server.When this happens tomcat becomes unresponsive.Later on by analyzing the thread dump we found that this problem might be due to the database and tomcat communication. So as to analyse how many connection are active at mysql end we found a query. Show processlist;\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/mysql-top-just-like-we-have-top-command-in-linux\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/anuj\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/anuj\\\/#author\"},\"datePublished\":\"2011-10-08T14:14:14+05:30\",\"dateModified\":\"2017-02-12T19:21:08+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Mysql top just like we have top command in Linux | TO THE NEW Blog","description":"Once in my grails project i was facing the problem of freeze of server.When this happens tomcat becomes unresponsive.Later on by analyzing the thread dump we found that this problem might be due to the database and tomcat communication. So as to analyse how many connection are active at mysql end we found a query. Show processlist;","canonical_url":"https:\/\/2thenew.xyz\/blog\/mysql-top-just-like-we-have-top-command-in-linux\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.xyz\/blog\/mysql-top-just-like-we-have-top-command-in-linux\/#article","name":"Mysql top just like we have top command in Linux | TO THE NEW Blog","headline":"Mysql top just like we have top command in Linux","author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/anuj\/#author"},"publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"},"datePublished":"2011-10-08T14:14:14+05:30","dateModified":"2017-02-12T19:21:08+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.xyz\/blog\/mysql-top-just-like-we-have-top-command-in-linux\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/mysql-top-just-like-we-have-top-command-in-linux\/#webpage"},"articleSection":"Grails, Linux, MySql"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.xyz\/blog\/mysql-top-just-like-we-have-top-command-in-linux\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.xyz\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/grails\/#listItem","name":"Grails"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/grails\/#listItem","position":2,"name":"Grails","item":"https:\/\/2thenew.xyz\/blog\/category\/grails\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/mysql-top-just-like-we-have-top-command-in-linux\/#listItem","name":"Mysql top just like we have top command in Linux"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/mysql-top-just-like-we-have-top-command-in-linux\/#listItem","position":3,"name":"Mysql top just like we have top command in Linux","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/grails\/#listItem","name":"Grails"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.xyz\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.xyz\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.xyz\/blog\/author\/anuj\/#author","url":"https:\/\/2thenew.xyz\/blog\/author\/anuj\/","name":"Anuj Aneja","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.xyz\/blog\/mysql-top-just-like-we-have-top-command-in-linux\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/26506d32d9a4d14f9fa04eedd76468df74b43724e0014df4900dadc5f9cd2ff7?s=96&d=mm&r=g","width":96,"height":96,"caption":"Anuj Aneja"}},{"@type":"WebPage","@id":"https:\/\/2thenew.xyz\/blog\/mysql-top-just-like-we-have-top-command-in-linux\/#webpage","url":"https:\/\/2thenew.xyz\/blog\/mysql-top-just-like-we-have-top-command-in-linux\/","name":"Mysql top just like we have top command in Linux | TO THE NEW Blog","description":"Once in my grails project i was facing the problem of freeze of server.When this happens tomcat becomes unresponsive.Later on by analyzing the thread dump we found that this problem might be due to the database and tomcat communication. So as to analyse how many connection are active at mysql end we found a query. Show processlist;","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.xyz\/blog\/mysql-top-just-like-we-have-top-command-in-linux\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/anuj\/#author"},"creator":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/anuj\/#author"},"datePublished":"2011-10-08T14:14:14+05:30","dateModified":"2017-02-12T19:21:08+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.xyz\/blog\/#website","url":"https:\/\/2thenew.xyz\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Mysql top just like we have top command in Linux | TO THE NEW Blog","og:description":"Once in my grails project i was facing the problem of freeze of server.When this happens tomcat becomes unresponsive.Later on by analyzing the thread dump we found that this problem might be due to the database and tomcat communication. So as to analyse how many connection are active at mysql end we found a query. Show processlist;","og:url":"https:\/\/2thenew.xyz\/blog\/mysql-top-just-like-we-have-top-command-in-linux\/","og:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Mysql top just like we have top command in Linux | TO THE NEW Blog","twitter:description":"Once in my grails project i was facing the problem of freeze of server.When this happens tomcat becomes unresponsive.Later on by analyzing the thread dump we found that this problem might be due to the database and tomcat communication. So as to analyse how many connection are active at mysql end we found a query. Show processlist;","twitter:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"4363","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":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"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":"2021-04-30 08:13:04","updated":"2024-02-29 10:57:32","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"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:\/\/2thenew.xyz\/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:\/\/2thenew.xyz\/blog\/category\/grails\/\" title=\"Grails\">Grails<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tMysql top just like we have top command in Linux\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.xyz\/blog"},{"label":"Grails","link":"https:\/\/2thenew.xyz\/blog\/category\/grails\/"},{"label":"Mysql top just like we have top command in Linux","link":"https:\/\/2thenew.xyz\/blog\/mysql-top-just-like-we-have-top-command-in-linux\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/4363","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/users\/27"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/comments?post=4363"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/4363\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/media?parent=4363"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/categories?post=4363"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/tags?post=4363"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}