{"id":51137436,"url":"https://github.com/abstracta/jmeter-dotnet-dsl","last_synced_at":"2026-06-25T19:04:46.090Z","repository":{"id":179193709,"uuid":"651545092","full_name":"abstracta/jmeter-dotnet-dsl","owner":"abstracta","description":"Simple JMeter performance tests .Net API","archived":false,"fork":false,"pushed_at":"2026-06-17T11:18:56.000Z","size":1887,"stargazers_count":64,"open_issues_count":16,"forks_count":2,"subscribers_count":6,"default_branch":"main","last_synced_at":"2026-06-17T13:16:43.060Z","etag":null,"topics":["azure","csharp","dotnet","jmeter","jmx","performance","performance-testing"],"latest_commit_sha":null,"homepage":"https://abstracta.github.io/jmeter-dotnet-dsl/","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/abstracta.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":"docs/support/abstracta-logo.png","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-06-09T13:29:23.000Z","updated_at":"2026-04-20T12:23:34.000Z","dependencies_parsed_at":"2023-07-12T01:45:32.571Z","dependency_job_id":"846f3a9f-855c-4419-8327-c13710c4338e","html_url":"https://github.com/abstracta/jmeter-dotnet-dsl","commit_stats":null,"previous_names":["abstracta/jmeter-dotnet-dsl"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/abstracta/jmeter-dotnet-dsl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abstracta%2Fjmeter-dotnet-dsl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abstracta%2Fjmeter-dotnet-dsl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abstracta%2Fjmeter-dotnet-dsl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abstracta%2Fjmeter-dotnet-dsl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abstracta","download_url":"https://codeload.github.com/abstracta/jmeter-dotnet-dsl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abstracta%2Fjmeter-dotnet-dsl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34788330,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-25T02:00:05.521Z","response_time":101,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["azure","csharp","dotnet","jmeter","jmx","performance","performance-testing"],"created_at":"2026-06-25T19:04:44.834Z","updated_at":"2026-06-25T19:04:46.083Z","avatar_url":"https://github.com/abstracta.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"![logo](https://raw.githubusercontent.com/abstracta/jmeter-dotnet-dsl/main/docs/.vuepress/public/logo.svg)\n\nSimple .Net API to run performance tests, using [JMeter](http://jmeter.apache.org/) as engine, in a Git and programmers friendly way. \n\nIf you like this project, **please give it a star :star:!** This helps the project be more visible, gain relevance, and encourage us to invest more effort in new features.\n\n[Here](https://abstracta.github.io/jmeter-java-dsl), you can find the Java DSL.\n\nPlease join [discord server](https://discord.gg/WNSn5hqmSd) or create GitHub [issues](https://github.com/abstracta/jmeter-dotnet-dsl/issues) and [discussions](https://github.com/abstracta/jmeter-dotnet-dsl/discussions) to be part of the community and clear out doubts, get the latest news, propose ideas, report issues, etc.\n\n## Usage\n\nAdd the package to your project:\n\n```powershell\ndotnet add package Abstracta.JmeterDsl --version 0.8\n``` \n\nHere is a simple example test using [Nunit](https://nunit.org/)+ with 2 threads/users iterating 10 times each to send HTTP POST requests with a JSON body to `http://my.service`:\n\n```cs\nusing System.Net.Http.Headers;\nusing System.Net.Mime;\nusing static Abstracta.JmeterDsl.JmeterDsl;\n\npublic class PerformanceTest\n{\n    [Test]\n    public void LoadTest()\n    {\n        var stats = TestPlan(\n            ThreadGroup(2, 10,\n                HttpSampler(\"http://my.service\")\n                    .Post(\"{\\\"name\\\": \\\"test\\\"}\", new MediaTypeHeaderValue(MediaTypeNames.Application.Json))\n            ),\n            //this is just to log details of each request stats\n            JtlWriter(\"jtls\")\n        ).Run();\n        Assert.That(stats.Overall.SampleTimePercentile99, Is.LessThan(TimeSpan.FromSeconds(5)));\n    }\n}\n```\n\n\u003e **Java 8+ is required** for test plan execution.\n\nMore examples can be found in [tests](Abstracta.JmeterDsl.Tests)\n\n[Here](https://github.com/abstracta/jmeter-dotnet-dsl-sample) is a sample project for reference or for starting new projects from scratch.\n\n\u003e **Tip 1:** When working with multiple samplers in a test plan, specify their names to easily check their respective statistics.\n\n\u003e **Tip 2:** Since JMeter uses [log4j2](https://logging.apache.org/log4j/2.x/), if you want to control the logging level or output, you can use something similar to the tests included [log4j2.xml](Abstracta.JmeterDsl.Tests/log4j2.xml), using \"CopyToOutputDirectory\" in the project item so the file is available in dotnet build output directory as well (check [Abstracta.JmeterDsl.Test/Abstracta.JmeterDsl.Tests.csproj]).\n\n\n**Check [here](https://abstracta.github.io/jmeter-dotnet-dsl/) for details on some interesting use cases**, like running tests at scale in [Azure Load Testing](https://azure.microsoft.com/en-us/products/load-testing/), and general usage guides.\n\n## Why?\n\nCheck more about the motivation and analysis of alternatives [here](https://abstracta.github.io/jmeter-java-dsl/motivation/)\n\n## Support\n\nJoin our [Discord server](https://discord.gg/WNSn5hqmSd) to engage with fellow JMeter DSL enthusiasts, ask questions, and share experiences. Visit [GitHub Issues](https://github.com/abstracta/jmeter-dotnet-dsl/issues) or [GitHub Discussions](https://github.com/abstracta/jmeter-dotnet-dsl/discussions) for bug reports, feature requests and share ideas.\n\n[Abstracta](https://abstracta.us), the main supporter for JMeter DSL development, offers enterprise-level support. Get faster response times, personalized customizations and consulting.\n\nFor detailed support information, visit our [Support](https://abstracta.github.io/jmeter-dotnet-dsl/support) page.\n\n## Articles \u0026 Talks\n\nCheck articles and talks mentioning the Java version [here](https://github.com/abstracta/jmeter-java-dsl#articles--talks).\n\n## Ecosystem\n\n* [Jmeter Java DSL](https://abstracta.github.io/jmeter-java-dsl): Java API which is the base of the .Net API.\n* [pymeter](https://github.com/eldaduzman/pymeter): Python API based on JMeter Java DSL that allows Python devs to create and run JMeter test plans.\n\n## Contributing \u0026 Requesting features\n\nCurrently, the project covers some of the most used features of JMeter and JMeter Java DSL test, but not everything, as we keep improving it to cover more use cases.\n\nWe invest in the development of DSL according to the community's (your) interest, which we evaluate by reviewing GitHub stars' evolution, feature requests, and contributions.\n\nTo keep improving the DSL we need you to **please create an issue for any particular feature or need that you have**.\n\nWe also really appreciate pull requests. Check the [CONTRIBUTING](CONTRIBUTING.md) guide for an explanation of the main library components and how you can extend the library.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabstracta%2Fjmeter-dotnet-dsl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabstracta%2Fjmeter-dotnet-dsl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabstracta%2Fjmeter-dotnet-dsl/lists"}