Starting one month ago, my Data In and Data Out has suddenly increased

R J 0 Reputation points
2023-05-11T05:12:30.9366667+00:00

Hello, about one month ago, the Data In and Data Out (bandwith) of my app has increased unexpectedly and exponentially. See this:2023-05-10 22_07_51-Clipboard

Nothing has changed in the app (it's a WordPress app running on Windows). I'm just wondering if my site is getting a brute-force attack or something?

Thanks!

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
6,900 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Dillon Silzer 54,646 Reputation points
    2023-05-11T06:58:31.5+00:00

    Hi R J,

    Most likely your site is just being crawled by robots. You could set up robots.txt to stop crawlers from looking into your site and minimize requests:

    A robots.txt file tells search engine crawlers which URLs the crawler can access on your site. This is used mainly to avoid overloading your site with requests; it is not a mechanism for keeping a web page out of Google. To keep a web page out of Google, block indexing with noindex or password-protect the page.

    Cited from https://developers.google.com/search/docs/crawling-indexing/robots/intro

    If you want further analysis, you can check your web server's access log or open a ticket with Azure Support:

    https://azure.microsoft.com/en-us/support/create-ticket

    (If you are using Apache, see access log in var/log/apache2/access.log):

    https://www.sumologic.com/blog/apache-access-log/


    If this is helpful please accept answer.