{"id":30499,"date":"2024-01-29T13:07:47","date_gmt":"2024-01-29T12:07:47","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=30499"},"modified":"2024-09-10T17:55:26","modified_gmt":"2024-09-10T15:55:26","slug":"how-to-do-improve-your-jmeter-load-testing","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/","title":{"rendered":"How to Improve your JMeter Load Testing?"},"content":{"rendered":"\n<p>In my <a href=\"https:\/\/www.dbi-services.com\/blog\/load-test-m-files-server-with-jmeter\" target=\"_blank\" rel=\"noreferrer noopener\">previous blog post<\/a>, I presented you how to create a load testing scenario based on a recorder. While working on it, I faced small problems that required few fixes which were very repetitive (and you know I love to automate as much as possible \ud83d\ude42 ). Amount the issues I faced, there were:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Extending a scenario with extra actions<\/li>\n\n\n\n<li>Update a scenario as a new version of the application is behaving differently (different HTTP POST data and HTTP results)<\/li>\n<\/ul>\n\n\n\n<p>In this blog post, we will improve the existing load test scenario for <a href=\"https:\/\/www.m-files.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">M-Files<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-extend-a-scenario\">Extend a Scenario<\/h2>\n\n\n\n<p>When extending a scenario, the HTTP requests we will add will have different session ID (sid, M-Files-Session) and thus, we must find them and do a <em>Search and Replace<\/em> again. We must repeat this every time we add an HTTP request from a different recording. This might cause problems and waste of debugging time if not done properly.<\/p>\n\n\n\n<p>A better approach would be to add a new type of object: A <mark class=\"has-inline-color has-light-green-cyan-color\">JSR223 Preprocessor<\/mark>. This code will be called before (as &#8220;pre&#8221; indicates) each call of any type of object of the scenario. With this, we will be able to modify any HTTP request before it triggers.<\/p>\n\n\n\n<p>If you recall my previous blog post, I discovered a client-side generated timestamp hash based on <a href=\"https:\/\/github.com\/unshiftio\/yeast\" target=\"_blank\" rel=\"noreferrer noopener\">yeast<\/a> library:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"611\" src=\"http:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/2024-01-26-22_17_56-Global-Scenario-2024-01.jmx-C__Users_ols_Documents_Technical_Load-Test_M-Files_-1024x611.png\" alt=\"\" class=\"wp-image-30505\" style=\"width:550px\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/2024-01-26-22_17_56-Global-Scenario-2024-01.jmx-C__Users_ols_Documents_Technical_Load-Test_M-Files_-1024x611.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/2024-01-26-22_17_56-Global-Scenario-2024-01.jmx-C__Users_ols_Documents_Technical_Load-Test_M-Files_-300x179.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/2024-01-26-22_17_56-Global-Scenario-2024-01.jmx-C__Users_ols_Documents_Technical_Load-Test_M-Files_-768x458.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/2024-01-26-22_17_56-Global-Scenario-2024-01.jmx-C__Users_ols_Documents_Technical_Load-Test_M-Files_.png 1242w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">&#8220;<strong>t<\/strong>&#8221; parameters in POST<\/figcaption><\/figure>\n\n\n\n<p>This is used sometimes in URL as GET parameters, sometimes in POST. We will first focus on GET.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-http-get\">HTTP GET<\/h2>\n\n\n\n<p>I will use a PreProcessor of type <a href=\"https:\/\/groovy-lang.org\/\" target=\"_blank\" rel=\"noreferrer noopener\">Apache Groovy<\/a> which is known to be more efficient than other languages supported by JMeter.<\/p>\n\n\n\n<p>To avoid having the code run for all types of requests, my code will start with an if:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: groovy; title: ; notranslate\" title=\"\">\nif (sampler instanceof org.apache.jmeter.protocol.http.sampler.HTTPSamplerProxy) {\n<\/pre><\/div>\n\n\n<p>Next part of the code is to check if URL contains the &#8220;t&#8221; parameter with a regex and replace:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: groovy; title: ; notranslate\" title=\"\">\n    path = sampler.getPath();\n\tfindRegex = \/&amp;t=(.+)&amp;\/;\n\tpath = path.replaceFirst(findRegex, &quot;&amp;t=&quot; + newValue + &quot;&amp;&quot;);\n    log.info(&quot;t variable updated to &quot; + newValue);\n\tsampler.setPath(path);\n<\/pre><\/div>\n\n\n<p>Now, whenever I run the scenario, we will see a line in the logviewer:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>2024-01-29 09:45:55,722 INFO o.a.j.m.J.JSR223 PreProcessor Variable Updates: t variable updated to OrKPOIA.<\/code><\/pre>\n\n\n\n<p>And that the triggered URL is different from how it was defined in the HTTP request:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"205\" src=\"http:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/2024-01-29-09_59_59-Global-Scenario-2024-01.jmx-C__Users_ols_Documents_Technical_Load-Test_M-Files_-1024x205.png\" alt=\"\" class=\"wp-image-30516\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/2024-01-29-09_59_59-Global-Scenario-2024-01.jmx-C__Users_ols_Documents_Technical_Load-Test_M-Files_-1024x205.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/2024-01-29-09_59_59-Global-Scenario-2024-01.jmx-C__Users_ols_Documents_Technical_Load-Test_M-Files_-300x60.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/2024-01-29-09_59_59-Global-Scenario-2024-01.jmx-C__Users_ols_Documents_Technical_Load-Test_M-Files_-768x153.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/2024-01-29-09_59_59-Global-Scenario-2024-01.jmx-C__Users_ols_Documents_Technical_Load-Test_M-Files_.png 1296w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">&#8220;<strong>t<\/strong>&#8221; variable are different<\/figcaption><\/figure>\n\n\n\n<p>On the left side, we see the &#8220;<strong>t<\/strong>&#8221; value at recording time. On the right, &#8220;<strong>t<\/strong>&#8221; value at scenario runtime.<\/p>\n\n\n\n<p>This covers the case where &#8220;<strong>t<\/strong>&#8221; variable is in the URL. Next, we must do it for POST variables.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-http-post\">HTTP POST<\/h2>\n\n\n\n<p>For HTTP POST, we must proceed in the following order:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Check HTTP Method is POST<\/li>\n\n\n\n<li>Get arguments list<\/li>\n\n\n\n<li>Check our argument is in the list<\/li>\n\n\n\n<li>Remove it<\/li>\n\n\n\n<li>Add it back with the correct value<\/li>\n<\/ol>\n\n\n\n<p>This gives the following groovy code:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: groovy; title: ; notranslate\" title=\"\">\n\tif (sampler.getMethod() == &#039;POST&#039;) {\n\t\targuments = sampler.getArguments().getArgumentsAsMap()\n\t\tif (arguments.containsKey(&quot;t&quot;)) {\n\t\t\tsampler.getArguments().removeArgument(&quot;t&quot;)\n\t\t\tsampler.addArgument(&quot;t&quot;,newValue)\n\t\t\tlog.info(&quot;POST: t variable updated to &quot; + newValue);\n\t\t}\n\t}\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-to-improve-even-more\">What to Improve even More?<\/h2>\n\n\n\n<p>I need to make this more generic via a method which I will be able to call for any variable as I have many other variables to consider for this M-Files scenario:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>SID<\/li>\n\n\n\n<li>M-Files-Session<\/li>\n\n\n\n<li>Vault ID<\/li>\n<\/ul>\n\n\n\n<p>Finally, for each of these, I will simply call the method:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: groovy; title: ; notranslate\" title=\"\">\nupdateVariables(&quot;t&quot;, newValue)\nupdateVariables(&quot;SID&quot;, vars.get(&quot;SID&quot;))\nupdateVariables(&quot;M-Files-Session&quot;, vars.get(&quot;SID-MFILES&quot;))\n<\/pre><\/div>","protected":false},"excerpt":{"rendered":"<p>In my previous blog post, I presented you how to create a load testing scenario based on a recorder. While working on it, I faced small problems that required few fixes which were very repetitive (and you know I love to automate as much as possible \ud83d\ude42 ). Amount the issues I faced, there were: [&hellip;]<\/p>\n","protected":false},"author":40,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[197],"tags":[950,2880,3190],"type_dbi":[],"class_list":["post-30499","post","type-post","status-publish","format-standard","hentry","category-application-integration-middleware","tag-jmeter","tag-loadtest","tag-m-files"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Improve your JMeter Load Testing? - dbi 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:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Improve your JMeter Load Testing?\" \/>\n<meta property=\"og:description\" content=\"In my previous blog post, I presented you how to create a load testing scenario based on a recorder. While working on it, I faced small problems that required few fixes which were very repetitive (and you know I love to automate as much as possible \ud83d\ude42 ). Amount the issues I faced, there were: [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-29T12:07:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-10T15:55:26+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/2024-01-26-22_17_56-Global-Scenario-2024-01.jmx-C__Users_ols_Documents_Technical_Load-Test_M-Files_-1024x611.png\" \/>\n<meta name=\"author\" content=\"Middleware Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Middleware Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/\"},\"author\":{\"name\":\"Middleware Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1\"},\"headline\":\"How to Improve your JMeter Load Testing?\",\"datePublished\":\"2024-01-29T12:07:47+00:00\",\"dateModified\":\"2024-09-10T15:55:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/\"},\"wordCount\":477,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/2024-01-26-22_17_56-Global-Scenario-2024-01.jmx-C__Users_ols_Documents_Technical_Load-Test_M-Files_-1024x611.png\",\"keywords\":[\"JMeter\",\"LoadTest\",\"M-Files\"],\"articleSection\":[\"Application integration &amp; Middleware\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/\",\"name\":\"How to Improve your JMeter Load Testing? - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/2024-01-26-22_17_56-Global-Scenario-2024-01.jmx-C__Users_ols_Documents_Technical_Load-Test_M-Files_-1024x611.png\",\"datePublished\":\"2024-01-29T12:07:47+00:00\",\"dateModified\":\"2024-09-10T15:55:26+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/2024-01-26-22_17_56-Global-Scenario-2024-01.jmx-C__Users_ols_Documents_Technical_Load-Test_M-Files_.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/2024-01-26-22_17_56-Global-Scenario-2024-01.jmx-C__Users_ols_Documents_Technical_Load-Test_M-Files_.png\",\"width\":1242,\"height\":741},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Improve your JMeter Load Testing?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1\",\"name\":\"Middleware Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"caption\":\"Middleware Team\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/middleware-team\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Improve your JMeter Load Testing? - dbi 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:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/","og_locale":"en_US","og_type":"article","og_title":"How to Improve your JMeter Load Testing?","og_description":"In my previous blog post, I presented you how to create a load testing scenario based on a recorder. While working on it, I faced small problems that required few fixes which were very repetitive (and you know I love to automate as much as possible \ud83d\ude42 ). Amount the issues I faced, there were: [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/","og_site_name":"dbi Blog","article_published_time":"2024-01-29T12:07:47+00:00","article_modified_time":"2024-09-10T15:55:26+00:00","og_image":[{"url":"http:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/2024-01-26-22_17_56-Global-Scenario-2024-01.jmx-C__Users_ols_Documents_Technical_Load-Test_M-Files_-1024x611.png","type":"","width":"","height":""}],"author":"Middleware Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Middleware Team","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/"},"author":{"name":"Middleware Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1"},"headline":"How to Improve your JMeter Load Testing?","datePublished":"2024-01-29T12:07:47+00:00","dateModified":"2024-09-10T15:55:26+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/"},"wordCount":477,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/#primaryimage"},"thumbnailUrl":"http:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/2024-01-26-22_17_56-Global-Scenario-2024-01.jmx-C__Users_ols_Documents_Technical_Load-Test_M-Files_-1024x611.png","keywords":["JMeter","LoadTest","M-Files"],"articleSection":["Application integration &amp; Middleware"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/","url":"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/","name":"How to Improve your JMeter Load Testing? - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/#primaryimage"},"thumbnailUrl":"http:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/2024-01-26-22_17_56-Global-Scenario-2024-01.jmx-C__Users_ols_Documents_Technical_Load-Test_M-Files_-1024x611.png","datePublished":"2024-01-29T12:07:47+00:00","dateModified":"2024-09-10T15:55:26+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/2024-01-26-22_17_56-Global-Scenario-2024-01.jmx-C__Users_ols_Documents_Technical_Load-Test_M-Files_.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/01\/2024-01-26-22_17_56-Global-Scenario-2024-01.jmx-C__Users_ols_Documents_Technical_Load-Test_M-Files_.png","width":1242,"height":741},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/how-to-do-improve-your-jmeter-load-testing\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Improve your JMeter Load Testing?"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1","name":"Middleware Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","caption":"Middleware Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/middleware-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/30499","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/40"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=30499"}],"version-history":[{"count":18,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/30499\/revisions"}],"predecessor-version":[{"id":30542,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/30499\/revisions\/30542"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=30499"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=30499"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=30499"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=30499"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}