dboutput.conf is not supported in all versions of DB Connect 1.x. Trying to invoke | dboutput <stanza name> will throw a NotImplementedException.
If you want to manually generate the sql, you can either set sql , or sql.insert and sql.update . Make sure to also set advanced=true .
For the sql syntax, one hint is to look at what the debug logging shows about the auto-generated query. For an example, see: http://splunk-base.splunk.com/answers/88599/dboutput-bug-updating-mysql
UPDATE mytable SET ip=$ip$, NetAddress=$NetAddress$, ComputerName=$ComputerName$, Manufacturer=$Manufacturer$, Model=$Model$, mac=$mac$, IPAddress=$IPAddress$ WHERE ip = $ip$
So in your SQL you can reference any field in the search results by using $fieldname$.
To invoke the config is fairly simple, just use | dboutput <stanza name>
... View more