Code

collectd.conf(5): Document the per-plugin interval configuration.
[collectd.git] / src / match_hashed.c
index ee3101a23190c3f2848994ca90ab6900c6eb03a5..6cb2c5a161057123838b2bfb1189ca55e1f208e1 100644 (file)
@@ -170,10 +170,12 @@ static int mh_match (const data_set_t __attribute__((unused)) *ds, /* {{{ */
   return (FC_MATCH_NO_MATCH);
 } /* }}} int mh_match */
 
-void module_register (void)
+void module_register (plugin_loaddata_t *data)
 {
   match_proc_t mproc;
 
+  PLUGIN_INIT_INTERVAL (data);
+
   memset (&mproc, 0, sizeof (mproc));
   mproc.create  = mh_create;
   mproc.destroy = mh_destroy;