I'm working on the system monitor using python. I want to know that is it possible to get the information of the processes thread using python like thread_id, thread_name, memory consumed by that particular thread.
I used the python psutil library and it's just given the Thread_id, kernel_time and the user_time of the thread. I want name and the memory consumption as well.