Getting Data In

turn a columns with multiple entries into a chart

rite10privacy10
Explorer

Hello,

I am pretty new to splunk, and just feel lost at times. I have a question that i cant seem to find an answer for. 
I have data that looks like 

rite10privacy10_0-1628861075129.png

so the above is like 1 row and then there are multiple  rows with the same type of list of entries for timestamp and total

now I want to turn each row into a line on a line chart where the x-axis is the timestamp and the y-axis is the "Total". sort of like overlapping line charts based on all the rows.

anyone have ideas 

0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust
| eval zipped=mvzip(TimeStamp,Total,"!")
| mvexpand zipped
| eval TimeStamp=mvindex(split(zipped,"!"),0)
| eval Total=mvindex(split(zipped,"!"),1)
| fields - zipped

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust
| eval zipped=mvzip(TimeStamp,Total,"!")
| mvexpand zipped
| eval TimeStamp=mvindex(split(zipped,"!"),0)
| eval Total=mvindex(split(zipped,"!"),1)
| fields - zipped

rite10privacy10
Explorer

you are a beautiful soul

0 Karma

Spranta
Splunk Employee
Splunk Employee

Great solution, just noticed that my solution has the issues that I'm dedupping the same results so this will lead to an incorrect total value

0 Karma

rite10privacy10
Explorer

Hello, So i have tried that the issue is tho and then i get a table that looks like this 

rite10privacy10_0-1628863408501.png


so then i apply same thing to the Total columns and i get a bunch of duplicate rows, is there a way to delete all duplicate rows at that point?

0 Karma

Spranta
Splunk Employee
Splunk Employee

Hi, have you tried to expand the Multiple Value field with

| mvexand TimeStamp?

0 Karma

rite10privacy10
Explorer

Hello, So i have tried that the issue is tho and then i get a table that looks like this 

rite10privacy10_0-1628864550808.png

 


so then i apply same thing to the Total columns and i get a bunch of duplicate rows, is there a way to delete all duplicate rows at that point?

0 Karma

Spranta
Splunk Employee
Splunk Employee

yes, try

| dedup TimeStamp,Total

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...