forked from Sysdeploy/collectd-btrfs
updated callback frequency
This commit is contained in:
parent
1f53f2c3f8
commit
4dae2cd4dc
|
@ -5,7 +5,7 @@ import collectd
|
||||||
|
|
||||||
PLUGIN = 'btrfs'
|
PLUGIN = 'btrfs'
|
||||||
TYPE_STATS = "device_stats"
|
TYPE_STATS = "device_stats"
|
||||||
|
INTERVAL = 600
|
||||||
|
|
||||||
def read_callback():
|
def read_callback():
|
||||||
"""Read Btrfs device information and dispatch values to collectd."""
|
"""Read Btrfs device information and dispatch values to collectd."""
|
||||||
|
@ -24,11 +24,13 @@ def read_callback():
|
||||||
dev_info.path)[1:]
|
dev_info.path)[1:]
|
||||||
for counter, value in stats.counters.items():
|
for counter, value in stats.counters.items():
|
||||||
metric.type_instance = counter
|
metric.type_instance = counter
|
||||||
metric.dispatch(TYPE_STATS, [value])
|
metric.dispatch(TYPE_STATS, [value], interval=INTERVAL)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
collectd.error("btrfs: read_callback: {}".format(e))
|
collectd.error("btrfs: read_callback: {}".format(e))
|
||||||
collectd.debug("btrfs: read done")
|
collectd.debug("btrfs: read done")
|
||||||
|
|
||||||
if __name__ != "__main__":
|
if __name__ != "__main__":
|
||||||
# Register callbacks
|
# Register callbacks
|
||||||
collectd.register_read(read_callback)
|
collectd.register_read(read_callback, INTERVAL)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user