Hey, I just followed this guide to setup logging for my aws lambda functions: https://baselime.io/do

Hey,
I just followed this guide to setup logging for my aws lambda functions: https://baselime.io/docs/sending-data/platforms/aws/aws-lambda/logs/
And it doesnt seem to work, nothing comes threw in baselime.
Lambda Code:
import type { APIGatewayProxyHandlerV2 } from "aws-lambda";

export const handler: APIGatewayProxyHandlerV2 = async (event) => {
  console.log("Hello World");

  return {
    statusCode: 200,
    body: "Hello World",
  };
};


Added the lambda layers as seen in the image and also my baselime api key.
The only thing I can see in baselime is the baselime logs subscriber tho
image.png
Once you connect your AWS account to Baselime, it automatically creates CloudWatch Logs subscription filters
Was this page helpful?