Hi @tom_porter, using CIM you have two solutions: you could add all the fields to the CIM data Model (I don't like), you could try to normalize your data adding few fields and using calculated fie...
See more...
Hi @tom_porter, using CIM you have two solutions: you could add all the fields to the CIM data Model (I don't like), you could try to normalize your data adding few fields and using calculated fields to insert the correct values. For example you could add some field to the CIM data Model (exe, comm, path, filename hostname) and then create some calculated fields: | eval
exe=if(type=TYPE1, TYPE1.exe, TYPE2.exe),
comm=if(type=TYPE1, TYPE1.comm, TYPE2.comm) then you can use thee fields in your searches using Data Model values. For more infos about normalization see: https://www.splunk.com/en_us/blog/learn/data-normalization.html?locale=en_us https://docs.splunk.com/Documentation/CIM/5.2.0/User/UsetheCIMtonormalizedataatsearchtime Ciao. Giuseppe