How to retrive info about CPU usage GPU usage and RAM usage on Linux .NET
I'm creating a resource manager in Avalonia and want it to run mostly on Linux for a school project. I find it difficult to find any valid resources for that i need the whole ram, cpu, and GPU usage on a PC and for a given application for example gimp. Are they any libraries or code snippets that are avalible in .NET?
1 Reply
What if you just spin out
ps
processes and analyze its output? You can dig further by reading its source code. That should cover CPU/RAM, but GPU is a different story.