A common requirement is the ability to direct selected metrics toward the 'write_http' plugin, while continuing to process other metrics via another write plugin:
Synopsis
LoadPlugin write_http
<Plugin "write_http">
<Node "example_node">
URL "http://example.com/post-collectd"
</Node>
</Plugin>
PostCacheChain "PostCache"
<Chain "PostCache">
<Rule "snmp">
<Match "regex">
Plugin "^snmp$"
</Match>
<Target "write">
Plugin "write_http/example_node"
</Target>
Target "stop"
</Rule>
# Default target
<Target "write">
Plugin "rrdtool"
</Target>
</Chain>