Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 678 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 678 Bytes

Funnel Chart

A funnel chart visualization app for Splunk which supports two types of charts: classic and hybrid. The hybrid type is inspired by this article.

Examples

| makeresults
| eval data=split("Landing Page,1000,100-Product Page,900,90-Add to Cart,500,50-Checkout,200,20-Purchase,150,15", "-")
| mvexpand data
| eval step=mvindex(split(data, ","), 0), count=mvindex(split(data, ","), 1), percent=mvindex(split(data, ","), 2)
| table step count percent

Classic

classic

Hybrid

hybrid

License

MIT License