Dashboards & Visualizations

How to display the Total Space and Consumed in a single pie chart?

bollam
Path Finder

Hello, I have following content in the event and I want to display TotalSpace and ConsumedSpace in the single pie chart.
For an instance: if the TotalSpace is 1000 and the ConsumedSpace is 250 then the 1/4th of the pie should display as ConsumedSpace over TotalSpace.

Event:
This is total space is TotalSpace=2000
This is Available space is AvailableSpace=1000
Name="Bollam"

Query which I had written:
index=sai_core source="size" Name="Bollam" | eval ConsumedSpace = TotalSpace - AvailableSpace
| stats first(ConsumedSpace) as ConsumedSpace by TotalSpace

Tags (1)
0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

Hi
Have you tried transpose command?

Can you please try this?

index=sai_core source="size" Name="Bollam" | head 1
| eval ConsumedSpace = TotalSpace - AvailableSpace 
| table ConsumedSpace AvailableSpace 
| transpose

Please try below sample search and set pie chart in viz.

| makeresults 
| eval TotalSpace=1000,AvailableSpace=250 
| eval ConsumedSpace = TotalSpace - AvailableSpace 
| table ConsumedSpace AvailableSpace 
| transpose

Thanks

Get Updates on the Splunk Community!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...