X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fload.c;h=b7372a1091f9e35e7ffc597570129dc3cb636c2a;hb=108068f268cad453e5d3b54e288917409db1e467;hp=e0e0c0ed87942a04afdeb03fa0338bc08446e64e;hpb=b42974a9e2d83e70c166cd572725a8d72bd2a1c4;p=collectd.git diff --git a/src/load.c b/src/load.c index e0e0c0ed..b7372a10 100644 --- a/src/load.c +++ b/src/load.c @@ -1,6 +1,6 @@ /** * collectd - src/load.c - * Copyright (C) 2005-2007 Florian octo Forster + * Copyright (C) 2005-2008 Florian octo Forster * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -50,11 +50,11 @@ static void load_submit (gauge_t snum, gauge_t mnum, gauge_t lnum) vl.values = values; vl.values_len = STATIC_ARRAY_SIZE (values); - vl.time = time (NULL); sstrncpy (vl.host, hostname_g, sizeof (vl.host)); sstrncpy (vl.plugin, "load", sizeof (vl.plugin)); + sstrncpy (vl.type, "load", sizeof (vl.type)); - plugin_dispatch_values ("load", &vl); + plugin_dispatch_values (&vl); } static int load_read (void)