Hi, I am currently filtering logs that normaly return this kind of field (among others):
vfs.fs.size[D:,pused]
and my grok for this field is the following:
vfs.fs.size\[%{DATA:disco},pused\]
but for certain machines I got this in the same field:
vmware.vm.vfs.fs.size[{$URL},{HOST.HOST},/var,pused]
and my grok for this is the following:
vmware.vm.vfs.fs.size\[\{\$URL\}\,\{HOST.HOST\}\,%{DATA:disco},pused\]
What would be the best aproach to capture both types of fields?