Splunk Search

Separate values in stacked bars

pranaynanda
Path Finder

How can I still have a separation between 'xls' and 'xlsx' in the bar that says 'Excel'?

eval ExtTyp = case(extension="doc" OR extension="docx", "Word", extension="xls" OR extension="xlsx", "Excel", extension="ppt" OR extension="pptx", "PowerPoint", extension="hpg" OR extension="hpgl", "HPGL") | stats count by  ExtTyp
Tags (2)
0 Karma

woodcock
Esteemed Legend

Like this:

eval ExtTyp = case(extension="doc" OR extension="docx", "Word", extension="xls" OR extension="xlsx", "Excel", extension="ppt" OR extension="pptx", "PowerPoint", extension="hpg" OR extension="hpgl", "HPGL")
| eval ExtType=case(extension="xls", "Excel(xls)", extension="xlsx", "Excel(xlsx)", true(), ExtType)
| stats count BY ExtTyp
0 Karma

pranaynanda
Path Finder

Apologies. But that did not work. It returned with the same values.

0 Karma
Get Updates on the Splunk Community!

Share Your Ideas & Meet the Lantern team at .Conf! Plus All of This Month’s New ...

Splunk Lantern is Splunk’s customer success center that provides advice from Splunk experts on valuable data ...

Combine Multiline Logs into a Single Event with SOCK: a Step-by-Step Guide for ...

Combine multiline logs into a single event with SOCK - a step-by-step guide for newbies Olga Malita The ...

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...