Ease of Use
Hey is a simple, CLI-based load generator, making it easy to install and use without the need for complex setup or configuration. It's straightforward for developers to run basic load tests with minimal effort.
Lightweight
Hey is a lightweight offering compared to more comprehensive tools, focusing on simplicity and performance with low overhead, which makes it suitable for quick tests.
Suitable for Small Tests
For small to medium-scale load tests, Hey can perform efficiently, helping teams test scenarios without needing advanced capabilities.
Written in Go
Being written in Go, Hey benefits from the language's concurrency support and performance efficiency, leading to fast and reliable test execution.
We have collected here some useful links to help you find out if Hey Load Generator is good.
Check the traffic stats of Hey Load Generator on SimilarWeb. The key metrics to look for are: monthly visits, average visit duration, pages per visit, and traffic by country. Moreoever, check the traffic sources. For example "Direct" traffic is a good sign.
Check the "Domain Rating" of Hey Load Generator on Ahrefs. The domain rating is a measure of the strength of a website's backlink profile on a scale from 0 to 100. It shows the strength of Hey Load Generator's backlink profile compared to the other websites. In most cases a domain rating of 60+ is considered good and 70+ is considered very good.
Check the "Domain Authority" of Hey Load Generator on MOZ. A website's domain authority (DA) is a search engine ranking score that predicts how well a website will rank on search engine result pages (SERPs). It is based on a 100-point logarithmic scale, with higher scores corresponding to a greater likelihood of ranking. This is another useful metric to check if a website is good.
The latest comments about Hey Load Generator on Reddit. This can help you find out how popualr the product is and what people think about it.
# Using hey (https://github.com/rakyll/hey) for quick load testing # 200 requests, 20 concurrent, targeting the list endpoint Hey -n 200 -c 20 \ -H "Authorization: Bearer $TOKEN" \ https://api.example.com/api/v1/products # Check: p99 latency should be under 500ms # Check: Zero 5xx errors # Check: Rate limiting kicks in appropriately. - Source: dev.to / 4 months ago
In this article, I benchmark the original Node.js/Express-based chaos-proxy against a new Go implementation, chaos-proxy-go. While the Go version can't run custom JS/TS middleware, it aims to deliver the same core chaos features with much higher throughput and lower latency. Using a Caddy server as the backend and the hey tool for load testing, I'll compare both proxies (and direct Caddy) in a controlled... - Source: dev.to / 9 months ago
The results of the experiment are based on reproducing more than 100 cold starts and about 100,000 warm starts with the Lambda function GetProductByIdFunction (we ask for the already existing product with ID=1 ) for the duration of about 1 hour. We give Lambda function 1024 MB memory, which is a good trade-off between performance and cost. We also use (default) x86 Lambda architecture. For the load tests I used... - Source: dev.to / about 1 year ago
Let's invoke the PutProductWithJava21FISLambda Lambda function using the load test tool hey With:. - Source: dev.to / about 1 year ago
We can reproduce the failure with curl or hey tool, so that we have many failed UpdateProduct Lambda functions. - Source: dev.to / almost 2 years ago
Then I sent several hundreds create product requests via the hey tool like :. - Source: dev.to / about 2 years ago
As in the previous article we use hey tool to perform the load test like this. - Source: dev.to / about 2 years ago
The results of the experiment below were based on reproducing approximately 100 cold starts for the duration of our experiment which ran for approximately 1 hour. For it (and all experiments from my previous articles) I used the load test tool hey, but you can use whatever tool you want, like Serverless-artillery or Postman. - Source: dev.to / about 2 years ago
The results of the experiment to retrieve the existing product from the database by its id see GetProductByIdViaAuroraServerlessV2DataApiHandler with Lambda function with 1024 MB memory setting were based on reproducing more than 100 cold and approximately 10.000 warm starts with experiment which ran for approximately 1 hour. For it (and experiments from my previous article) I used the load test tool hey, but... - Source: dev.to / over 2 years ago
The results of the experiment below were based on reproducing more than 100 cold and approximately 100.000 warm starts with experiment which ran for approximately 1 hour. For it (and experiments from my previous article) I used the load test tool hey, but you can use whatever tool you want, like Serverless-artillery or Postman. I ran all these experiments for all 3 scenarios using 2 different compilation options... - Source: dev.to / over 2 years ago
In our experiment we'll re-use the application introduced in part 9 for this. There are basically 2 Lambda functions which both respond to the API Gateway requests and retrieve product by id received from the API Gateway from DynamoDB. One Lambda function GetProductByIdWithPureJava21Lambda can be used with and without SnapStart and the second one GetProductByIdWithPureJava21LambdaAndPriming uses SnapStart and... - Source: dev.to / over 2 years ago
For running our experiments to provoke anomalies we'll use the stress test tool. You can use the tool of your choice (like Gatling, JMeter, Fiddler or Artillery), I personally prefer to use the tool hey as it is easy to use and similar to curl. On Linux this tool can be installed by executing. - Source: dev.to / almost 3 years ago
Hey: is a fast HTTP load testing tool used to test web applications and APIs. It provides a CLI (command-line interface) and supports concurrent requests. - Source: dev.to / almost 3 years ago
The client and server nodes are CentOS7.9/X86_64. If the HTTP POST requests were sent directly to the server with hey -c 1, there are about 0.2% of cases that may timeout. If the HTTP POST requests were sent through an NGINX proxy on the client node, there are about 20% of cases will timeout. I've confirmed that only one backend node has this problem. All other nodes are 100% succeeded even with higher throughput. Source: about 3 years ago
64 concurrent requests isn't a lot. Modern web apps can typically handle much more than that (depending on what the request does, of course). Try it yourself with a load tester like https://github.com/rakyll/hey against a Go HTTP server, for example the one I've built in https://www.golang.dk/articles/go-and-sqlite-in-the-cloud. Source: over 3 years ago
To compare the two servers, we used two packages. The first one was ClinicJS, an open-source set of tools used to diagnose NodeJS performance issues, which also gives you suggestions and points you in a direction to fix the diagnosed problems. The second one was hey, a CLI tool to send some load to the server. Below we show how we use them and the results of these comparisons. - Source: dev.to / over 3 years ago
To measure TTFB we used hey, where we send 250 requests to each demo and measured the average TTFB. - Source: dev.to / almost 4 years ago
Using cluster and worker threads. The code is here, but completely undocumented, as Iโve been side tracked by a few other things[0]. Iโm currently looking into porting that project to Bun, so itโs possibly dead in its current form. I was planning on turning that into a library, but Bun nerd sniped me. You need the โheyโ tool to run the benchmarks[1] the way that I was running them. [0]... - Source: Hacker News / almost 4 years ago
You can probably DoS your haproxy instance too, if you've not already tuned it. I'm using the wonderful hey tool to create connections to my haproxy. - Source: dev.to / almost 4 years ago
Let's create a load of web traffic destined to our web-servers service and examine the effect. For load, we will use Hey, a tiny web load generator. You can use a bash script with curl/wget commands if you prefer. - Source: dev.to / about 4 years ago
Thank you! I had not done a benchmark, but it seemed like it would be better to have one, so I did. I used hey for the benchmark. Https://github.com/syumai/workers/wiki/Benchmark. Source: about 4 years ago
Do you know an article comparing Hey Load Generator to other products?
Suggest a link to a post with product alternatives.
Is Hey Load Generator good? This is an informative page that will help you find out. Moreover, you can review and discuss Hey Load Generator here. The primary details have not been verified within the last quarter, and they might be outdated. If you think we are missing something, please use the means on this page to comment or suggest changes. All reviews and comments are highly encouranged and appreciated as they help everyone in the community to make an informed choice. Please always be kind and objective when evaluating a product and sharing your opinion.