It is currently September 29th, 2024, 7:32 am

Use Rainmeter to monitor a specific process from Windows 7 performance monitor

General topics related to Rainmeter.
Slayeroffaith
Posts: 2
Joined: April 10th, 2016, 3:50 pm

Use Rainmeter to monitor a specific process from Windows 7 performance monitor

Post by Slayeroffaith »

As the title implies I am curious how someone could go about using Rainmeter to monitor a specific process from the Performance monitor. For instance, say I wanted to monitor Avg. disk transfer/sec. Is this even possible? I have a little bit of coding experience, but not enough to figure this out.

I have been having some issues with my comp and I wanted to monitor some things while running different tasks, but on something with a percentage and a smaller window compared to performance monitor itself.

Any help would be greatly appreciated. :welcome:
User avatar
jsmorley
Developer
Posts: 22783
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Use Rainmeter to monitor a specific process from Windows 7 performance monitor

Post by jsmorley »

Code: Select all

[Rainmeter]
Update=1000
DynamicWindowSize=1
AccurateText=1

[MeasurePerfMon]
Measure=Plugin
Plugin=PerfMon
PerfMonObject=LogicalDisk
PerfMonCounter=Avg. Disk sec/Transfer
PerfMonInstance=C:
PerfMonDifference=1

[MeterLabel]
Meter=String
W=160
H=16
FontSize=11
FontColor=255,255,255,255
SolidColor=47,47,47,255
Padding=5,5,5,5
AntiAlias=1
Text=Drive C:

[MeterPerfMon]
Meter=String
MeasureName=MeasurePerfMon
W=160
H=16
X=160
StringAlign=Right
FontSize=11
FontColor=255,255,255,255
SolidColor=0,0,0,1
Padding=5,5,0,5
AntiAlias=1
AutoScale=1
NumOfDecimals=4
1.png
https://docs.rainmeter.net/manual-beta/plugins/perfmon/
You do not have the required permissions to view the files attached to this post.
Slayeroffaith
Posts: 2
Joined: April 10th, 2016, 3:50 pm

Re: Use Rainmeter to monitor a specific process from Windows 7 performance monitor

Post by Slayeroffaith »

Awesome, I appreciate it very much. I was in the process of looking for a possible doc that had the information I was looking for, thanks for the link to that as well. I really appreciate the help. :thumbup:
User avatar
jsmorley
Developer
Posts: 22783
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Use Rainmeter to monitor a specific process from Windows 7 performance monitor

Post by jsmorley »

My pleasure.