Splunk Search

How to create an eval on random data string ?

mah
Builder

Hi,

My issue is : I want to create a field from random data string (always the same) which is not present in all logs.

The objective is to create a table with a first column which lists all value of "log-group" field AND a second column with binary value which is to say if the random string is present in the log so 1 if not 0  : 

log-groupstring presence
test1 1
test2 0
test3 1

For example, my log : 

log-group=test1 2020-07-09 13:28:38 [pool] INFO test : received from test analytics.measure.record topic: 0 objects random data string

log-group=test2 2020-07-09 13:28:38 [pool] INFO test : received from test analytics.measure.record topic: 0 objects 

log-group=test3 2020-07-09 13:28:38 [pool] INFO test : received from test analytics.measure.record topic: 0 objects random data string

How can I do that ? 

Labels (1)
Tags (1)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi @mah ,

good!

for the other people of Community, if this answer solves your need, please accept solution and eventually Karma Points are appreciated.

Ciao and next time.

Giuseppe

View solution in original post

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @mah ,

you should try something like this:

index=your_index
| eval string_presence=if(searchmatch(random_data_string),"1","0")
| table log_group string_presence 

Ciao.

Giuseppe

mah
Builder

Exactly what I needed !  Thanks 😉

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @mah ,

good!

for the other people of Community, if this answer solves your need, please accept solution and eventually Karma Points are appreciated.

Ciao and next time.

Giuseppe

0 Karma
Get Updates on the Splunk Community!

Enhance Your Splunk App Development: New Tools & Support

UCC FrameworkAdd-on Builder has been around for quite some time. It helps build Splunk apps faster, but it ...

Prove Your Splunk Prowess at .conf25—No Prereqs Required!

Your Next Big Security Credential: No Prerequisites Needed We know you’ve got the skills, and now, earning the ...

Splunk Observability Cloud's AI Assistant in Action Series: Observability as Code

This is the sixth post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...