It is currently May 14th, 2024, 3:10 pm

Do CPUExclude Delay update cycles ?

Get help with creating, editing & fixing problems with skins
User avatar
wiedzmawiedzma
Posts: 112
Joined: August 18th, 2012, 5:19 pm

Do CPUExclude Delay update cycles ?

Post by wiedzmawiedzma »

Do CPUExclude Delay update cycles ?
If so how much update cycles is delayed each subsequent process when I use in the skin display four processes, and whether you can get rid of the problem with [MeasureCalcBefore-After] ?
User avatar
Kaelri
Developer
Posts: 1721
Joined: July 25th, 2009, 4:47 am

Re: Do CPUExclude Delay update cycles ?

Post by Kaelri »

There is no delay as long as the measures are written in descending order. In other words, if you need to use the value of "MeterA" in "MeterB," then MeterA should be written before MeterB. For example:

Code: Select all

[MeasureProcess1]
Measure=Plugin
Plugin=AdvancedCPU
TopProcess=1
CPUExclude=Idle

[MeasureProcess1Name]
Measure=Plugin
Plugin=AdvancedCPU
TopProcess=2
CPUExclude=Idle

[MeasureProcess2]
Measure=Plugin
Plugin=AdvancedCPU
TopProcess=1
CPUExclude=Idle;[MeasureProcess1Name]
DynamicVariables=1

[MeasureProcess2Name]
Measure=Plugin
Plugin=AdvancedCPU
TopProcess=2
CPUExclude=Idle;[MeasureProcess1Name]
DynamicVariables=1
User avatar
wiedzmawiedzma
Posts: 112
Joined: August 18th, 2012, 5:19 pm

Re: Do CPUExclude Delay update cycles ?

Post by wiedzmawiedzma »

Thank you for the answer to the question :welcome: