Good afternoon, at the moment I am investigating how to restrict the filters of the kibana boards by time, at the moment I have a query that works for the alias_metricbeat of the index pattern metricbeat- *, however I see an inconvenience the pointing in the boards must switch to the alias, is there another way to do it?
POST /_aliases
{
"actions": [
{
"add": {
"index": "metricbeat-*",
"alias": "alias_metricbeat",
"filter": { "range": { "@timestamp": {"gte": "now-1M"}}}
}
}
]
}