I'm pulling various Win32 classes via WMI.conf and am running into an issue when the value is an array. Below is an example of pulling IP-enabled adapters so that we have a record of IP, subnet, DNS, etc. However, the IPAddress is stored in an array IPAddress={192.168.1.1} and when WMI.conf tries to collect the information, it results in the value "unknown variant result type 8200".
How do I instruct Splunk to report the array correctly?
[WMI:NICInfo]
server = localhost
wql = Select * from Win32_NetworkAdapterConfiguration WHERE IPEnabled = True
interval = 86400
... View more