Short answer
No, there's no built-in facility in Windows. Also the linux perf
command doesn't work on the Linux Subsystem for Windows 10.
Long answer
To get access to those counters, you'll need a combination of these instructions:
Unfortunately these instructions can only be called from kernel mode, so you'll need to interface with a driver. While writing the driver code itself is easy, getting the driver signed is not that easy (especially as you mentioned you want to do this as an individual).
That's why I advise you to look into existing projects like Open Hardware Monitor and the pcm project by Intel.
Open Hardware Monitor
This open-source project is written in C# and includes binaries and C source-code of a WinRing0.sys (32-bit) / WinRing0x64.sys (64-bit) driver developed by OpenLibSys.org. If you want to use this driver in your project, you only need to include their copyright notice.
PCM
This open-source project is written in C++ and also contains source for a similar driver (see WinMSRDriver directory), but you have to build it yourself so you'll turn into the signing problem again.
Anyway, wanted to mention this project because it probably contains a lot of code which might be of your interest.
User-Mode access
Now, once you have that driver loaded (Open Hardware Monitor extracts and loads the driver automatically on start of the application which is pretty neat), you can start calling those driver IOCTL's by using the Windows API functions CreateFile
/ DeviceIoControl
and of course CloseHandle
from your user-mode application.