0

我正在尝试使用该memcachec插件从 memcached 中读取数据,但是当我使用此配置时:

<Plugin "memcachec">
  <Page "plugin_instance">
    Key "KEY1"
    Server "localhost"
    ...
  </Page>
</Plugin>

我得到了memcachec plugin: Option 'server' not allowed here.,如果我删除我得到的服务器选项memcachec plugin: 'Server' missing in 'Page' block.。我检查了 memcachec 的来源并且有这个代码(memcachec.c,第 329 行):

if (strcasecmp ("Server", child->key) == 0)
  status = cmc_config_add_string ("Server", &page->server, child);
if (strcasecmp ("Key", child->key) == 0)
  status = cmc_config_add_string ("Key", &page->key, child);
else if (strcasecmp ("Match", child->key) == 0)
  /* Be liberal with failing matches => don't set `status'. */
  cmc_config_add_match (page, child);
else
{
  WARNING ("memcachec plugin: Option `%s' not allowed here.", child->key);
  status = -1;
}

似乎第二个if应该是else if插件工作。这是一个错误吗?我在哪里报告?在官方修复到来之前,在本地修复它的正确方法是什么?

4

1 回答 1

0

我猜你很久以前就得到了答案,但似乎这个问题已经解决了。报告错误最好使用邮件列表(请参阅标签信息)或在 github 上打开问题(https://github.com/collectd/collectd)。

于 2013-03-13T07:49:54.630 回答