I am working on anomaly detection in real-time and my data looks attached and it's unlabelled. I want to detect if the next minute timestamp is an anomaly or not. My main column in num_part which is number of players and all other columns are supporting metrics.
Issue:-
1.) I have some kind of data for 50 different domains.
2.) There is differnet kind of seasonality in different domains like on WednesdayTuesday domain 1 goes for Maintainance on tuesday domain b etc.
The approach I am using:-
As of now, I am calculating Z-score for every five-minute interval and comparing it with historical data and alerting but getting lots of false positive.
I am even considering it a streaming data like we have in sensors and not a time series.
I want to alert my team in real-time if the incoming next data point is an anomaly.