Hello Everyone.
im trying to make a simple table for the log file which i have uploded in Splunk. i can able to get the fields in column but not the remaining event data ????
for Ex: this is one sample event
Aug 24 12:02:55 1 1 15662575.1275737 MX80 urls src=17 dst=1.1.1.1:443 mac=00:9C:73 request: UNKNOWN https://abc.network-auth.com/...
from this i couldint able to fetch request and https data into my table. the other data is fetched with the help of table command because they are fields.
can anybody help me out.............
@salmanbpc ,
Please dont include any sensitive information including the IP addresses and actual URLs in the question. It's masked for now
thanks renjith... will take care going ahead
@salmanbpc ,
You may use rex
to extract the fields
For e.g. try this with the sample data
your search|rex field=_raw "request:\s(?<Request>\w+)\s(?<URL>.+)"
You may adjust the rex based on your actual data.
Reference : https://docs.splunk.com/Documentation/Splunk/7.3.1/SearchReference/Rex