You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello everyone
Now i have a rule like this:
{
"Endpoint": "get:/api/v1/rc/*",
"Period": "1m",
"Limit": 10
},
The calls can be something like /api/v1/rc/work_1, /api/v1/rc/work_2, ... /api/v1/rc/work_n and so on.
In this way any request is counted as unique, I need to limit all requests that starts with "work_", somewhat like:
{
"Endpoint": "get:/api/v1/rc/^work_*",
"Period": "1m",
"Limit": 10
},
But this is not working to me.
Is possible? Any suggestion please?
Marco
The text was updated successfully, but these errors were encountered:
Hello everyone
Now i have a rule like this:
{
"Endpoint": "get:/api/v1/rc/*",
"Period": "1m",
"Limit": 10
},
The calls can be something like /api/v1/rc/work_1, /api/v1/rc/work_2, ... /api/v1/rc/work_n and so on.
In this way any request is counted as unique, I need to limit all requests that starts with "work_", somewhat like:
{
"Endpoint": "get:/api/v1/rc/^work_*",
"Period": "1m",
"Limit": 10
},
But this is not working to me.
Is possible? Any suggestion please?
Marco
The text was updated successfully, but these errors were encountered: