Splunk Search

How to write a search where if a certain string is found in a log, set Status=1, otherwise Status=0?

svivekananda007
Engager

I need to find a string in a log and set/unset a field depending on this.
Ex: field Status = 1 or 0.
I should say if(a_log_event contains "connected") then Status=1, otherwise 0

Please help me with this

THanks

Labels (1)
Tags (4)
1 Solution

woodcock
Esteemed Legend

Like this:

... | eval Status=if(like(_raw, "%connected%"), 1, 0)

View solution in original post

woodcock
Esteemed Legend

If you are more used to Splunk SPL search syntax, you could do it like this:

 ... | eval Status=if(searchmatch("*connected*"), 1, 0)

woodcock
Esteemed Legend

Like this:

... | eval Status=if(like(_raw, "%connected%"), 1, 0)

timmag
Explorer

Say suppose, I get those logs every minute. Is there a way where I can create a field where if I get successive '0' in status(More than once), the field would display the status as error?

0 Karma

Nextbeat
Path Finder

| bucket _time span=1m | stats count(eval(like(<field>, "<status%>"))) AS count BY _time | eval <new_field>=if(count > 1, "error", "")

Use the bucket function to view events per minute. Then use stats to count a desired field by a value using the percent sign as a wildcard. The second eval statement creates a new field and looks for counts greater than one. If there are any counts greater than one, "error" will be displayed for that event within the new field. Otherwise, nothing will be displayed for the new field.

0 Karma

Nextbeat
Path Finder

This definitely works. It's good to know that % acts like a wildcard for eval statements in Splunk.

0 Karma

svivekananda007
Engager

THis worked. thanks. can you suggest me a way to keep Status=1 until "disconnected" is encountered in a log.

Thanks

0 Karma

garigis
Engager

Thanks for this! I've been trying to figure this out for about an hour and tried a bunch of other stuff.

0 Karma

woodcock
Esteemed Legend

Be sure to UpVote!

kristian_kolb
Ultra Champion

Define what you mean by "keep"? This evaluation creates a new field on a per-event basis. It is not keeping a state. Remember that a log searching tool is not necessarily the best way for finding out a state, because for whatever timerange you search, you might always miss that important piece of state information that was logged 5 minutes before your search time span...

0 Karma
Get Updates on the Splunk Community!

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...

What's new in Splunk Cloud Platform 9.1.2312?

Hi Splunky people! We are excited to share the newest updates in Splunk Cloud Platform 9.1.2312! Analysts can ...