├── .changeset ├── README.md ├── big-news-lick.md ├── brave-dots-develop.md ├── brown-cobras-whisper.md ├── calm-tips-laugh.md ├── clean-ducks-juggle.md ├── config.json ├── cool-buttons-melt.md ├── cuddly-cars-give.md ├── curly-sloths-love.md ├── dirty-buses-wash.md ├── early-mugs-shave.md ├── early-yaks-sparkle.md ├── eight-crabs-applaud.md ├── fifty-wolves-think.md ├── flat-schools-repair.md ├── fluffy-carrots-talk.md ├── fluffy-wasps-laugh.md ├── four-students-divide.md ├── fresh-bees-talk.md ├── gold-beers-travel.md ├── healthy-dolphins-yawn.md ├── heavy-carrots-care.md ├── hot-dodos-burn.md ├── huge-phones-work.md ├── kind-ladybugs-swim.md ├── little-goats-occur.md ├── lovely-pets-impress.md ├── lucky-apples-clean.md ├── mighty-timers-float.md ├── nervous-kids-guess.md ├── nervous-poets-matter.md ├── new-coins-run.md ├── new-gifts-repair.md ├── new-horses-burn.md ├── new-lions-collect.md ├── plenty-snakes-matter.md ├── polite-days-rush.md ├── polite-dots-scream.md ├── polite-schools-sip.md ├── poor-lobsters-rest.md ├── pre.json ├── pretty-cameras-grin.md ├── pretty-coins-promise.md ├── proud-bugs-teach.md ├── proud-pots-tap.md ├── rotten-radios-hope.md ├── rude-bottles-jog.md ├── shaky-lizards-help.md ├── silent-flies-sell.md ├── slimy-groups-tap.md ├── smart-candies-grab.md ├── smooth-vans-know.md ├── spotty-women-sleep.md ├── strange-moose-fetch.md ├── strong-monkeys-film.md ├── tasty-ghosts-tickle.md ├── ten-trainers-admire.md ├── thirty-terms-invent.md ├── thirty-ties-float.md ├── tiny-buckets-behave.md ├── two-oranges-peel.md ├── violet-bananas-attend.md ├── yellow-lamps-sin.md └── yellow-wombats-rhyme.md ├── .editorconfig ├── .gitattributes ├── .github ├── pull_request_template.md └── workflows │ ├── main.yml │ ├── pullrequests.yml │ └── release.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .npmignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── examples ├── new_style-do │ ├── .editorconfig │ ├── .gitignore │ ├── .prettierrc │ ├── .vscode │ │ └── settings.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── handler.ts │ │ └── index.ts │ ├── tsconfig.json │ ├── worker-configuration.d.ts │ └── wrangler.jsonc ├── queue │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── wrangler.toml ├── quickstart │ ├── .dev.vars.sample │ ├── .gitignore │ ├── QUICKSTART_GUIDE.md │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── wrangler.toml └── worker │ ├── .dev.vars.sample │ ├── .gitignore │ ├── package.json │ ├── pnpm-lock.yaml │ ├── pnpm-workspace.yaml │ ├── src │ ├── handler.ts │ └── index.ts │ ├── tsconfig.json │ └── wrangler.toml ├── package.json ├── pnpm-lock.yaml ├── src ├── buffer.ts ├── config.ts ├── context.ts ├── exporter.ts ├── index.ts ├── instrumentation │ ├── analytics-engine.ts │ ├── cache.ts │ ├── common.ts │ ├── d1.ts │ ├── do-storage.ts │ ├── do.ts │ ├── email.ts │ ├── env.ts │ ├── fetch.ts │ ├── kv.ts │ ├── queue.ts │ ├── scheduled.ts │ ├── service.ts │ └── version.ts ├── multiexporter.ts ├── provider.ts ├── sampling.ts ├── sdk.ts ├── span.ts ├── spanprocessor.ts ├── tracer.ts ├── types.ts └── wrap.ts ├── test ├── import.test.ts ├── instrumentation │ └── do-storage.test.ts └── wrap.test.ts ├── tsconfig.json ├── tsup.config.ts └── vitest.config.js /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/big-news-lick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/big-news-lick.md -------------------------------------------------------------------------------- /.changeset/brave-dots-develop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/brave-dots-develop.md -------------------------------------------------------------------------------- /.changeset/brown-cobras-whisper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/brown-cobras-whisper.md -------------------------------------------------------------------------------- /.changeset/calm-tips-laugh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/calm-tips-laugh.md -------------------------------------------------------------------------------- /.changeset/clean-ducks-juggle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/clean-ducks-juggle.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.changeset/cool-buttons-melt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/cool-buttons-melt.md -------------------------------------------------------------------------------- /.changeset/cuddly-cars-give.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/cuddly-cars-give.md -------------------------------------------------------------------------------- /.changeset/curly-sloths-love.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/curly-sloths-love.md -------------------------------------------------------------------------------- /.changeset/dirty-buses-wash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/dirty-buses-wash.md -------------------------------------------------------------------------------- /.changeset/early-mugs-shave.md: -------------------------------------------------------------------------------- 1 | --- 2 | '@microlabs/otel-cf-workers': minor 3 | --- 4 | 5 | Remove CommonJS support 6 | -------------------------------------------------------------------------------- /.changeset/early-yaks-sparkle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/early-yaks-sparkle.md -------------------------------------------------------------------------------- /.changeset/eight-crabs-applaud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/eight-crabs-applaud.md -------------------------------------------------------------------------------- /.changeset/fifty-wolves-think.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/fifty-wolves-think.md -------------------------------------------------------------------------------- /.changeset/flat-schools-repair.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/flat-schools-repair.md -------------------------------------------------------------------------------- /.changeset/fluffy-carrots-talk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/fluffy-carrots-talk.md -------------------------------------------------------------------------------- /.changeset/fluffy-wasps-laugh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/fluffy-wasps-laugh.md -------------------------------------------------------------------------------- /.changeset/four-students-divide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/four-students-divide.md -------------------------------------------------------------------------------- /.changeset/fresh-bees-talk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/fresh-bees-talk.md -------------------------------------------------------------------------------- /.changeset/gold-beers-travel.md: -------------------------------------------------------------------------------- 1 | --- 2 | '@microlabs/otel-cf-workers': patch 3 | --- 4 | 5 | Fix importing issues. Fixes #162 6 | -------------------------------------------------------------------------------- /.changeset/healthy-dolphins-yawn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/healthy-dolphins-yawn.md -------------------------------------------------------------------------------- /.changeset/heavy-carrots-care.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/heavy-carrots-care.md -------------------------------------------------------------------------------- /.changeset/hot-dodos-burn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/hot-dodos-burn.md -------------------------------------------------------------------------------- /.changeset/huge-phones-work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/huge-phones-work.md -------------------------------------------------------------------------------- /.changeset/kind-ladybugs-swim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/kind-ladybugs-swim.md -------------------------------------------------------------------------------- /.changeset/little-goats-occur.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/little-goats-occur.md -------------------------------------------------------------------------------- /.changeset/lovely-pets-impress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/lovely-pets-impress.md -------------------------------------------------------------------------------- /.changeset/lucky-apples-clean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/lucky-apples-clean.md -------------------------------------------------------------------------------- /.changeset/mighty-timers-float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/mighty-timers-float.md -------------------------------------------------------------------------------- /.changeset/nervous-kids-guess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/nervous-kids-guess.md -------------------------------------------------------------------------------- /.changeset/nervous-poets-matter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/nervous-poets-matter.md -------------------------------------------------------------------------------- /.changeset/new-coins-run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/new-coins-run.md -------------------------------------------------------------------------------- /.changeset/new-gifts-repair.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/new-gifts-repair.md -------------------------------------------------------------------------------- /.changeset/new-horses-burn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/new-horses-burn.md -------------------------------------------------------------------------------- /.changeset/new-lions-collect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/new-lions-collect.md -------------------------------------------------------------------------------- /.changeset/plenty-snakes-matter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/plenty-snakes-matter.md -------------------------------------------------------------------------------- /.changeset/polite-days-rush.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/polite-days-rush.md -------------------------------------------------------------------------------- /.changeset/polite-dots-scream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/polite-dots-scream.md -------------------------------------------------------------------------------- /.changeset/polite-schools-sip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/polite-schools-sip.md -------------------------------------------------------------------------------- /.changeset/poor-lobsters-rest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/poor-lobsters-rest.md -------------------------------------------------------------------------------- /.changeset/pre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/pre.json -------------------------------------------------------------------------------- /.changeset/pretty-cameras-grin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/pretty-cameras-grin.md -------------------------------------------------------------------------------- /.changeset/pretty-coins-promise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/pretty-coins-promise.md -------------------------------------------------------------------------------- /.changeset/proud-bugs-teach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/proud-bugs-teach.md -------------------------------------------------------------------------------- /.changeset/proud-pots-tap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/proud-pots-tap.md -------------------------------------------------------------------------------- /.changeset/rotten-radios-hope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/rotten-radios-hope.md -------------------------------------------------------------------------------- /.changeset/rude-bottles-jog.md: -------------------------------------------------------------------------------- 1 | --- 2 | "@microlabs/otel-cf-workers": patch 3 | --- 4 | 5 | Make ResolveConfigFn generic 6 | -------------------------------------------------------------------------------- /.changeset/shaky-lizards-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/shaky-lizards-help.md -------------------------------------------------------------------------------- /.changeset/silent-flies-sell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/silent-flies-sell.md -------------------------------------------------------------------------------- /.changeset/slimy-groups-tap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/slimy-groups-tap.md -------------------------------------------------------------------------------- /.changeset/smart-candies-grab.md: -------------------------------------------------------------------------------- 1 | --- 2 | '@microlabs/otel-cf-workers': patch 3 | --- 4 | 5 | Upgrade dependencies 6 | -------------------------------------------------------------------------------- /.changeset/smooth-vans-know.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/smooth-vans-know.md -------------------------------------------------------------------------------- /.changeset/spotty-women-sleep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/spotty-women-sleep.md -------------------------------------------------------------------------------- /.changeset/strange-moose-fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/strange-moose-fetch.md -------------------------------------------------------------------------------- /.changeset/strong-monkeys-film.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/strong-monkeys-film.md -------------------------------------------------------------------------------- /.changeset/tasty-ghosts-tickle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/tasty-ghosts-tickle.md -------------------------------------------------------------------------------- /.changeset/ten-trainers-admire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/ten-trainers-admire.md -------------------------------------------------------------------------------- /.changeset/thirty-terms-invent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/thirty-terms-invent.md -------------------------------------------------------------------------------- /.changeset/thirty-ties-float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/thirty-ties-float.md -------------------------------------------------------------------------------- /.changeset/tiny-buckets-behave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/tiny-buckets-behave.md -------------------------------------------------------------------------------- /.changeset/two-oranges-peel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/two-oranges-peel.md -------------------------------------------------------------------------------- /.changeset/violet-bananas-attend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/violet-bananas-attend.md -------------------------------------------------------------------------------- /.changeset/yellow-lamps-sin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/yellow-lamps-sin.md -------------------------------------------------------------------------------- /.changeset/yellow-wombats-rhyme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.changeset/yellow-wombats-rhyme.md -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | Fixes # [insert GH issue number(s)]. 2 | 3 | **What this PR solves / how to test:** 4 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pullrequests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.github/workflows/pullrequests.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/README.md -------------------------------------------------------------------------------- /examples/new_style-do/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/new_style-do/.editorconfig -------------------------------------------------------------------------------- /examples/new_style-do/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/new_style-do/.gitignore -------------------------------------------------------------------------------- /examples/new_style-do/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/new_style-do/.prettierrc -------------------------------------------------------------------------------- /examples/new_style-do/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/new_style-do/.vscode/settings.json -------------------------------------------------------------------------------- /examples/new_style-do/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/new_style-do/package-lock.json -------------------------------------------------------------------------------- /examples/new_style-do/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/new_style-do/package.json -------------------------------------------------------------------------------- /examples/new_style-do/src/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/new_style-do/src/handler.ts -------------------------------------------------------------------------------- /examples/new_style-do/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/new_style-do/src/index.ts -------------------------------------------------------------------------------- /examples/new_style-do/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/new_style-do/tsconfig.json -------------------------------------------------------------------------------- /examples/new_style-do/worker-configuration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/new_style-do/worker-configuration.d.ts -------------------------------------------------------------------------------- /examples/new_style-do/wrangler.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/new_style-do/wrangler.jsonc -------------------------------------------------------------------------------- /examples/queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/queue/README.md -------------------------------------------------------------------------------- /examples/queue/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/queue/package-lock.json -------------------------------------------------------------------------------- /examples/queue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/queue/package.json -------------------------------------------------------------------------------- /examples/queue/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/queue/src/index.ts -------------------------------------------------------------------------------- /examples/queue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/queue/tsconfig.json -------------------------------------------------------------------------------- /examples/queue/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/queue/wrangler.toml -------------------------------------------------------------------------------- /examples/quickstart/.dev.vars.sample: -------------------------------------------------------------------------------- 1 | HONEYCOMB_API_KEY= 2 | -------------------------------------------------------------------------------- /examples/quickstart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/quickstart/.gitignore -------------------------------------------------------------------------------- /examples/quickstart/QUICKSTART_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/quickstart/QUICKSTART_GUIDE.md -------------------------------------------------------------------------------- /examples/quickstart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/quickstart/package.json -------------------------------------------------------------------------------- /examples/quickstart/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/quickstart/src/index.ts -------------------------------------------------------------------------------- /examples/quickstart/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/quickstart/tsconfig.json -------------------------------------------------------------------------------- /examples/quickstart/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/quickstart/wrangler.toml -------------------------------------------------------------------------------- /examples/worker/.dev.vars.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/worker/.dev.vars.sample -------------------------------------------------------------------------------- /examples/worker/.gitignore: -------------------------------------------------------------------------------- 1 | .wrangler 2 | -------------------------------------------------------------------------------- /examples/worker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/worker/package.json -------------------------------------------------------------------------------- /examples/worker/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/worker/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/worker/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/worker/pnpm-workspace.yaml -------------------------------------------------------------------------------- /examples/worker/src/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/worker/src/handler.ts -------------------------------------------------------------------------------- /examples/worker/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/worker/src/index.ts -------------------------------------------------------------------------------- /examples/worker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/worker/tsconfig.json -------------------------------------------------------------------------------- /examples/worker/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/examples/worker/wrangler.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/buffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/buffer.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/context.ts -------------------------------------------------------------------------------- /src/exporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/exporter.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/instrumentation/analytics-engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/instrumentation/analytics-engine.ts -------------------------------------------------------------------------------- /src/instrumentation/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/instrumentation/cache.ts -------------------------------------------------------------------------------- /src/instrumentation/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/instrumentation/common.ts -------------------------------------------------------------------------------- /src/instrumentation/d1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/instrumentation/d1.ts -------------------------------------------------------------------------------- /src/instrumentation/do-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/instrumentation/do-storage.ts -------------------------------------------------------------------------------- /src/instrumentation/do.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/instrumentation/do.ts -------------------------------------------------------------------------------- /src/instrumentation/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/instrumentation/email.ts -------------------------------------------------------------------------------- /src/instrumentation/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/instrumentation/env.ts -------------------------------------------------------------------------------- /src/instrumentation/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/instrumentation/fetch.ts -------------------------------------------------------------------------------- /src/instrumentation/kv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/instrumentation/kv.ts -------------------------------------------------------------------------------- /src/instrumentation/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/instrumentation/queue.ts -------------------------------------------------------------------------------- /src/instrumentation/scheduled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/instrumentation/scheduled.ts -------------------------------------------------------------------------------- /src/instrumentation/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/instrumentation/service.ts -------------------------------------------------------------------------------- /src/instrumentation/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/instrumentation/version.ts -------------------------------------------------------------------------------- /src/multiexporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/multiexporter.ts -------------------------------------------------------------------------------- /src/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/provider.ts -------------------------------------------------------------------------------- /src/sampling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/sampling.ts -------------------------------------------------------------------------------- /src/sdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/sdk.ts -------------------------------------------------------------------------------- /src/span.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/span.ts -------------------------------------------------------------------------------- /src/spanprocessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/spanprocessor.ts -------------------------------------------------------------------------------- /src/tracer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/tracer.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/wrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/src/wrap.ts -------------------------------------------------------------------------------- /test/import.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/test/import.test.ts -------------------------------------------------------------------------------- /test/instrumentation/do-storage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/test/instrumentation/do-storage.test.ts -------------------------------------------------------------------------------- /test/wrap.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/test/wrap.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/tsup.config.ts -------------------------------------------------------------------------------- /vitest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanderkoogh/otel-cf-workers/HEAD/vitest.config.js --------------------------------------------------------------------------------