Hi,
We have started using Snowplow to capture usage data on our website and send it to an ES index (called snowplow). Each document in snowplow is large, and currently our historical data reporting only needs two data points - page views, and clicks.
We have created two historical indexes in ES - 'page views' and 'clicks', that are dumps from our MySQL database, and contain monthly aggregates. e.g. { page: '/test', views: { '2016-02': 437, '2016-03': 490 } }.
We could like to run a monthly rollup from snowplow into each of these indices, however the UI in Kibana 6.5.0 only allows us to rollup from one index to another.
Is it advisable to schedule multiple rollup jobs on the same index? Or is this something that's possible in Curator?
Thanks.