Added Probe calls for volume information fetching

This commit is contained in:
Pierre Pronchery 2006-01-20 18:19:23 +00:00
parent 374ce896f6
commit e71a132775

View File

@ -210,6 +210,8 @@ static int _new_probe(AppInterface * ai)
ret += _new_append(ai, AICT_UINT32, "procs", 0); ret += _new_append(ai, AICT_UINT32, "procs", 0);
ret += _new_append(ai, AICT_UINT32, "ifrxbytes", 1, AICT_STRING); ret += _new_append(ai, AICT_UINT32, "ifrxbytes", 1, AICT_STRING);
ret += _new_append(ai, AICT_UINT32, "iftxbytes", 1, AICT_STRING); ret += _new_append(ai, AICT_UINT32, "iftxbytes", 1, AICT_STRING);
ret += _new_append(ai, AICT_UINT32, "voltotal", 1, AICT_STRING);
ret += _new_append(ai, AICT_UINT32, "volfree", 1, AICT_STRING);
return ret; return ret;
} }