Getting Data In

splitting data and saving the each result

changwoo
Communicator

i have raw data like

  1. cat | dog | ele

  2. cat | dog

  3. dog | ele

this field name is catego
result should be counting like this => cat = 2, dog =3, ele =2

sourcetype=movie | eval n= split(genre,"|") |table count(n) by n < = this is not splitting the string

Tags (1)
1 Solution

Ayn
Legend

OK, some issues here.

For one, the field name is catego, but in your search you use "genre"?
And then, table is no statistical command. It only shows the fields you supply as arguments. count(n) is no field, neither is "by".

Maybe you want something like this:

sourcetype=movie | eval n=split(catego,"|") | stats count by n

View solution in original post

Ayn
Legend

OK, some issues here.

For one, the field name is catego, but in your search you use "genre"?
And then, table is no statistical command. It only shows the fields you supply as arguments. count(n) is no field, neither is "by".

Maybe you want something like this:

sourcetype=movie | eval n=split(catego,"|") | stats count by n

changwoo
Communicator

oh ... my mistake!

the table name is genre 🙂

thanks!

0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

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