summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Makefile.am2
-rw-r--r--src/common/stringx.c31
-rw-r--r--src/rrd-update.c132
3 files changed, 164 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 2c345c8..fa8144a 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -3,7 +3,7 @@ SUBDIRS = bsnmp
sbin_PROGRAMS = rrdbotd
rrdbotd_SOURCES = rrdbotd.c rrdbotd.h config.c \
- snmp-help.c snmp-engine.c \
+ snmp-help.c snmp-engine.c rrd-update.c \
common/server-mainloop.c common/server-mainloop.h \
common/sock-any.h common/sock-any.c \
usuals.h common/stringx.h common/stringx.c common/hash.h common/hash.c
diff --git a/src/common/stringx.c b/src/common/stringx.c
index 89deb9b..37a3df9 100644
--- a/src/common/stringx.c
+++ b/src/common/stringx.c
@@ -122,3 +122,34 @@ strlcpy(char *dst, const char *src, size_t len)
*dst = '\0';
return (ret);
}
+
+size_t strlcat(char* dst, const char* src, size_t siz)
+{
+ char* d = dst;
+ const char* s = src;
+ size_t n = siz;
+ size_t dlen;
+
+ /* Find the end of dst and adjust bytes left but don't go past end */
+ while(n-- != 0 && *d != '\0')
+ d++;
+ dlen = d - dst;
+ n = siz - dlen;
+
+ if(n == 0)
+ return dlen + strlen(s);
+ while(*s != '\0')
+ {
+ if(n != 1)
+ {
+ *d++ = *s;
+ n--;
+ }
+
+ s++;
+ }
+
+ *d = '\0';
+
+ return dlen + (s - src); /* count does not include NUL */
+}
diff --git a/src/rrd-update.c b/src/rrd-update.c
new file mode 100644
index 0000000..e60d6e2
--- /dev/null
+++ b/src/rrd-update.c
@@ -0,0 +1,132 @@
+/*
+ * Copyright (c) 2005, Nate Nielsen
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * * Redistributions of source code must retain the above
+ * copyright notice, this list of conditions and the
+ * following disclaimer.
+ * * Redistributions in binary form must reproduce the
+ * above copyright notice, this list of conditions and
+ * the following disclaimer in the documentation and/or
+ * other materials provided with the distribution.
+ * * The names of contributors to this software may not be
+ * used to endorse or promote products derived from this
+ * software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+ * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
+ * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
+ * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
+ * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
+ * DAMAGE.
+ *
+ *
+ * CONTRIBUTORS
+ * Nate Nielsen <nielsen@memberwebs.com>
+ *
+ */
+
+#define _GNU_SOURCE
+
+#include "usuals.h"
+#include <errno.h>
+#include <syslog.h>
+#include <unistd.h>
+
+#include "stringx.h"
+#include "rrdbotd.h"
+
+#define MAX_NUMLEN 40
+
+void rb_rrd_update(rb_poller *poll)
+{
+ char buf[MAX_NUMLEN];
+ const char* argv[5];
+ char* template;
+ char* items;
+ int r, tlen, ilen;
+ rb_item *it;
+
+ if(!poll->items)
+ return;
+
+ tlen = 0;
+ ilen = 3;
+
+ for(it = poll->items; it; it = it->next)
+ {
+ tlen += strlen(it->rrdfield) + 1;
+ ilen += 40;
+ }
+
+ template = (char*)calloc(tlen, sizeof(char));
+ items = (char*)calloc(ilen, sizeof(char));
+
+ if(!template || !items)
+ {
+ if(items)
+ free(items);
+ if(template)
+ free(template);
+ rb_messagex(LOG_CRIT, "out of memory");
+ return;
+ }
+
+ /* Build our arguments */
+ strlcpy(items, "N:", ilen);
+ for(it = poll->items; it; it = it->next)
+ {
+ if(it != poll->items)
+ {
+ strlcat(template, ":", tlen);
+ strlcat(items, ":", ilen);
+ }
+
+ strlcat(template, it->rrdfield, tlen);
+
+ if(it->value == RB_UNKNOWN)
+ strlcat(items, "U", ilen);
+ else
+ {
+ snprintf(buf, MAX_NUMLEN, "%.4lf", it->value);
+ buf[MAX_NUMLEN - 1] = 0;
+ strlcat(items, buf, ilen);
+ }
+ }
+
+ /* Always have to clear before calling rrdtool. klunky :( */
+ optind = 0;
+ opterr = 0;
+
+ /* TODO: We need support for @ to specify when these values occurred */
+
+ argv[0] = "rrdupdate";
+ argv[1] = poll->rrdname;
+ argv[2] = "-t";
+ argv[3] = template;
+ argv[4] = items;
+
+ rb_messagex(LOG_DEBUG, "updating RRD file: %s", poll->rrdname);
+ rb_messagex(LOG_DEBUG, "> template: %s", template);
+ rb_messagex(LOG_DEBUG, "> values: %s", items);
+
+ rrd_clear_error();
+ r = rrd_update(5, argv);
+
+ if(r != 0)
+ rb_messagex(LOG_ERR, "couldn't update rrd file: %s: %s",
+ poll->rrdname, rrd_get_error());
+
+ free(template);
+ free(items);
+}