Getting Data In

Time manipulation doesn't work

Yarsa
Path Finder

My query runs for the past week and I want to append to sets of results from 2 different date ranges. What is my mistake?

eventId="43330100000002004" | convert timeformat="%m/%d/%y %H:%M:%S" ctime(_time) as "new_t" |search "join room success" earliest="02/04/2012 12:00:00" latest="02/05/2012 12:00:00"

Tags (1)
0 Karma
1 Solution

lguinn2
Legend

FIrst, the time format in the earliest and latest is wrong. It should be

 earliest="02/04/2012:12:00:00" latest="02/05/2012:12:00:00"

Also, the search command on the second line does not run an independent search. The search command searches within the previous search results. You may want to use the append command instead. For example

eventId="43330100000002004" | convert timeformat="%m/%d/%y %H:%M:%S" ctime(_time) as "new_t" |
append [search "join room success" earliest="02/04/2012:12:00:00" latest="02/05/2012:12:00:00"]

View solution in original post

lguinn2
Legend

FIrst, the time format in the earliest and latest is wrong. It should be

 earliest="02/04/2012:12:00:00" latest="02/05/2012:12:00:00"

Also, the search command on the second line does not run an independent search. The search command searches within the previous search results. You may want to use the append command instead. For example

eventId="43330100000002004" | convert timeformat="%m/%d/%y %H:%M:%S" ctime(_time) as "new_t" |
append [search "join room success" earliest="02/04/2012:12:00:00" latest="02/05/2012:12:00:00"]
Get Updates on the Splunk Community!

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...

Cloud Monitoring Console - Unlocking Greater Visibility in SVC Usage Reporting

For Splunk Cloud customers, understanding and optimizing Splunk Virtual Compute (SVC) usage and resource ...

Automatic Discovery Part 3: Practical Use Cases

If you’ve enabled Automatic Discovery in your install of the Splunk Distribution of the OpenTelemetry ...