{"id":38246,"date":"2016-07-27T12:16:52","date_gmt":"2016-07-27T06:46:52","guid":{"rendered":"https:\/\/2thenew.xyz\/blog\/?p=38246"},"modified":"2016-07-27T17:31:25","modified_gmt":"2016-07-27T12:01:25","slug":"master-slave-load-testing-using-locust","status":"publish","type":"post","link":"https:\/\/2thenew.xyz\/blog\/master-slave-load-testing-using-locust\/","title":{"rendered":"Master-Slave Load Testing using Locust"},"content":{"rendered":"<p>In the previous blog\u00a0we have discussed what is locust , why we use locust for load testing and how to implement it. So if you are wondering\u00a0what locust is and how it works or for a better understanding, see <a href=\"https:\/\/2thenew.xyz\/blog\/performing-heavy-load-testing-on-your-website-using-python-based-tool-locust\/\">locust<\/a>\u00a0.Now in this blog we are here to discuss about running locust in distributive way.<\/p>\n<p>For a single machine it is not enough to simulate the number of users we need,so locust supports running load tests using multiple machines i.e in a master-slave setup.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-38272\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/07\/pasted-image-0.png\" alt=\"pasted image 0\" width=\"500\" height=\"378\" \/><\/p>\n<h2>Quick Start<\/h2>\n<ul>\n<li>To start locust in a master mode we have to use &#8211;master flag.\n<p>[js]locust -f load.py &#8211;master &#8211;host=http:\/\/example.com[\/js]<\/p>\n<p>This provide us the web interface on master server to start the test and see live statistics:<em><strong><br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-38251\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/07\/master-without-slave.png\" alt=\"master without slave\" width=\"1286\" height=\"612\" \/><\/strong><\/em><\/p>\n<p><em><strong><span style=\"color: #000080\">Note:<\/span><\/strong><span style=\"color: #000080\"> Master server do not simulate any user itself. For this we have to start one or more slaves using &#8211;slave flag<\/span><\/em><\/li>\n<\/ul>\n<ul>\n<li>To start locust as a slave machine:<br \/>\nOn the slave-machine use &#8211;slave flag and &#8211;master-host.<\/p>\n<p>[js]locust -f load.py &#8211;slave &#8211;master-host=master-host-ip[\/js]<\/p>\n<p><span style=\"color: #000080\"><em><span style=\"line-height: 1.71429;font-size: 1rem\"><strong>Note:<\/strong> Both master and slave must have copy of locust script<br \/>\n<\/span><\/em><\/span>Here,we have added one slave machine,we can see at the right corner of web interface which is increment on adding and starting slaves:<br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-38252\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/07\/slave1-adde.png\" alt=\"slave1 adde\" width=\"1271\" height=\"528\" \/><\/p>\n<p>Similarly, for the second slave:<br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-38253\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/07\/slave-2-master.png\" alt=\"slave 2 master\" width=\"1218\" height=\"618\" \/><\/li>\n<\/ul>\n<p>Now, we are ready with our slaves where can provide the number of users and hatch rate to start generating load on a particular website:<br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-38254\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/07\/fianle2.png\" alt=\"fianle2\" width=\"1120\" height=\"319\" \/><\/p>\n<p><strong>Locust Report<\/strong><\/p>\n<p>The load test report can be downloaded from the from the web interface from the\u00a0\u00a0&#8220;Download Data&#8221; option or we can also use &#8211;logfile option to save report in the server itself.<\/p>\n<p>[js]locust -f load.py &#8211;logfile=logfilepath &#8211;master &#8211;host=http:\/\/example.com[\/js]<\/p>\n<p><strong>Optional flags for running Locust:<\/strong><br \/>\n<strong>&#8211;master:<\/strong> use this flag to assign machine as master in a distributed\u00a0setup.<br \/>\n<strong>&#8211;master-host:<\/strong> use this flag to tell the slave about the hostname.<br \/>\n<strong>&#8211;slave:<\/strong> assign machine as slave.<br \/>\n<strong>&#8211;master-port:<\/strong> tell slave on which port the locust master in running.<br \/>\n<strong>&#8211;master-bind-port:<\/strong> use this flag to assign port for master in the master machine (default is 5557).<br \/>\n<strong>&#8211;master-bind-host:<\/strong> use this flag to bind master to particular host.<\/p>\n<p>I hope this will help in understanding how to load test your applications using master slave setup in locust \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the previous blog\u00a0we have discussed what is locust , why we use locust for load testing and how to implement it. So if you are wondering\u00a0what locust is and how it works or for a better understanding, see locust\u00a0.Now in this blog we are here to discuss about running locust in distributive way. For [&hellip;]<\/p>\n","protected":false},"author":917,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":58,"footnotes":""},"categories":[2348,1,1816],"tags":[1892,3262,3455,2892,1358],"class_list":["post-38246","post","type-post","status-publish","format-standard","hentry","category-devops-technology","category-technology","category-testing-2","tag-devops","tag-distibuted-load-testing","tag-locust","tag-master-slave","tag-python"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"In the previous blog we have discussed what is locust , why we use locust for load testing and how to implement it. So if you are wondering what locust is and how it works or for a better understanding, see locust .Now in this blog we are here to discuss about running locust in distributive way. For\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Mayur Rastogi\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.xyz\/blog\/master-slave-load-testing-using-locust\/\" \/>\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=\"Master-Slave Load Testing using Locust | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"In the previous blog we have discussed what is locust , why we use locust for load testing and how to implement it. So if you are wondering what locust is and how it works or for a better understanding, see locust .Now in this blog we are here to discuss about running locust in distributive way. For\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.xyz\/blog\/master-slave-load-testing-using-locust\/\" \/>\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=\"Master-Slave Load Testing using Locust | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"In the previous blog we have discussed what is locust , why we use locust for load testing and how to implement it. So if you are wondering what locust is and how it works or for a better understanding, see locust .Now in this blog we are here to discuss about running locust in distributive way. For\" \/>\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\\\/master-slave-load-testing-using-locust\\\/#article\",\"name\":\"Master-Slave Load Testing using Locust | TO THE NEW Blog\",\"headline\":\"Master-Slave Load Testing using Locust\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/mayur-rastogi\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2016\\\/07\\\/pasted-image-0.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/master-slave-load-testing-using-locust\\\/#articleImage\"},\"datePublished\":\"2016-07-27T12:16:52+05:30\",\"dateModified\":\"2016-07-27T17:31:25+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/master-slave-load-testing-using-locust\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/master-slave-load-testing-using-locust\\\/#webpage\"},\"articleSection\":\"DevOps, Technology, Testing, devops, Distibuted Load testing, locust, master slave, python\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/master-slave-load-testing-using-locust\\\/#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\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/master-slave-load-testing-using-locust\\\/#listItem\",\"name\":\"Master-Slave Load Testing using Locust\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/master-slave-load-testing-using-locust\\\/#listItem\",\"position\":3,\"name\":\"Master-Slave Load Testing using Locust\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@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\\\/mayur-rastogi\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/mayur-rastogi\\\/\",\"name\":\"Mayur Rastogi\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/master-slave-load-testing-using-locust\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/bbe1e64c-d560-4de3-9fb2-9d937b898cef_mayur.rastogi@tothenew.com.jpg\",\"width\":96,\"height\":96,\"caption\":\"Mayur Rastogi\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/master-slave-load-testing-using-locust\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/master-slave-load-testing-using-locust\\\/\",\"name\":\"Master-Slave Load Testing using Locust | TO THE NEW Blog\",\"description\":\"In the previous blog we have discussed what is locust , why we use locust for load testing and how to implement it. So if you are wondering what locust is and how it works or for a better understanding, see locust .Now in this blog we are here to discuss about running locust in distributive way. For\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/master-slave-load-testing-using-locust\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/mayur-rastogi\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/mayur-rastogi\\\/#author\"},\"datePublished\":\"2016-07-27T12:16:52+05:30\",\"dateModified\":\"2016-07-27T17:31:25+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":"Master-Slave Load Testing using Locust | TO THE NEW Blog","description":"In the previous blog we have discussed what is locust , why we use locust for load testing and how to implement it. So if you are wondering what locust is and how it works or for a better understanding, see locust .Now in this blog we are here to discuss about running locust in distributive way. For","canonical_url":"https:\/\/2thenew.xyz\/blog\/master-slave-load-testing-using-locust\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.xyz\/blog\/master-slave-load-testing-using-locust\/#article","name":"Master-Slave Load Testing using Locust | TO THE NEW Blog","headline":"Master-Slave Load Testing using Locust","author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/mayur-rastogi\/#author"},"publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2016\/07\/pasted-image-0.png","@id":"https:\/\/2thenew.xyz\/blog\/master-slave-load-testing-using-locust\/#articleImage"},"datePublished":"2016-07-27T12:16:52+05:30","dateModified":"2016-07-27T17:31:25+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.xyz\/blog\/master-slave-load-testing-using-locust\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/master-slave-load-testing-using-locust\/#webpage"},"articleSection":"DevOps, Technology, Testing, devops, Distibuted Load testing, locust, master slave, python"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.xyz\/blog\/master-slave-load-testing-using-locust\/#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\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/2thenew.xyz\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/master-slave-load-testing-using-locust\/#listItem","name":"Master-Slave Load Testing using Locust"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/master-slave-load-testing-using-locust\/#listItem","position":3,"name":"Master-Slave Load Testing using Locust","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@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\/mayur-rastogi\/#author","url":"https:\/\/2thenew.xyz\/blog\/author\/mayur-rastogi\/","name":"Mayur Rastogi","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.xyz\/blog\/master-slave-load-testing-using-locust\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/bbe1e64c-d560-4de3-9fb2-9d937b898cef_mayur.rastogi@tothenew.com.jpg","width":96,"height":96,"caption":"Mayur Rastogi"}},{"@type":"WebPage","@id":"https:\/\/2thenew.xyz\/blog\/master-slave-load-testing-using-locust\/#webpage","url":"https:\/\/2thenew.xyz\/blog\/master-slave-load-testing-using-locust\/","name":"Master-Slave Load Testing using Locust | TO THE NEW Blog","description":"In the previous blog we have discussed what is locust , why we use locust for load testing and how to implement it. So if you are wondering what locust is and how it works or for a better understanding, see locust .Now in this blog we are here to discuss about running locust in distributive way. For","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.xyz\/blog\/master-slave-load-testing-using-locust\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/mayur-rastogi\/#author"},"creator":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/mayur-rastogi\/#author"},"datePublished":"2016-07-27T12:16:52+05:30","dateModified":"2016-07-27T17:31:25+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":"Master-Slave Load Testing using Locust | TO THE NEW Blog","og:description":"In the previous blog we have discussed what is locust , why we use locust for load testing and how to implement it. So if you are wondering what locust is and how it works or for a better understanding, see locust .Now in this blog we are here to discuss about running locust in distributive way. For","og:url":"https:\/\/2thenew.xyz\/blog\/master-slave-load-testing-using-locust\/","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":"Master-Slave Load Testing using Locust | TO THE NEW Blog","twitter:description":"In the previous blog we have discussed what is locust , why we use locust for load testing and how to implement it. So if you are wondering what locust is and how it works or for a better understanding, see locust .Now in this blog we are here to discuss about running locust in distributive way. For","twitter:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"38246","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","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":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","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-29 12:59:40","updated":"2024-02-29 08:42:25","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\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tMaster-Slave Load Testing using Locust\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.xyz\/blog"},{"label":"Technology","link":"https:\/\/2thenew.xyz\/blog\/category\/technology\/"},{"label":"Master-Slave Load Testing using Locust","link":"https:\/\/2thenew.xyz\/blog\/master-slave-load-testing-using-locust\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/38246","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\/917"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/comments?post=38246"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/38246\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/media?parent=38246"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/categories?post=38246"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/tags?post=38246"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}