Any way to tell if it is working??

Created on 25 April 2023, about 1 year ago
Updated 6 May 2024, about 2 months ago

nstalled with Redis and PhpRedis version 7. A bit of a fight with Redis - the upgrade does not bring down the version 7 redis conf and it fails until you go get the version 7 redis conf. That has to then be modified to use the setup dir that Redis can write to. The only way I know it is installed is it is not throwing error and stopping the website from working

Using the version 3 settings.php code - so is there any way to tell if it is working - is there a log or table??

πŸ’¬ Support request
Status

Fixed

Version

3.0

Component

Documentation

Created by

πŸ‡ΊπŸ‡ΈUnited States bobburns

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @bobburns
  • πŸ‡·πŸ‡ΈSerbia vaish

    You can go to Drupal's Status Report page (/admin/reports/status) and find all the details there. If something is not right you will also see a warning or an error.

    Module doesn't use any database tables and doesn't post log messages. That's intentional.

    The only place module stores any information is the backend you specified in the module settings. In your case that's Redis. All keys created by this module are prefixed with crawler_rate_limit:.

  • πŸ‡·πŸ‡ΈSerbia vaish

    Did you check module's README.md: https://git.drupalcode.org/project/crawler_rate_limit/-/tree/3.x?ref_typ...

    Status Report page is mentioned there. See step 3 under "Install Crawler Rate Limit module".

    If you have any specific feedback on how to improve README file, please let me know.

  • πŸ‡ΊπŸ‡ΈUnited States bobburns

    Yes I checked and saw it enabled, but I didn't see any way to know it was working like flood control shows in a table. Thanks for the quick response

  • πŸ‡·πŸ‡ΈSerbia vaish

    I see. You want a proof that module does what it's supposed to do. Here is a simple way to verify that:

    In settings.php configure very low number of requests per interval for "bot_traffic". For example 4 requests within 30 seconds. Then use curl on command line to issue requests to your website. First four requests should return response code 200 while the fifth and subsequent ones should return 429. After 30 seconds, counter resets and you will again be able to get 200 but only for 4 requests.

    Here is a curl issuing HTTP requests as a bot: curl --head -A "bot" "https://yourdomain.com/"

    You can do similar test in your browser but for this you need to use the settings under "regular_traffic". Then just keep refreshing any page on your website and keep track of the responses you get.

    On production you can grep your web server's access.log for entries with response code 429. Those will be the ones that were blocked by crawler rate limit.

    Note that crawler rate limit, being a Drupal module, processes only requests that are handled by Drupal. It doesn't do anything to requests that are served directly by the web server, like for example requests for images in the public files folder or requests for CSS and JS assets.

  • πŸ‡ΊπŸ‡ΈUnited States bobburns

    OK good to know - I will try that

    Looks like I will need to re-install tarpit and configure the path ban

  • First commit to issue fork.
  • Status changed to Needs review 2 months ago
  • πŸ‡ΊπŸ‡ΈUnited States generalredneck

    Vaish,
    I hope you don't mind, but I took the liberty to add to the readme the way I tested this functionality. It uses curl like you suggested but in a loop, allowing a quick one liner. It also uses cache busting as not everyone is going to test this against raw installations, and it's good to see that it works the first time without realizing that something like varnish is eating the request.

  • Pipeline finished with Skipped
    2 months ago
    #153306
  • Status changed to Fixed 2 months ago
  • πŸ‡·πŸ‡ΈSerbia vaish

    Thanks @generalredneck. It's great to have this added to the README.

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.69.0 2024