X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fzfs_arc.c;h=aff02b62ccc390a6d000f355063f39f59c701bc2;hb=99d0d374adc5c628d937d750caa04c68e87b3eca;hp=2f8b2f4226f5c68c20a5355ec581ec04651cf96e;hpb=5b0c0bef2694766cb7c18d2d57017bf89fc3847d;p=collectd.git diff --git a/src/zfs_arc.c b/src/zfs_arc.c index 2f8b2f42..aff02b62 100644 --- a/src/zfs_arc.c +++ b/src/zfs_arc.c @@ -75,7 +75,6 @@ static long long get_zfs_value(kstat_t *ksp, const char *key) { e = llist_search(ksp, key); if (e == NULL) { - ERROR("zfs_arc plugin: `llist_search` failed for key: '%s'.", key); return (-1); } @@ -152,7 +151,7 @@ static int za_read_derive(kstat_t *ksp, const char *kstat_value, const char *type, const char *type_instance) { long long tmp = get_zfs_value(ksp, (char *)kstat_value); if (tmp == -1LL) { - WARNING("zfs_arc plugin: Reading kstat value \"%s\" failed.", kstat_value); + DEBUG("zfs_arc plugin: Reading kstat value \"%s\" failed.", kstat_value); return (-1); } @@ -165,7 +164,7 @@ static int za_read_gauge(kstat_t *ksp, const char *kstat_value, const char *type, const char *type_instance) { long long tmp = get_zfs_value(ksp, (char *)kstat_value); if (tmp == -1LL) { - WARNING("zfs_arc plugin: Reading kstat value \"%s\" failed.", kstat_value); + DEBUG("zfs_arc plugin: Reading kstat value \"%s\" failed.", kstat_value); return (-1); }