Trying to PUT a rollup job, getting this error:
No handler found for uri [/_xpack/rollup/job/test_id] and method [PUT]
I've just updated my xpack licence, hopefully it isn't the problem.
This is my rollup:
PUT _xpack/rollup/job/test_id
{
"index_pattern": "current_index*",
"rollup_index": "test_rollup",
"cron": "*/30 * * * * ?",
"page_size" :1000,
"groups" : {
"terms": {
"fields": [
"words"
]
}
},
"metrics": [
{
"field": "wordsCount",
"metrics": ["min", "max", "avg", "sum"]
}
]
}