├── .editorconfig ├── .github ├── copilot-instructions.md └── workflows │ ├── documentation-coverage.yaml │ ├── documentation.yaml │ ├── rubocop.yaml │ ├── test-coverage.yaml │ ├── test-external.yaml │ └── test.yaml ├── .gitignore ├── .rubocop.yml ├── bake.rb ├── bake └── traces │ ├── capture.rb │ └── provider.rb ├── benchmark └── rebind_vs_prepend.rb ├── config ├── external.yaml └── sus.rb ├── context ├── capture.md ├── context-propagation.md ├── getting-started.md ├── index.yaml └── testing.md ├── gems.rb ├── guides ├── capture │ └── readme.md ├── context-propagation │ └── readme.md ├── getting-started │ └── readme.md ├── links.yaml └── testing │ └── readme.md ├── lib ├── traces.rb └── traces │ ├── backend.rb │ ├── backend │ ├── capture.rb │ ├── console.rb │ └── test.rb │ ├── config.rb │ ├── context.rb │ ├── provider.rb │ └── version.rb ├── license.md ├── readme.md ├── release.cert ├── releases.md ├── test ├── traces.rb └── traces │ ├── backend │ ├── .capture │ │ ├── app.rb │ │ └── bake.rb │ └── capture.rb │ ├── config.rb │ ├── context.rb │ └── provider.rb └── traces.gemspec /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/documentation-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/.github/workflows/documentation-coverage.yaml -------------------------------------------------------------------------------- /.github/workflows/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/.github/workflows/documentation.yaml -------------------------------------------------------------------------------- /.github/workflows/rubocop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/.github/workflows/rubocop.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.github/workflows/test-external.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/.github/workflows/test-external.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /bake.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/bake.rb -------------------------------------------------------------------------------- /bake/traces/capture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/bake/traces/capture.rb -------------------------------------------------------------------------------- /bake/traces/provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/bake/traces/provider.rb -------------------------------------------------------------------------------- /benchmark/rebind_vs_prepend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/benchmark/rebind_vs_prepend.rb -------------------------------------------------------------------------------- /config/external.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/config/external.yaml -------------------------------------------------------------------------------- /config/sus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/config/sus.rb -------------------------------------------------------------------------------- /context/capture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/context/capture.md -------------------------------------------------------------------------------- /context/context-propagation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/context/context-propagation.md -------------------------------------------------------------------------------- /context/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/context/getting-started.md -------------------------------------------------------------------------------- /context/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/context/index.yaml -------------------------------------------------------------------------------- /context/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/context/testing.md -------------------------------------------------------------------------------- /gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/gems.rb -------------------------------------------------------------------------------- /guides/capture/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/guides/capture/readme.md -------------------------------------------------------------------------------- /guides/context-propagation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/guides/context-propagation/readme.md -------------------------------------------------------------------------------- /guides/getting-started/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/guides/getting-started/readme.md -------------------------------------------------------------------------------- /guides/links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/guides/links.yaml -------------------------------------------------------------------------------- /guides/testing/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/guides/testing/readme.md -------------------------------------------------------------------------------- /lib/traces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/lib/traces.rb -------------------------------------------------------------------------------- /lib/traces/backend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/lib/traces/backend.rb -------------------------------------------------------------------------------- /lib/traces/backend/capture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/lib/traces/backend/capture.rb -------------------------------------------------------------------------------- /lib/traces/backend/console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/lib/traces/backend/console.rb -------------------------------------------------------------------------------- /lib/traces/backend/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/lib/traces/backend/test.rb -------------------------------------------------------------------------------- /lib/traces/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/lib/traces/config.rb -------------------------------------------------------------------------------- /lib/traces/context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/lib/traces/context.rb -------------------------------------------------------------------------------- /lib/traces/provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/lib/traces/provider.rb -------------------------------------------------------------------------------- /lib/traces/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/lib/traces/version.rb -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/license.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/readme.md -------------------------------------------------------------------------------- /release.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/release.cert -------------------------------------------------------------------------------- /releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/releases.md -------------------------------------------------------------------------------- /test/traces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/test/traces.rb -------------------------------------------------------------------------------- /test/traces/backend/.capture/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/test/traces/backend/.capture/app.rb -------------------------------------------------------------------------------- /test/traces/backend/.capture/bake.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/test/traces/backend/.capture/bake.rb -------------------------------------------------------------------------------- /test/traces/backend/capture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/test/traces/backend/capture.rb -------------------------------------------------------------------------------- /test/traces/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/test/traces/config.rb -------------------------------------------------------------------------------- /test/traces/context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/test/traces/context.rb -------------------------------------------------------------------------------- /test/traces/provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/test/traces/provider.rb -------------------------------------------------------------------------------- /traces.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/traces/HEAD/traces.gemspec --------------------------------------------------------------------------------