From e71a132775b02385976f7fa3e84ff25b7633f04b Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Fri, 20 Jan 2006 18:19:23 +0000 Subject: [PATCH] Added Probe calls for volume information fetching --- src/appinterface.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/appinterface.c b/src/appinterface.c index 327e8d3..d9ef62d 100644 --- a/src/appinterface.c +++ b/src/appinterface.c @@ -210,6 +210,8 @@ static int _new_probe(AppInterface * ai) ret += _new_append(ai, AICT_UINT32, "procs", 0); 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, "voltotal", 1, AICT_STRING); + ret += _new_append(ai, AICT_UINT32, "volfree", 1, AICT_STRING); return ret; }