Replaced the static 10 with `COLLECTD_STEP' in src/{collectd,common}.c
authorocto <octo>
Wed, 15 Mar 2006 11:43:33 +0000 (11:43 +0000)
committerocto <octo>
Wed, 15 Mar 2006 11:43:33 +0000 (11:43 +0000)
src/collectd.c
src/common.c

index 7f2f6e8..47745cb 100644 (file)
@@ -138,6 +138,8 @@ static void exit_usage (char *name)
 #if COLLECT_DEBUG
                        "  Log-File          "LOGFILE"\n"
 #endif
+                       "  Step              "COLLECTD_STEP" seconds\n"
+                       "  Heartbeat         "COLLECTD_HEARTBEAT" seconds\n"
                        "\n"PACKAGE" "VERSION", http://verplant.org/collectd/\n"
                        "by Florian octo Forster <octo@verplant.org>\n"
                        "for contributions see `AUTHORS'\n");
@@ -147,6 +149,11 @@ static void exit_usage (char *name)
 static int start_client (void)
 {
        int sleepingtime;
+       int step;
+
+       step = atoi (COLLECTD_STEP);
+       if (step <= 0)
+               step = 10;
 
 #if HAVE_LIBKSTAT
        kc = NULL;
@@ -177,7 +184,7 @@ static int start_client (void)
 #endif
                plugin_read_all ();
 
-               sleepingtime = 10;
+               sleepingtime = step;
                while (sleepingtime != 0)
                {
                        if (loop != 0)
index 50a563a..8393d8b 100644 (file)
@@ -307,7 +307,7 @@ int rrd_create_file (char *filename, char **ds_def, int ds_num)
        argv[0] = "create";
        argv[1] = filename;
        argv[2] = "-s";
-       argv[3] = "10";
+       argv[3] = COLLECTD_STEP;
 
        j = 4;
        for (i = 0; i < ds_num; i++)