I’ve created a cloudwatch connector to query cloudwatch log group.
in the official doc mentions that there is an special view called “all_log_streams” which allows you to query through all the logs stream but the result of the query is a “table not found”
SELECT *
FROM "lambda:athena_cloudwatch_connector"."/aws-glue/jobs/error"."all_log_streams"
LIMIT 1
I certainly know that connector works because I tried to execute a query referencing the log stream and in deed I receive some logs in the query results
Is this “special view” created by itself or I missed to create it?
For reference: I’ve followed steps in official AWS docs related to use a cloudwatch connector which is on this url: https://docs.aws.amazon.com/athena/latest/ug/connectors-cloudwatch.html