Skip to content
Advertisement

Tag: amazon-cloudwatch

AWS lambda expected intended block error in Python

I am following the below document to connect to Cloudwatch logs to ELK. https://medium.com/@sohit_kumar/streaming-aws-cloudwatch-logs-to-your-own-elk-logging-solution-2bbd32f25100 I get a “expected an indented block” syntax error in python for this line. try: logs = awslogs_handler(s, event) Can someone help me figure this out? Not sure what im missing. Thanks! Answer You need to use something like this: An indent block(contains four whitespaces) are

Advertisement