Splunk Search

How can i extract words and their count from a field summary in a table?

smruti13
Observer

I have a table which has fields defects and summary that gives me the summary of the defects. I want to extract some words from summary and their count as well. Please help.

0 Karma
1 Solution

dineshraj9
Builder

Considering you are only checking the issue_type and summary fields and you know the values you are looking for (i.e. words like Bug, Reopened etc.), you can do it this way -

<your search> | eval details=issue_type.summary | rex max_match=0 field=details "(?<word>(?i)(Bug|Reopened|Closed))" | stats count by word

View solution in original post

0 Karma

dineshraj9
Builder

Considering you are only checking the issue_type and summary fields and you know the values you are looking for (i.e. words like Bug, Reopened etc.), you can do it this way -

<your search> | eval details=issue_type.summary | rex max_match=0 field=details "(?<word>(?i)(Bug|Reopened|Closed))" | stats count by word
0 Karma

smruti13
Observer

Thanks Dinesh. It works fine . Modified the query a bit as i did not want it on issue_type field.Just summary would do it.

0 Karma

dineshraj9
Builder

Great!! 🙂

0 Karma

dineshraj9
Builder

Can you provide a sample of your data and the output you are expecting?

0 Karma

smruti13
Observer

sure .

my table:

key issue_type summary
SPJ-171 Bug Reopened n for aaam
SPJ-18 Bug Reopened_m for AAAM
SPJ-19 Bug Bug 2
SPJ-19 Bug Reopened x for aaam

expected (eg):

word count
Reopned 3
Bug 5 etc.

The words are from the summary field. Hope I am clear 🙂

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...