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!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...