I would like to have sparklines for percentiles too. The aggregate functions documentation (Aggregate functions - Splunk Documentation) suggests percentile functions (exactperc<percentile>, perc<percentile> and upperperc<percentile>) can be used with sparkline like the following, however I get the error 'Error in 'stats' command: Invalid aggregation function for sparkline.' when I try to use it. ... | stats ... sparkline(perc95(duration), 5m) as duration_p95 ... I have resorted to having sparklines for max, avg and min and calculating overall percentile values like the following: ... | stats sparkline(max(duration), 5m) AS duration_max, perc95(duration) AS duration_p95_overall, sparkline(avg(duration), 5m) AS duration_avg, sparkline(min(duration), 5m) AS duration_min
... View more