├── .circleci └── config.yml ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .nvmrc ├── LICENSE ├── README.md ├── commitlint.config.js ├── integration-test ├── nodejs-esbuild │ ├── .gitignore │ ├── handler.js │ ├── package.json │ └── serverless.yml ├── nodejs-esm │ ├── .gitignore │ ├── handler.js │ ├── package.json │ └── serverless.yml ├── nodejs-layers │ ├── .gitignore │ ├── handler.js │ ├── package.json │ └── serverless.yml ├── nodejs-pnpm │ ├── .gitignore │ ├── handler.js │ ├── package.json │ └── serverless.yml ├── nodejs │ ├── .gitignore │ ├── handler.js │ ├── package.json │ └── serverless.yml ├── python-layers │ ├── .gitignore │ ├── handler.py │ ├── package.json │ ├── requirements.txt │ └── serverless.yml └── python │ ├── .gitignore │ ├── 01_handler_with_numbers.py │ ├── handler.py │ ├── package.json │ ├── requirements.txt │ └── serverless.yml ├── jest.config.js ├── jsconfig.json ├── package.json ├── scripts └── checks.sh └── src ├── index.js └── index.test.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | docs -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16.19.1 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ["@commitlint/config-conventional"] }; 2 | -------------------------------------------------------------------------------- /integration-test/nodejs-esbuild/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/nodejs-esbuild/.gitignore -------------------------------------------------------------------------------- /integration-test/nodejs-esbuild/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/nodejs-esbuild/handler.js -------------------------------------------------------------------------------- /integration-test/nodejs-esbuild/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/nodejs-esbuild/package.json -------------------------------------------------------------------------------- /integration-test/nodejs-esbuild/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/nodejs-esbuild/serverless.yml -------------------------------------------------------------------------------- /integration-test/nodejs-esm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/nodejs-esm/.gitignore -------------------------------------------------------------------------------- /integration-test/nodejs-esm/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/nodejs-esm/handler.js -------------------------------------------------------------------------------- /integration-test/nodejs-esm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/nodejs-esm/package.json -------------------------------------------------------------------------------- /integration-test/nodejs-esm/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/nodejs-esm/serverless.yml -------------------------------------------------------------------------------- /integration-test/nodejs-layers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/nodejs-layers/.gitignore -------------------------------------------------------------------------------- /integration-test/nodejs-layers/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/nodejs-layers/handler.js -------------------------------------------------------------------------------- /integration-test/nodejs-layers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/nodejs-layers/package.json -------------------------------------------------------------------------------- /integration-test/nodejs-layers/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/nodejs-layers/serverless.yml -------------------------------------------------------------------------------- /integration-test/nodejs-pnpm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/nodejs-pnpm/.gitignore -------------------------------------------------------------------------------- /integration-test/nodejs-pnpm/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/nodejs-pnpm/handler.js -------------------------------------------------------------------------------- /integration-test/nodejs-pnpm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/nodejs-pnpm/package.json -------------------------------------------------------------------------------- /integration-test/nodejs-pnpm/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/nodejs-pnpm/serverless.yml -------------------------------------------------------------------------------- /integration-test/nodejs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/nodejs/.gitignore -------------------------------------------------------------------------------- /integration-test/nodejs/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/nodejs/handler.js -------------------------------------------------------------------------------- /integration-test/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/nodejs/package.json -------------------------------------------------------------------------------- /integration-test/nodejs/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/nodejs/serverless.yml -------------------------------------------------------------------------------- /integration-test/python-layers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/python-layers/.gitignore -------------------------------------------------------------------------------- /integration-test/python-layers/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/python-layers/handler.py -------------------------------------------------------------------------------- /integration-test/python-layers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/python-layers/package.json -------------------------------------------------------------------------------- /integration-test/python-layers/requirements.txt: -------------------------------------------------------------------------------- 1 | lumigo_tracer 2 | -------------------------------------------------------------------------------- /integration-test/python-layers/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/python-layers/serverless.yml -------------------------------------------------------------------------------- /integration-test/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/python/.gitignore -------------------------------------------------------------------------------- /integration-test/python/01_handler_with_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/python/01_handler_with_numbers.py -------------------------------------------------------------------------------- /integration-test/python/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/python/handler.py -------------------------------------------------------------------------------- /integration-test/python/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/python/package.json -------------------------------------------------------------------------------- /integration-test/python/requirements.txt: -------------------------------------------------------------------------------- 1 | lumigo_tracer 2 | -------------------------------------------------------------------------------- /integration-test/python/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/integration-test/python/serverless.yml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/jest.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { "typeAcquisition": { "include": [ "jest" ] } } 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/package.json -------------------------------------------------------------------------------- /scripts/checks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/scripts/checks.sh -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumigo-io/serverless-lumigo-plugin/HEAD/src/index.test.js --------------------------------------------------------------------------------