TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: JMeter Alternative?

5 pointsby febrilianover 3 years ago
What's the simplest app to measure requests per second like JMeter? I'm looking for go-based or rust-based apps. Thanks

3 comments

dschuesslerover 3 years ago
I have not used it myself but colleagues of mine recommend k6: <a href="https:&#x2F;&#x2F;k6.io&#x2F;open-source&#x2F;" rel="nofollow">https:&#x2F;&#x2F;k6.io&#x2F;open-source&#x2F;</a><p>There is also a Github repository keeping track of all the load-testing tools out there: <a href="https:&#x2F;&#x2F;github.com&#x2F;denji&#x2F;awesome-http-benchmark" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;denji&#x2F;awesome-http-benchmark</a> You will probably find something that will fit your bill.<p>I do not understand though why it is of any relevance what language the application is written in. Yes, Go and Rust indicate a certain speed and novelty but you can write fast applications with good UX in other programming languages too (and bad ones in Go and Rust).
评论 #28582651 未加载
评论 #28590560 未加载
评论 #28588510 未加载
评论 #28588507 未加载
aosaighover 3 years ago
I&#x27;ve used LoadForge before for stress testing:<p><a href="https:&#x2F;&#x2F;loadforge.com" rel="nofollow">https:&#x2F;&#x2F;loadforge.com</a><p>I found it a good middle-ground between DIY tools like &quot;hey&quot; and the likes of JMeter and K6.<p>LoadForge is really just a frontend for Locust [2] behind the scenes so all tests are written in Python which might not fit your requirement for Go&#x2F;Rust, but it&#x27;s affordable and quick to get started with.<p>[1] <a href="https:&#x2F;&#x2F;github.com&#x2F;rakyll&#x2F;hey" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;rakyll&#x2F;hey</a> [2] <a href="https:&#x2F;&#x2F;locust.io" rel="nofollow">https:&#x2F;&#x2F;locust.io</a>
mkranjecover 3 years ago
I suppose the end goal is to replicate production traffic patterns as close as possible. Why not just use production traffic? Of course omitting PII is mandatory.<p>Take a look at goreplay. <a href="https:&#x2F;&#x2F;github.com&#x2F;buger&#x2F;goreplay&#x2F;wiki" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;buger&#x2F;goreplay&#x2F;wiki</a>