Splunk Search

i want to create the field of error :

Joycetran
New Member

alt text

create the field "DM Call errors #" ,
then count this number.
I tried to use case, but I dont have the field as title to match

Tags (1)
0 Karma

jpolvino
Builder

If you're trying to create a new field for the DM Call Errors that contains the count for each event, then this is one way to do it:

(your search here) | rex "DM Call  errors #  : (?<DmCallErrors>\d+)"

Then you can add then up the field values using

| stats count(DmCallErrors) AS "Count of DM Call Errors"

somewhere after the extract.

If you and others need this, talk to your Splunk admin about having this field created when the log gets ingested, so you won't have to worry about the rex.

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...