Getting Data In

Creating graphs on extracted values in a csv file

anirudhduggal
Engager

Hello All,

I have a csv file which has values like this

host, ports running
192.168.1.1, 80,8081,22
192.168.1.2, 80,21,8083
192.168.1.3, 22,23,8082

Now, I want to create graphs by extracting the unique values form each ports running field.

i.e. for this file the result should be
number of port 80 open - 2
number of port 22 open - 2
number of port 8081 open - 1
number of port 8082 open - 1
number of port 8083 open - 1

I have tried extracting fields however, I am not able to use these values as a unique value.

Anyone has faced a similar situation.
Thank you for reading this and thanks in advance 🙂

0 Karma
1 Solution

martin_mueller
SplunkTrust
SplunkTrust

This should do:

... | makemv ports_running delim="," | stats count by ports_running

The makemv turns your comma-delimited string into a multi-value field, with one value per port. The stats then does the counting per port.

View solution in original post

anirudhduggal
Engager

Worked like a charm.
Just another thing. The last field that appears is a blank because the fields are ending with a comma (,) is there any way i can omit this field ?

0 Karma

martin_mueller
SplunkTrust
SplunkTrust

This should do:

... | makemv ports_running delim="," | stats count by ports_running

The makemv turns your comma-delimited string into a multi-value field, with one value per port. The stats then does the counting per port.

Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...