Is there anyway to filter the log streams with patterns using the CloudWatch console?
For example, I have the following log streams in a log group - Log Group:
'/var/prod/logs'.
Log Streams:
/prod/[node_instance_id]/nginx_access
/prod/[node_instance_id]/nginx_error
I have a multi-node environment with auto scaling etc. So the log streams can be quite messy - here is an example of what I see in the log streams.
/prod/1a2b3c4d5e/nginx_access
/prod/1a2b3c4d5e/nginx_error
/prod/1b2b3c4d5e/nginx_access
/prod/1b2b3c4d5e/nginx_error
/prod/1c2b3c4d5e/nginx_access
/prod/1c2b3c4d5e/nginx_error
I am trying to filter the log streams to be all 'nginx_access' only. But from the console, it looks like I can only specify the prefix. Is there anyway that I could filter log streams using something like '*nginx_access'?