Splunk Search

FInd different value from "-" on column

_Mauro_Costa_
Explorer

Hello
I have a query that gives me the data below:

_time                                 | id                 | order_id   | job             | user_id
------------------------------------------------------------------------------------
2021-06-08 17:00:00 | 2240905 | -                   | done         | 23
------------------------------------------------------------------------------------
2021-06-08 17:00:00 | 2240844 | -                   | done         | 23
------------------------------------------------------------------------------------
2021-06-08 12:00:00 | 2240905 | -                   | start          | 167
------------------------------------------------------------------------------------
2021-06-15 10:00:00 | 2240844 | -                   | start          | 102
------------------------------------------------------------------------------------
2021-06-15 10:00:00 | 2240905 | 1066899 | allocated | 23
------------------------------------------------------------------------------------
2021-06-15 09:00:00 | 2240844 | 1055788 | allocated | 23

for each id, i need to find job "start" to have user_id and _time, but i also need order_id, how can i do this?
I need something like this:

_time                                 | id                 | order_id   | job             | user_id
------------------------------------------------------------------------------------
2021-06-08 12:00:00 | 2240905 | 1066899 | start          | 167
------------------------------------------------------------------------------------
2021-06-15 10:00:00 | 2240844 | 1055788 | start          | 102
------------------------------------------------------------------------------------
Thanks

Labels (1)
0 Karma
1 Solution

venkatasri
SplunkTrust
SplunkTrust

Hi @_Mauro_Costa_ 

Can you try this,

<your_search>
| eventstats max(order_id) as order_id by id 
| search job=start 
| stats max(order_id) as order_id, max(user_id) as user_id, values(job) as job, earliest(_time) as time by id 
| convert ctime(time) as time

--

An upvote would be appreciated if this reply helps!

View solution in original post

0 Karma

venkatasri
SplunkTrust
SplunkTrust

Hi @_Mauro_Costa_ 

Can you try this,

<your_search>
| eventstats max(order_id) as order_id by id 
| search job=start 
| stats max(order_id) as order_id, max(user_id) as user_id, values(job) as job, earliest(_time) as time by id 
| convert ctime(time) as time

--

An upvote would be appreciated if this reply helps!

0 Karma

_Mauro_Costa_
Explorer

@venkatasri thanks
this worked for me " | eventstats max(order_id) as order_id by id "

0 Karma
Get Updates on the Splunk Community!

Enterprise Security Content Update (ESCU) | New Releases

In the last month, the Splunk Threat Research Team (STRT) has had 2 releases of new security content via the ...

Announcing the 1st Round Champion’s Tribute Winners of the Great Resilience Quest

We are happy to announce the 20 lucky questers who are selected to be the first round of Champion's Tribute ...

We’ve Got Education Validation!

Are you feeling it? All the career-boosting benefits of up-skilling with Splunk? It’s not just a feeling, it's ...