Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hello,
I could suggest following the steps here on how to find the processes that are consuming the most server resources:
Regarding your server logs, you can find them at the /var/log directory and you can use the cat or tail commands to check a specific log. For example, if you had an Nginx server and you wanted to check the last 100 lines of the Nginx log, you could use the following command:
tail -100 /var/log/nginx/access.log
Also if you have an Apache or Nginx server, you could use the following script to analyze the logs and see if there are any suspicious amount of requests coming from a specific set of IP addresses:
BASH Script to Summarize Your NGINX and Apache Access Logs
Let me know how it goes. Best, Bobby