I want to calculate number of requests per second (server load) of my application in golang
can you suggest any tool ?
thanks
I want to calculate number of requests per second (server load) of my application in golang
can you suggest any tool ?
thanks
For further actions, you may consider blocking this person and/or reporting abuse
👀 Just want to lurk?
That's fine, you can still create an account and turn on features like 🌚 dark mode.
Vincenzo -
Lakshan Dissanayake -
Omar Ahmed -
Firdavs Kasymov -
Once suspended, 5anthosh will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, 5anthosh will be able to comment and publish posts again.
Once unpublished, all posts by 5anthosh will become hidden and only accessible to themselves.
If 5anthosh is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Santhosh Kumar.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community 👩💻👨💻 safe. Here is what you can do to flag 5anthosh:
Unflagging 5anthosh will restore default visibility to their posts.
Top comments (4)
Hi Santhosh!
I'm going to assume your app is a web server, otherwise let me know and we'll figure out something else.
If it's a web server, the language it's written in (or measured from) doesn't really matter. You're just in need of a "load tester".
There are many (from opensource tools to full out distributed load tester you buy as software as a service). I'm going to make another assumption and lean towards something you might want to install on your local machine or a cloud server yourself.
My favorite is wrk but there are many. Solid alternatives are apache bench. vegeta is a good candidate if you need to test HTTP/2.
Keep in mind that load testing on localhost it's obviously going to give you a false sense of speed. I'd suggest doing it from localhost to a staging server (configured as much as production as possible) or between a cloud machine and the target server.
Hey, thanks for taking your time to help me out
I will try wrk, because it suits my use case.
I am creating IOT platform,so it needs to be fast
as possible
Vegeta is really nice, take a look!