Dashboards & Visualizations

Single value Trellis and appendpipe problem

vxsplunk
Explorer

I'm trying to create a panel with a Single Value Trellis visualization with trend that shows "No data" if the search result was 0. When there is a result one could drill down to the method.

This is the search query I was going to use:

index=main source="/home/splunk/tmp/web00*"  sourcetype=access_combined 
| timechart  count by method
| appendpipe [stats count | eval msg="No data"  | where count==0 ]

It didn't work out the way I expected. I think appendpipe somewhat messes up the statistical data. When configuring Trellis, I can only select aggregation and not the field 'method' (splitBy). Because I would like to drilldown I need the Trellis tokens that are not available when using aggregation.

To confirm Trellis works I removed the appendpipe and the drilldown works as expected (after some adjustment of the trellis config).

-> Why would Trellis break when using appendpipe in this way?
-> Is this a feature or a bug?

I found another user experiencing the same problem: "I have tried the appendpipe command, but this seems to stuff up the trellis display." ( @kozanic_FF / https://answers.splunk.com/answers/685851/how-do-you-present-an-all-green-dashboard-when-no.html )

I took some screenshots from a test setup (Splunk 7.2.0 running in docker and filled with some generated apache logging).

alt text

alt text

DalJeanis
SplunkTrust
SplunkTrust

Try this instead...

 | appendpipe [stats count  | where count==0 | eval method="No data" | table method ]

Explanation - Think about what the records look like that Trellis is supposed to be receiving. There are individual fields called "POST" and "PUT" and "GET", and those names came from the values of a split-by field called method. Since they are coming direct from timechart, there is some additional information coming along that tells Trellis what that split-by field name was that was timecharted (in this case, method ).

When there is no data at all coming from the timechart, then the appendpipe will be the only place that any data exists. So, you should align the name of the field that you are putting the "no data" flag in ... which is the ONLY field you pass out of the appendpipe to the single-value viz ... you align that name with the name of the split-by field, and the action of the single-value viz will therefore be more sensible.


Here's a run-anywhere example for folks to play with.

First, set your timeframe to the last 30 seconds and then run this,

index=_internal  eventtype=splunkd-log 
| timechart count by component 
| appendpipe [|stats count | where count==0 | eval component="No Data" | table component]

Then, set the viz to single-value and Trellis, and verify that you get a number of sv panels with sparklines, one for each component.

After that, change the first line of the search to eventtype=splunkd-log-nonesuch and see that the single-value viz works as expected, showing only a message that says "no data".

0 Karma

vxsplunk
Explorer

@DalJeanis Thank you for you comment, but unfortunately your example has the same problem and isn't a solution to my problem. My objective is to create a dashboard with this Single Trellis visualization where I can drilldown on the method field (or component field in your example). Because the splitBy isn't available for the field 'method' (or 'component' in your example) I cannot use Trellis tokens needed in the drilldown. When the appendpipe is left out, the splitBy is done right and the Trellis tokens are available. The splitBy is done right when it is possible to choose the field 'method' at splitBy in the Trellis configuration. If only the aggregation is available, the Trellis tokens are not there to use.

mcg_connor
Path Finder

@vxsplunk Did you ever find a solution for this issue? I am having the same issue currently and am unable to fix it.

0 Karma

vxsplunk
Explorer

@niketnilay Since you gave some useful feedback last time, I invite you to help me with this one too. 😉

0 Karma
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...