web-dev-qa-db-ja.com

collectdでインターバル時間を変更するには?

collectdでインターバル時間を変更するにはどうすればよいですか? 1秒ごとにデータを収集したい。

4
smith

Interval経由

from man collectd.conf

Interval Seconds
   Configures the interval in which to query the read plugins.
   Obviously smaller values lead to a higher system load produced by
   collectd, while higher values lead to more coarse statistics.

例えば:

<LoadPlugin df>
    Interval 1
</LoadPlugin>
3
A.B.