-
Notifications
You must be signed in to change notification settings - Fork 107
ISSUE 2450: DDOS mitigation script #2460
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
…pt' into symstu/2450-ddos-mitigation-script
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you should clean up the commit history, or you'll make a squish merge?
…gents" This reverts commit 2dbeace.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I still have questions, let's discuss them on a call
### Blog or Online Shop | ||
These types of applications typically don’t have a large number of concurrent users and often operate within a traffic range of 0 to 50 active users. | ||
However, it's important to account for the fact that static files (like CSS, JS, and images) are also requested. | ||
On initial page load, a single user might generate up to 200 or more HTTP requests. All farther requests should receive some |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On initial page load, a single user might generate up to 200 or more HTTP requests. All farther requests should receive some | |
On initial page load, a single user might generate up to 200 or more HTTP requests. All further requests should receive some |
requests_threshold=average_stats.requests, | ||
time_threshold=average_stats.time, | ||
errors_threshold=average_stats.errors, | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why don't we use standard deviation? It could be hard to configure the multipliers, basically, one need to do some data analysis to reveal what the multipliers are.
No description provided.