An Azure relational database service.
Hi @Miiimy7 ,
You can use sys.dm_os_performance_counters DMV collect counter information that you would receive from PerfMon for the various SQL Server counters. Let me stress that: this is for the various SQL Server counters. You will not be able to receive counter information from outside the SQL Server stack from this DMV. However for a quick and simple query to return information about your SQL Server instance's performance this is a great tool.
Refer to the blog SQL Server Performance Counter DMV sys.dm_os_performance_counters to get more information.
As Olaf mentioned, performance monitor is a better tool for your requirement.
If the response is helpful, please click "Accept Answer" and upvote it, thank you.