tags:

views:

10

answers:

1

Anyone here familiar with the AGNAS library? I've got SampleCoreTemp mostly doing what I want but it spikes CPU usage too much when it's active and I don't want to have to enable/disable constantly if I can find a way to adjust the polling rate instead.

A: 

FINALLY found it... in the agnas.config file, add:

<configuration>
...
  <metrics>
    <cpu>
      <temperature><freq>5000</freq></temperature>          
    </cpu>
  </metrics>

That will poll only once every 5 seconds. The config really needs decent documentation (or better yet, a decent GUI).

FerretallicA