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!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...