Splunk Search

How can I get the graph that only displays percentage when using timechart?

Min1025
Explorer

I have a query below that is showing "PriceChangeCount", "Total" and "PriceChangeRate" in graph, How can I get the graph that only displays the PriceChangeRate in graph?

index=xxx sourcetype=xxx|eval priceChangeCnt=case(Id=xxx,"Yes") | timechart span=1h count as Total, count(priceChangeCnt) as PriceChangeCount | eval PriceChangeRate=(PriceChangeCount/Total)*100

Tags (2)
0 Karma
1 Solution

adonio
Ultra Champion

try this:

index=xxx sourcetype=xxx
|eval priceChangeCnt=case(Id=xxx,"Yes") 
|bin _time span=1h 
| stats count as Total, count(priceChangeCnt) as PriceChangeCount by _time
| eval PriceChangeRate=(PriceChangeCount/Total)*100
| timechart span=1h max(PriceChangeRate) as m_PriceChangeRate

hope it helps

View solution in original post

0 Karma

adonio
Ultra Champion

try this:

index=xxx sourcetype=xxx
|eval priceChangeCnt=case(Id=xxx,"Yes") 
|bin _time span=1h 
| stats count as Total, count(priceChangeCnt) as PriceChangeCount by _time
| eval PriceChangeRate=(PriceChangeCount/Total)*100
| timechart span=1h max(PriceChangeRate) as m_PriceChangeRate

hope it helps

0 Karma

Min1025
Explorer

Hi adonio, many thanks! It works well.

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...