Splunk Search

Split not working according to other commands

lshatzer
Path Finder

Here is a log file example:

2015-06-22T09:54:42.767-0600 name=processTwo items="A123"
2015-06-20T21:23:03.279-0600 name=processOne items="OTHER-4, OTHER-3, OTHER-2, OTHER-1, A123"

When I run the following query:

source="test.log" | eval item=split(items, ",") | stats count by item

I get:

item    count
A123    1
OTHER-1 1
OTHER-2 1
OTHER-3 1
A123    1
OTHER-4 1

This is what I expected:

item    count
A123    2
OTHER-1 1
OTHER-2 1
OTHER-3 1
OTHER-4 1

Why is split doing this? I tried mvexpand on item, and that didn't work.

source="test.log" | eval item=split(items, ",") | mvexpand item | search item="A123" | table _time, item, name

This only returns processTwo, and I would expect it to return both processOne and processTwo

I also tried the following:

source="test.log" | makemv items delim="," | stats count by items

Which also does not work.

0 Karma
1 Solution

lshatzer
Path Finder

Splunk is trimming the output it displays, which was throwing me off, but is not trimming it for the data it is processing. I needed to either add |eval item=trim(item) or change to |eval item=split(items, ", ") (with a space after the comma).

View solution in original post

0 Karma

lshatzer
Path Finder

Splunk is trimming the output it displays, which was throwing me off, but is not trimming it for the data it is processing. I needed to either add |eval item=trim(item) or change to |eval item=split(items, ", ") (with a space after the comma).

0 Karma

stephanefotso
Motivator

Hello! Try this:

source="test.log" | eval item=split(items, ",") |table item| stats count by item

Thanks

SGF
0 Karma

lshatzer
Path Finder

I forgot to mention I tried that as well, same results.

0 Karma

stephanefotso
Motivator

Ok try this:

source="test.log" | eval item=split(items, ",") | mvexpand item|table item| stats count by item 
SGF
0 Karma

lshatzer
Path Finder

Same result as well.

Also for fun I swapped the table and mvexpand. Still the same.

0 Karma
Get Updates on the Splunk Community!

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...

September Community Champions: A Shoutout to Our Contributors!

As we close the books on another fantastic month, we want to take a moment to celebrate the people who are the ...