Splunk Search

Need help for Predict command

dhavamanis
Builder

Need your help,

We need to get the prediction for each business unit and sub business unit. But the below query giving the overall business unit prediction. Please provide the working example to get each business unit and sub business unit wise split-up for next 3 month prediction.

index="akamai-bill" |stats sum(BU_Total) as "cost($)" by _time, BU, SBU | predict "cost($)" algorithm=LLT future_timespan=3 | sort + SBU +BU

0 Karma
1 Solution

dhavamanis
Builder

using map command able to filter the results,

index="akamai-bill" |table BU, SBU| map search="search index="akamai-bill" SBU=$SBU$ |stats sum(BU_Total) as "cost" by _time, SBU | predict "cost" algorithm=LLT future_timespan=3 | table _time, SBU,lower95(prediction(cost)) ,prediction(cost),upper95(prediction(cost)) | eval SBU=if(SBU=$SBU$, $SBU$,$SBU$."1") | table _time, SBU,lower95(prediction(cost)) ,prediction(cost),upper95(prediction(cost)) | where SBU!=$SBU$ | table _time, SBU,lower95(prediction(cost)) ,prediction(cost),upper95(prediction(cost)) | eval SBU=$SBU$ "

View solution in original post

0 Karma

dhavamanis
Builder

using map command able to filter the results,

index="akamai-bill" |table BU, SBU| map search="search index="akamai-bill" SBU=$SBU$ |stats sum(BU_Total) as "cost" by _time, SBU | predict "cost" algorithm=LLT future_timespan=3 | table _time, SBU,lower95(prediction(cost)) ,prediction(cost),upper95(prediction(cost)) | eval SBU=if(SBU=$SBU$, $SBU$,$SBU$."1") | table _time, SBU,lower95(prediction(cost)) ,prediction(cost),upper95(prediction(cost)) | where SBU!=$SBU$ | table _time, SBU,lower95(prediction(cost)) ,prediction(cost),upper95(prediction(cost)) | eval SBU=$SBU$ "

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...