It is currently March 29th, 2024, 8:30 am

DD transfert monitoring

General topics related to Rainmeter.
juliensl
Posts: 2
Joined: October 29th, 2017, 10:53 am

DD transfert monitoring

Post by juliensl »

Good morning !

I would like to measure my DD transfert data with rainmeter like on this picture :
Image

But, I have no idea about how can I do that :/

Could you help me please ?

Thank you for your help and sorry for my grammatical mystakes, I'm French :)

Bye !!
DiabloV
Posts: 2
Joined: October 30th, 2017, 7:55 am

Re: DD transfert monitoring

Post by DiabloV »

Hello.

I've try this :

Code: Select all

[MeasureDiskAccess]
; Measures disk access of the C: drive.
Measure=Plugin
Plugin=PerfMon
PerfMonObject=LogicalDisk
PerfMonCounter=Disk Bytes/sec
PerfMonInstance=C:
[MeterDiskAccess]
Meter=String
MeasureName=MeasureDiskAccess
X=5
Y=25
W=200
H=20
FontColor=255,255,255,255
AutoScale=1
Text=Disk access: %1B/sec
Last edited by fonpaolo on October 30th, 2017, 10:03 am, edited 1 time in total.
Reason: Please use the [Code] tags to display your code.
User avatar
balala
Rainmeter Sage
Posts: 16110
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: DD transfert monitoring

Post by balala »

DiabloV wrote:I've try this :
This is a viable solution and even can measure separately the writing / reading speed (replacing the posted PerfMonCounter option with the PerfMonCounter=Disk Write Bytes/sec, respectively PerfMonCounter=Disk Read Bytes/sec options), but this solution can't measure the data transfer speed distinctly for certain process, as the Task Manager does. I don't see a solution for this, at least yet not.
juliensl
Posts: 2
Joined: October 29th, 2017, 10:53 am

Re: DD transfert monitoring

Post by juliensl »

Hi !

Thank you both for your help !

I changes some things, now I've this :
Image

It's cool !

An other question, can we record this monitoring with rainmeter ? To have a graphic about our system.

Thank you very much :)
User avatar
balala
Rainmeter Sage
Posts: 16110
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: DD transfert monitoring

Post by balala »

juliensl wrote:An other question, can we record this monitoring with rainmeter ? To have a graphic about our system.
Yeah, we can. Just have to use a Line or a Histogram meter. Eg:

Code: Select all

[Rainmeter]
Update=1000

[MeasureCPU]
Measure=CPU

[MeterCPU]
Meter=LINE
MeasureName=MeasureCPU
X=0
Y=0
W=200
H=50
LineCount=1
LineColor=253,254,226,175
SolidColor=0,0,0,180
AntiAlias=1
HorizontalLines=1
HorizontalLineColor=120,120,120,120
This code monitories the CPU usage. Obviously you can use another measure, to see something else, like the RAM usage, just have to be careful to use a measure which return percentual values (eg by setting a MinValue and a MaxValue option on it).