Dashboards & Visualizations

Detect anomalies weighted by another field

sanchesku
Observer

Hello

in my case I have a list of products with producttype and weight. For products of the same type, weight might be different although always within some range. As an example:

productid type weight anomaly?
1 a 100kg  
2 a 102kg  
3 b 500kg  
4 b 550kg  
6 a 15kg yes
7 b 2500kg yes

 

One option would be solving this by calculating average and standard deviation:  

index=products
| stats list("productweight") as weights by "producttype"
| mvexpand weights
| eval weight=tonumber(weights)
| eventstats avg(weight) as avg stdev(weight) as stdev by "producttype"
| eval lowerBound=(avg-stdev*10), upperBound=(avg+stdev*10)
| where weight < lowerBound OR weight > upperBound

But I was wondering whether there is a way to solve this with the anomalydetection function. The function should search for anonalies within the products of the same producttype and not general for all weights on available. 

Something like | anomalydetection by "producttype" but this option doesnt seem to be available.

Does somebody know how to do this? Many thanks in advance for your help

Labels (2)
0 Karma
Get Updates on the Splunk Community!

Enterprise Security Content Update (ESCU) | New Releases

In November, the Splunk Threat Research Team had one release of new security content via the Enterprise ...

Index This | Divide 100 by half. What do you get?

November 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with this ...

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

❄️ Celebrate the season with our December lineup of Community Office Hours, Tech Talks, and Webinars! ...