This project implements an HTTP server with rate limiting. It ensures no more than 5 requests per second can be processed.
The API rate limiting server limits the number of requests per second to prevent abuse and manage server load effectively. It provides detailed logging and health check endpoints to monitor server status.
- Rate limiting to 5 requests per second
- Health check endpoint to monitor server status
- Detailed request logging
-
Clone the repository:
git clone https://github.com/surajupadhaya/Simple-API-RateLimit cd Simple-API-RateLimit
-
Install dependencies: go mod tidy
-
/: Default route returns a "stupid request" message with status 400.
-
/healthcheck: Endpoint to check the health status of the server. Returns "Health Passed" if the /healthcheck file exists, otherwise "Health Failed".
-
/api/v1/product: Example endpoint for the product API. Returns "This is a Product API" if the /api/v1/product file exists, otherwise "There is no Product API".
- Run the API rate limiting server: go run main.go
- Access the server: curl -w %{http_code}http://localhost:8080
-
Run Httperf tool to test the rate limiting Below httperf command is sending 6 connection parallelly in one sec Out of 6 only 1 will receive 503 code (due to throttling) remaining will receive based on behavior
#httperf --server localhost --port 8080 --uri /healthcheck --num-conns 6
This project is licensed under the MIT License. See the LICENSE file for details.
This README.md
should cover the current state of your project, focusing on the API rate limiting aspect. Ready to roll? 🚀
This should cover everything your project entails. You can add, modify, or remove sections as needed. 🚀