a5hk / funnel_viz

A funnel chart for Splunk

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

A funnel chart for Splunk

License:MIT License


Languages

Language:HTML 67.1%Language:TypeScript 25.1%Language:Ruby 5.5%Language:JavaScript 1.6%Language:CSS 0.7%