Hi colinmchugo , I think you have it backwards for time conversion. Splunk uses _time to for ordering time series data. From what you've mentioned so far, the _time is incorrect and the timestamp you are looking to use is in your event data labeled as "Created" So in essence, what you are looking to use for your timestamp is "Created". With the statement you are currently using:
Created=strftime(_time, "%d/%m/%Y %I:%M:%S %p")
You are populating the Created field with the _time, which is the timestamp that splunk generates when the data is captured. What I believe you need to do here is:
eval _time=strptime(Created, "%d/%m/%Y %I:%M:%S %p")
Keep in mind however that the time range picker uses _time field that's available in the base search, no the calculated _time afterwards. The workaround is not very optimal as it has to query either all times or sufficiently large time range where you know logs you want to query exist.
... View more