Splunk Search

I would like show sparkline from outputlookup table

karn
Explorer

I would like to improve search performance by preload data into csv or kv-store with sparkline. How do I display sparkline back when I use command inputlookup ?

Thank you

Tags (1)
0 Karma

niketn
Legend

@karn community would be able to assist you better if you provide more details as to what your current sparkline looks like and what is the data and Splunk query used.

Assuming you are having hourly sparkline. Following is a run anywhere example from Splunk's _internal index:

index=_internal sourcetype=splunkd log_level!=INFO
| stats sparkline(count,1h) as trend by component

In order to save the results of hourly stats. You need to breakdown the process in two parts:

Step 1: Send to outputlookup with hourly aggregate

index=_internal sourcetype=splunkd log_level!=INFO
| bin _time span=1h
| stats count by _time component
| outputlookup test.csv

Step 2: Get sum() of count per hour as sparkline. Use span as 1h for sparkline

| inputlookup test.csv
| stats sparkline(sum(count),1h) as trend by component

Please try out and confirm!

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...