I've got an odd issue which I can't seem to get to the bottom of. I'm trying to collect snmp data using collectd and it seems that it never writes (looking at the log file). I've changed the storage to csv temporarily while I try to work out the issues.<div>
<br></div><div>Here's what my conf looks like: </div><div><br></div><div><div>#</div><div># Config file for collectd(1).</div><div># Please read collectd.conf(5) for a list of options.</div><div># <a href="http://collectd.org/">http://collectd.org/</a></div>
<div>#</div><div><br></div><div>#Hostname    "localhost"</div><div>FQDNLookup   true</div><div>BaseDir     "/var/lib/collectd"</div><div>PIDFile     "/var/run/collectd.pid"</div><div>PluginDir   "/usr/lib/collectd"</div>
<div>TypesDB     "/usr/share/collectd/types.db"</div><div>Interval     10</div><div>ReadThreads  5</div></div><div><br></div><div>LoadPlugin syslog</div><div>LoadPlugin logfile</div><div><br></div><div><Plugin logfile></div>
<div>        LogLevel debug</div><div>        File  "/var/log/collectd.log"</div><div>        Timestamp true</div><div>        PrintSeverity true</div><div></Plugin></div><div><br></div><div><br></div><div>
<div>LoadPlugin snmp</div><div><Plugin snmp></div><div>   <Data "std_traffic"></div><div>      Type "if_octets"</div><div>      Table true</div><div>      Instance "IF-MIB::ifName"</div>
<div>      Values "IF-MIB::ifInOctets" "IF-MIB::ifOutOctets"</div><div>   </Data></div><div>   <Host "sw1"></div><div>      Address "192.168.0.1"</div><div>      Version 2</div>
<div>      Community "public"</div><div>      Collect "std_traffic"</div><div>   </Host></div><div></Plugin></div></div><div><br></div><div><div>LoadPlugin csv</div><div><Plugin "csv"></div>
<div>  DataDir "/var/lib/collectd/csv"</div><div>  StoreRates true</div><div></Plugin></div></div><div><br></div><div> </div>