├── .github └── workflows │ └── semgrep.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── package.json ├── run ├── do-worker │ ├── .gitignore │ ├── .prettierrc │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE_APACHE │ ├── LICENSE_MIT │ ├── README.md │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── counter.mjs │ │ └── index.mjs │ ├── wrangler.toml │ └── yarn.lock ├── module-worker │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ └── index.mjs │ ├── wrangler.toml │ └── yarn.lock └── worker │ ├── .gitignore │ ├── package.json │ ├── src │ └── index.js │ ├── webpack.config.js │ ├── wrangler.toml │ └── yarn.lock ├── src ├── classic.ts ├── config.ts ├── index.ts ├── logging.ts ├── modules.ts ├── promises.ts └── tracecontext.ts ├── tsconfig.json └── yarn.lock /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/.github/workflows/semgrep.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | run -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/package.json -------------------------------------------------------------------------------- /run/do-worker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/do-worker/.gitignore -------------------------------------------------------------------------------- /run/do-worker/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/do-worker/.prettierrc -------------------------------------------------------------------------------- /run/do-worker/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/do-worker/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /run/do-worker/LICENSE_APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/do-worker/LICENSE_APACHE -------------------------------------------------------------------------------- /run/do-worker/LICENSE_MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/do-worker/LICENSE_MIT -------------------------------------------------------------------------------- /run/do-worker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/do-worker/README.md -------------------------------------------------------------------------------- /run/do-worker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/do-worker/package.json -------------------------------------------------------------------------------- /run/do-worker/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/do-worker/rollup.config.js -------------------------------------------------------------------------------- /run/do-worker/src/counter.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/do-worker/src/counter.mjs -------------------------------------------------------------------------------- /run/do-worker/src/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/do-worker/src/index.mjs -------------------------------------------------------------------------------- /run/do-worker/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/do-worker/wrangler.toml -------------------------------------------------------------------------------- /run/do-worker/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/do-worker/yarn.lock -------------------------------------------------------------------------------- /run/module-worker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/module-worker/package.json -------------------------------------------------------------------------------- /run/module-worker/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/module-worker/rollup.config.js -------------------------------------------------------------------------------- /run/module-worker/src/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/module-worker/src/index.mjs -------------------------------------------------------------------------------- /run/module-worker/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/module-worker/wrangler.toml -------------------------------------------------------------------------------- /run/module-worker/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/module-worker/yarn.lock -------------------------------------------------------------------------------- /run/worker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/worker/.gitignore -------------------------------------------------------------------------------- /run/worker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/worker/package.json -------------------------------------------------------------------------------- /run/worker/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/worker/src/index.js -------------------------------------------------------------------------------- /run/worker/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/worker/webpack.config.js -------------------------------------------------------------------------------- /run/worker/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/worker/wrangler.toml -------------------------------------------------------------------------------- /run/worker/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/run/worker/yarn.lock -------------------------------------------------------------------------------- /src/classic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/src/classic.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/src/logging.ts -------------------------------------------------------------------------------- /src/modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/src/modules.ts -------------------------------------------------------------------------------- /src/promises.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/src/promises.ts -------------------------------------------------------------------------------- /src/tracecontext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/src/tracecontext.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/workers-honeycomb-logger/HEAD/yarn.lock --------------------------------------------------------------------------------