Splunk Search

How do you timechart count for 3 fields where Date is on x-axis and the remaining fields are on y axis?

pavanae
Builder

I have a query as below

| inputlookup sample_lookup.csv | rename "Count Type" as count_type
which gives the result as follows...

alt text

Is there any way in Splunk to get a visualization where Date in x axis and Product, count_type and count on y-axis?

0 Karma

niketn
Legend

@pavanae, try the following and confirm:

<yourCurrentSearch>
| fields Date Product count_type count
| eval key=Product."-".count_type
| chart sum(count) as count by Date key

Following is a run anywhere example based on sample data provided in the question:

| makeresults
| eval data="Product=A,count_type=X,Date=10/31/2018,count=72;Product=A,count_type=Y,Date=10/31/2018,count=42;Product=B,count_type=X,Date=10/31/2018,count=12;Product=B,count_type=Y,Date=10/31/2018,count=32;Product=A,count_type=X,Date=10/15/2018,count=172;Product=A,count_type=Y,Date=10/15/2018,count=442;Product=B,count_type=X,Date=10/15/2018,count=62;Product=B,count_type=Y,Date=10/15/2018,count=45"
| makemv data delim=";"
| mvexpand data
| rename data as _raw
| KV
| fields - _raw _time
| fields Date Product count_type count
| eval key=Product."-".count_type
| chart sum(count) as count by Date key
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

pavanae
Builder

@niketnilay. It's displayed the date on x-axis which is good but all I can see on the y-axis values as NULL.

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...