Splunk Enterprise

Is it possible to fill automatically a chart radar from a lookup?

jip31
Motivator

hi

I would like to know if it is possible to display automatically a chart radar from a lookup?

radar.csv is the result of a scheduled search

there is 3 fields in this csv : "sig_app" which correspond to the radar "key" field, sig_cat which correspond to the radar "axis" field and count which correspond to the radar "value" field

is it possible to do this or not? 

thanks

 

| inputlookup radar.csv 
| eval sig_app=key
| eval sig_cat=axis
| eval count=value 
| eval key="Actions", AAA=.37, BBB=8.64, CCC=2.56, DDD=1.68, EEE=4.992
| untable key,"axis","value" 
| eval keyColor="magenta"

 

Labels (2)
0 Karma
1 Solution

somesoni2
Revered Legend

Try like this

 

| inputlookup radar.csv 
| rename sig_app as key, sig_cat as axis, count as value 
| eval keyColor="magenta"

View solution in original post

0 Karma

somesoni2
Revered Legend

Try like this

 

| inputlookup radar.csv 
| rename sig_app as key, sig_cat as axis, count as value 
| eval keyColor="magenta"
0 Karma
Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...