Dashboards & Visualizations

How to achieve correct chart visualization & overlay?

Manasa_401
Path Finder

Hello Splunkers

Need your help to get the desired result.
Below is the sample query for reference.

| makeresults
| eval week_year="2022-48",group="ABC",old=64,new=78
| append
[| makeresults
| eval week_year="2022-48",group="XYZ",old=35,new=15]
| append
[| makeresults
| eval week_year="2022-49",group="XYZ",old=33,new=17]
| append
[| makeresults
| eval week_year="2022-49",group="ABC",old=215,new=158]
| fields - _time
| eval target1=round((old/new)*0.17,3)*100,target2=round((old/new)*0.26,3)*100,final=round(old/new,3)*100
| table week_year group final target1 target2
|chart last(final) as final values(target1) as target1 values(target2) as target2 over group by week_year


But since values() is used we are getting target fields for each week. But expected outcome is to get one each line for target1 & target2.

 

Manasa_401_3-1671198928650.png

 

Please help me to get the visualization in correct format.

Thanks in advance!!

 

Labels (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

It is not clear what you expect the chart to look like

Having said that, does this help:

|chart last(final) as final values(target1) as target1 values(target2) as target2 over week_year by group
0 Karma

Manasa_401
Path Finder

Hello @ITWhisperer 

If you run till the table command you will get the results as shown below.

Manasa_401_0-1671202109451.png

my required visualization is to show data in below similar format, but instead of 4 lines i just need one each line for both targets.
I need help on the query to get desired format.

Manasa_401_1-1671202191442.png

 

 

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Given your sample data, what points do you want shown on the two lines?

0 Karma

Manasa_401
Path Finder

I need target1 and target2 values to be shown as line

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Which value do you want for target1 for ABC and which value do you want for target1 for XYZ? You have two possible values given the data you presented - that's why you have more lines than you were expecting; the lines are doubled up because you have two year-weeks

0 Karma
Get Updates on the Splunk Community!

Unify Your SecOps with Splunk Mission Control

In today’s post, I'm excited to share some recent Splunk Mission Control innovations. With Splunk Mission ...

Data Preparation Made Easy: SPL2 for Edge Processor

By now, you may have heard the exciting news that Edge Processor, the easy-to-use Splunk data preparation tool ...

Introducing Edge Processor: Next Gen Data Transformation

We get it - not only can it take a lot of time, money and resources to get data into Splunk, but it also takes ...