├── .gitignore ├── LICENSE ├── README.md ├── lambda_function.py └── test ├── lambda_function_test.py └── resources ├── awslogs-event.json └── s3-put-event.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logmatic/logmatic-lambda/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logmatic/logmatic-lambda/HEAD/README.md -------------------------------------------------------------------------------- /lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logmatic/logmatic-lambda/HEAD/lambda_function.py -------------------------------------------------------------------------------- /test/lambda_function_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logmatic/logmatic-lambda/HEAD/test/lambda_function_test.py -------------------------------------------------------------------------------- /test/resources/awslogs-event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logmatic/logmatic-lambda/HEAD/test/resources/awslogs-event.json -------------------------------------------------------------------------------- /test/resources/s3-put-event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logmatic/logmatic-lambda/HEAD/test/resources/s3-put-event.json --------------------------------------------------------------------------------