You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Occasionally you need to write a query and get all the results across a long time span (say a month). Performing a single search for that period may return a truncated list of results capped at the maximum returned by CloudWatch (default: 1000, up to 10000 with limit).
It would be great to at least specify a flag that would split the query up into time chunks that could allow combination of all results in the full period.
Occasionally you need to write a query and get all the results across a long time span (say a month). Performing a single search for that period may return a truncated list of results capped at the maximum returned by CloudWatch (default: 1000, up to 10000 with
limit
).It would be great to at least specify a flag that would split the query up into time chunks that could allow combination of all results in the full period.
So a command like:
cwq --log-group MyLogGroup --start 1y --interval 1d '....'
Would search a log group for an entire year, but in successive (or potentially parallel) one day chunks, combining all the results at the end.
The text was updated successfully, but these errors were encountered: