Hello,
I have some data i collected and visualizing in Kibana.Now I have defined a ML job to monitor high/low filerate but I want the ML analysis to stop outside the range the data is collected(eg: 7 to 9pm data are not collected everyday). What I want to know is can I use “time“ as value to the parameter applies_to like
"custom_rules": [
{
"actions": ["skip_result", "skip_model_update"],
"conditions": [
{
"applies_to": "time",
"operator": "lt",
"value": 7
},
{
"applies_to": "time",
"operator": "gte",
"value": 12
}
]
}
]
I have a doubt and I would like to know if it’s correct or how I exclude this range for the model.
Thanks.
