I'm experiencing weird issues with extracted fields : I have a custom field that basically get the hostname (in bold text), which is the 4th item of each log line :
Aug 10 09:42:54 172.31.55.1 **sables-garnier** monitord: RPC call failed: INTERFACE_get_link_state, aborting current process pid 164 : monitord
LABEL=monitord:
Aug 9 19:35:19 172.31.14.1 **talmont-port** monitord: RPC call failed: INTERFACE_get_link_state, aborting current process pid 158 : monitord
LABEL=talmont-port
Aug 9 16:25:04 172.31.38.1 **sables-olona** monitord: RPC call failed: INTERFACE_get_link_state, aborting current process pid 158 : monitord
LABEL=sables-olona
I'm using this regexp : (?i)^(?:[^ ]* ){5}(?P[^ ]+)
Now why in the above extract Splunk shows the fifth item (process name) as a label ?
Using Splunk 4.1.4 (82143) by the way
Any help appreciated
Thanks
... View more