summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2006-01-28 22:02:31 +0000
committerStef Walter <stef@memberwebs.com>2006-01-28 22:02:31 +0000
commit972af41c3bd1c30880c7b66ad56b4dbcaab4275c (patch)
tree5d4e3f5aa23d7f5cb491f6c5012dd86d0b8b3ed6
parenta5e450dd4528edc5a815ce57aa62273d25bb93a5 (diff)
Better debugging output for request identifiers and values.
-rw-r--r--daemon/snmp-engine.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/daemon/snmp-engine.c b/daemon/snmp-engine.c
index de814b3..a1f773c 100644
--- a/daemon/snmp-engine.c
+++ b/daemon/snmp-engine.c
@@ -51,8 +51,8 @@
/* The socket to use */
static int snmp_socket = -1;
-/* The last request: start at a strange number */
-static uint32_t snmp_request = 0x0A0A0A0A;
+/* The last request id */
+static uint32_t snmp_request = 100000;
/* Since we only deal with one packet at a time, global buffer */
static unsigned char snmp_buffer[0x1000];
@@ -272,7 +272,7 @@ send_req(rb_request* req, mstime when)
if(ret == -1)
rb_message(LOG_ERR, "couldn't send snmp packet to: %s", req->host->name);
else
- rb_messagex(LOG_DEBUG, "sent request '%d' to: %s", req->id, req->host->name);
+ rb_messagex(LOG_DEBUG, "sent request #%d to: %s", req->id, req->host->name);
}
/* And update our bookkeeping */
@@ -394,10 +394,10 @@ respond_req(rb_request* req, struct snmp_pdu* pdu, mstime when)
if(msg)
rb_messagex(LOG_WARNING, msg, item->rrdfield);
else if(item->vtype == VALUE_REAL)
- rb_messagex(LOG_DEBUG, "got value for field '%s': %.4lf",
+ rb_messagex(LOG_DEBUG, "got value for field '%s': %lld",
item->rrdfield, item->v.i_value);
else if(item->vtype == VALUE_FLOAT)
- rb_messagex(LOG_DEBUG, "got value for field '%s': %lld",
+ rb_messagex(LOG_DEBUG, "got value for field '%s': %.4lf",
item->rrdfield, item->v.f_value);
else
rb_messagex(LOG_DEBUG, "got value for field '%s': U",
@@ -478,7 +478,7 @@ poller_timer(mstime when, void* arg)
req->poll = poll;
req->host = it->host;
- /* rb_messagex(LOG_DEBUG, "preparing request '%d' for: %s@%s",
+ /* rb_messagex(LOG_DEBUG, "preparing request #%d for: %s@%s",
req->id, req->host->community, req->host->name); */
/* Setup the packet */
@@ -590,7 +590,7 @@ receive_resp(int fd, int type, void* arg)
rb_message(LOG_WARNING, "wrong version snmp packet from: %s", hostname);
/* Dispatch the packet */
- rb_messagex(LOG_DEBUG, "response to request '%d' from: %s", req->id, hostname);
+ rb_messagex(LOG_DEBUG, "response to request #%d from: %s", req->id, hostname);
respond_req(req, &pdu, server_get_time());
}