├── .codecov.yml ├── .config └── nextest.toml ├── .craft.yml ├── .github ├── ISSUE_TEMPLATE │ ├── 01-feature.yml │ ├── 02-improvement.yml │ ├── 03-bug.yml │ ├── 04-blank.yml │ └── config.yml ├── pull_request_template.md └── workflows │ ├── ci.yml │ ├── danger.yml │ ├── release.yml │ └── weekly.yml ├── .gitignore ├── .gitmodules ├── .vscode └── settings.json ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── README.tpl ├── clippy.toml ├── misc └── docs │ └── index.html ├── rustfmt.toml ├── scripts ├── bump-version.sh ├── generate-readme.sh └── update-readme.sh ├── sentry-actix ├── Cargo.toml ├── LICENSE ├── README.md ├── examples │ └── basic.rs └── src │ └── lib.rs ├── sentry-anyhow ├── Cargo.toml ├── LICENSE ├── README.md └── src │ └── lib.rs ├── sentry-backtrace ├── Cargo.toml ├── LICENSE ├── README.md └── src │ ├── integration.rs │ ├── lib.rs │ ├── parse.rs │ ├── process.rs │ ├── trim.rs │ └── utils.rs ├── sentry-contexts ├── Cargo.toml ├── LICENSE ├── README.md ├── build.rs └── src │ ├── integration.rs │ ├── lib.rs │ └── utils.rs ├── sentry-core ├── Cargo.toml ├── LICENSE ├── README.md ├── benches │ └── scope_benchmark.rs └── src │ ├── api.rs │ ├── breadcrumbs.rs │ ├── client.rs │ ├── clientoptions.rs │ ├── constants.rs │ ├── error.rs │ ├── futures.rs │ ├── hub.rs │ ├── hub_impl.rs │ ├── integration.rs │ ├── intodsn.rs │ ├── lib.rs │ ├── logger.rs │ ├── logs.rs │ ├── macros.rs │ ├── performance.rs │ ├── scope │ ├── mod.rs │ ├── noop.rs │ └── real.rs │ ├── session.rs │ ├── test.rs │ ├── transport.rs │ └── utils.rs ├── sentry-debug-images ├── Cargo.toml ├── LICENSE ├── README.md └── src │ ├── images.rs │ ├── integration.rs │ └── lib.rs ├── sentry-log ├── Cargo.toml ├── LICENSE ├── README.md └── src │ ├── converters.rs │ ├── lib.rs │ └── logger.rs ├── sentry-opentelemetry ├── Cargo.toml ├── README.md ├── src │ ├── converters.rs │ ├── lib.rs │ ├── processor.rs │ └── propagator.rs └── tests │ ├── associates_event_with_span.rs │ ├── captures_transaction.rs │ ├── captures_transaction_with_nested_spans.rs │ ├── creates_distributed_trace.rs │ └── shared.rs ├── sentry-panic ├── Cargo.toml ├── LICENSE ├── README.md └── src │ └── lib.rs ├── sentry-slog ├── Cargo.toml ├── LICENSE ├── README.md └── src │ ├── converters.rs │ ├── drain.rs │ └── lib.rs ├── sentry-tower ├── Cargo.toml ├── LICENSE ├── README.md └── src │ ├── helloworld.rs │ ├── http.rs │ └── lib.rs ├── sentry-tracing ├── Cargo.toml ├── LICENSE ├── README.md ├── src │ ├── converters.rs │ ├── layer.rs │ └── lib.rs └── tests │ ├── README.md │ ├── breadcrumbs.rs │ ├── name_op_updates.rs │ ├── shared.rs │ └── smoke.rs ├── sentry-types ├── Cargo.toml ├── LICENSE ├── README.md ├── src │ ├── auth.rs │ ├── crontab_validator.rs │ ├── dsn.rs │ ├── lib.rs │ ├── macros.rs │ ├── project_id.rs │ ├── protocol │ │ ├── attachment.rs │ │ ├── envelope.rs │ │ ├── mod.rs │ │ ├── monitor.rs │ │ ├── session.rs │ │ └── v7.rs │ └── utils.rs └── tests │ ├── test_auth.rs │ └── test_protocol_v7.rs └── sentry ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── anyhow-demo.rs ├── before-send.rs ├── event-processors.rs ├── health.rs ├── log-demo.rs ├── message-demo.rs ├── panic-demo.rs ├── performance-demo.rs ├── send-with-extra.rs ├── thread-demo.rs └── tracing-demo.rs ├── src ├── defaults.rs ├── init.rs ├── lib.rs └── transports │ ├── curl.rs │ ├── embedded_svc_http.rs │ ├── mod.rs │ ├── ratelimit.rs │ ├── reqwest.rs │ ├── thread.rs │ ├── tokio_thread.rs │ └── ureq.rs └── tests ├── test_async.rs ├── test_basic.rs ├── test_client.rs ├── test_log.rs ├── test_log_combined_filters.rs ├── test_log_logs.rs ├── test_processors.rs ├── test_tower.rs └── test_tracing.rs /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.config/nextest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/.config/nextest.toml -------------------------------------------------------------------------------- /.craft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/.craft.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01-feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/.github/ISSUE_TEMPLATE/01-feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02-improvement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/.github/ISSUE_TEMPLATE/02-improvement.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03-bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/.github/ISSUE_TEMPLATE/03-bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04-blank.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/.github/ISSUE_TEMPLATE/04-blank.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/danger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/.github/workflows/danger.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/weekly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/.github/workflows/weekly.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | venv 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/README.md -------------------------------------------------------------------------------- /README.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/README.tpl -------------------------------------------------------------------------------- /clippy.toml: -------------------------------------------------------------------------------- 1 | msrv = "1.81.0" 2 | -------------------------------------------------------------------------------- /misc/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/misc/docs/index.html -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /scripts/bump-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/scripts/bump-version.sh -------------------------------------------------------------------------------- /scripts/generate-readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/scripts/generate-readme.sh -------------------------------------------------------------------------------- /scripts/update-readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/scripts/update-readme.sh -------------------------------------------------------------------------------- /sentry-actix/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-actix/Cargo.toml -------------------------------------------------------------------------------- /sentry-actix/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-actix/LICENSE -------------------------------------------------------------------------------- /sentry-actix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-actix/README.md -------------------------------------------------------------------------------- /sentry-actix/examples/basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-actix/examples/basic.rs -------------------------------------------------------------------------------- /sentry-actix/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-actix/src/lib.rs -------------------------------------------------------------------------------- /sentry-anyhow/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-anyhow/Cargo.toml -------------------------------------------------------------------------------- /sentry-anyhow/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-anyhow/LICENSE -------------------------------------------------------------------------------- /sentry-anyhow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-anyhow/README.md -------------------------------------------------------------------------------- /sentry-anyhow/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-anyhow/src/lib.rs -------------------------------------------------------------------------------- /sentry-backtrace/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-backtrace/Cargo.toml -------------------------------------------------------------------------------- /sentry-backtrace/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-backtrace/LICENSE -------------------------------------------------------------------------------- /sentry-backtrace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-backtrace/README.md -------------------------------------------------------------------------------- /sentry-backtrace/src/integration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-backtrace/src/integration.rs -------------------------------------------------------------------------------- /sentry-backtrace/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-backtrace/src/lib.rs -------------------------------------------------------------------------------- /sentry-backtrace/src/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-backtrace/src/parse.rs -------------------------------------------------------------------------------- /sentry-backtrace/src/process.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-backtrace/src/process.rs -------------------------------------------------------------------------------- /sentry-backtrace/src/trim.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-backtrace/src/trim.rs -------------------------------------------------------------------------------- /sentry-backtrace/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-backtrace/src/utils.rs -------------------------------------------------------------------------------- /sentry-contexts/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-contexts/Cargo.toml -------------------------------------------------------------------------------- /sentry-contexts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-contexts/LICENSE -------------------------------------------------------------------------------- /sentry-contexts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-contexts/README.md -------------------------------------------------------------------------------- /sentry-contexts/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-contexts/build.rs -------------------------------------------------------------------------------- /sentry-contexts/src/integration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-contexts/src/integration.rs -------------------------------------------------------------------------------- /sentry-contexts/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-contexts/src/lib.rs -------------------------------------------------------------------------------- /sentry-contexts/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-contexts/src/utils.rs -------------------------------------------------------------------------------- /sentry-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/Cargo.toml -------------------------------------------------------------------------------- /sentry-core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/LICENSE -------------------------------------------------------------------------------- /sentry-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/README.md -------------------------------------------------------------------------------- /sentry-core/benches/scope_benchmark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/benches/scope_benchmark.rs -------------------------------------------------------------------------------- /sentry-core/src/api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/api.rs -------------------------------------------------------------------------------- /sentry-core/src/breadcrumbs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/breadcrumbs.rs -------------------------------------------------------------------------------- /sentry-core/src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/client.rs -------------------------------------------------------------------------------- /sentry-core/src/clientoptions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/clientoptions.rs -------------------------------------------------------------------------------- /sentry-core/src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/constants.rs -------------------------------------------------------------------------------- /sentry-core/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/error.rs -------------------------------------------------------------------------------- /sentry-core/src/futures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/futures.rs -------------------------------------------------------------------------------- /sentry-core/src/hub.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/hub.rs -------------------------------------------------------------------------------- /sentry-core/src/hub_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/hub_impl.rs -------------------------------------------------------------------------------- /sentry-core/src/integration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/integration.rs -------------------------------------------------------------------------------- /sentry-core/src/intodsn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/intodsn.rs -------------------------------------------------------------------------------- /sentry-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/lib.rs -------------------------------------------------------------------------------- /sentry-core/src/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/logger.rs -------------------------------------------------------------------------------- /sentry-core/src/logs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/logs.rs -------------------------------------------------------------------------------- /sentry-core/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/macros.rs -------------------------------------------------------------------------------- /sentry-core/src/performance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/performance.rs -------------------------------------------------------------------------------- /sentry-core/src/scope/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/scope/mod.rs -------------------------------------------------------------------------------- /sentry-core/src/scope/noop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/scope/noop.rs -------------------------------------------------------------------------------- /sentry-core/src/scope/real.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/scope/real.rs -------------------------------------------------------------------------------- /sentry-core/src/session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/session.rs -------------------------------------------------------------------------------- /sentry-core/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/test.rs -------------------------------------------------------------------------------- /sentry-core/src/transport.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/transport.rs -------------------------------------------------------------------------------- /sentry-core/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-core/src/utils.rs -------------------------------------------------------------------------------- /sentry-debug-images/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-debug-images/Cargo.toml -------------------------------------------------------------------------------- /sentry-debug-images/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-debug-images/LICENSE -------------------------------------------------------------------------------- /sentry-debug-images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-debug-images/README.md -------------------------------------------------------------------------------- /sentry-debug-images/src/images.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-debug-images/src/images.rs -------------------------------------------------------------------------------- /sentry-debug-images/src/integration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-debug-images/src/integration.rs -------------------------------------------------------------------------------- /sentry-debug-images/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-debug-images/src/lib.rs -------------------------------------------------------------------------------- /sentry-log/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-log/Cargo.toml -------------------------------------------------------------------------------- /sentry-log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-log/LICENSE -------------------------------------------------------------------------------- /sentry-log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-log/README.md -------------------------------------------------------------------------------- /sentry-log/src/converters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-log/src/converters.rs -------------------------------------------------------------------------------- /sentry-log/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-log/src/lib.rs -------------------------------------------------------------------------------- /sentry-log/src/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-log/src/logger.rs -------------------------------------------------------------------------------- /sentry-opentelemetry/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-opentelemetry/Cargo.toml -------------------------------------------------------------------------------- /sentry-opentelemetry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-opentelemetry/README.md -------------------------------------------------------------------------------- /sentry-opentelemetry/src/converters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-opentelemetry/src/converters.rs -------------------------------------------------------------------------------- /sentry-opentelemetry/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-opentelemetry/src/lib.rs -------------------------------------------------------------------------------- /sentry-opentelemetry/src/processor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-opentelemetry/src/processor.rs -------------------------------------------------------------------------------- /sentry-opentelemetry/src/propagator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-opentelemetry/src/propagator.rs -------------------------------------------------------------------------------- /sentry-opentelemetry/tests/associates_event_with_span.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-opentelemetry/tests/associates_event_with_span.rs -------------------------------------------------------------------------------- /sentry-opentelemetry/tests/captures_transaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-opentelemetry/tests/captures_transaction.rs -------------------------------------------------------------------------------- /sentry-opentelemetry/tests/captures_transaction_with_nested_spans.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-opentelemetry/tests/captures_transaction_with_nested_spans.rs -------------------------------------------------------------------------------- /sentry-opentelemetry/tests/creates_distributed_trace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-opentelemetry/tests/creates_distributed_trace.rs -------------------------------------------------------------------------------- /sentry-opentelemetry/tests/shared.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-opentelemetry/tests/shared.rs -------------------------------------------------------------------------------- /sentry-panic/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-panic/Cargo.toml -------------------------------------------------------------------------------- /sentry-panic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-panic/LICENSE -------------------------------------------------------------------------------- /sentry-panic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-panic/README.md -------------------------------------------------------------------------------- /sentry-panic/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-panic/src/lib.rs -------------------------------------------------------------------------------- /sentry-slog/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-slog/Cargo.toml -------------------------------------------------------------------------------- /sentry-slog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-slog/LICENSE -------------------------------------------------------------------------------- /sentry-slog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-slog/README.md -------------------------------------------------------------------------------- /sentry-slog/src/converters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-slog/src/converters.rs -------------------------------------------------------------------------------- /sentry-slog/src/drain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-slog/src/drain.rs -------------------------------------------------------------------------------- /sentry-slog/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-slog/src/lib.rs -------------------------------------------------------------------------------- /sentry-tower/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-tower/Cargo.toml -------------------------------------------------------------------------------- /sentry-tower/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-tower/LICENSE -------------------------------------------------------------------------------- /sentry-tower/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-tower/README.md -------------------------------------------------------------------------------- /sentry-tower/src/helloworld.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-tower/src/helloworld.rs -------------------------------------------------------------------------------- /sentry-tower/src/http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-tower/src/http.rs -------------------------------------------------------------------------------- /sentry-tower/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-tower/src/lib.rs -------------------------------------------------------------------------------- /sentry-tracing/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-tracing/Cargo.toml -------------------------------------------------------------------------------- /sentry-tracing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-tracing/LICENSE -------------------------------------------------------------------------------- /sentry-tracing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-tracing/README.md -------------------------------------------------------------------------------- /sentry-tracing/src/converters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-tracing/src/converters.rs -------------------------------------------------------------------------------- /sentry-tracing/src/layer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-tracing/src/layer.rs -------------------------------------------------------------------------------- /sentry-tracing/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-tracing/src/lib.rs -------------------------------------------------------------------------------- /sentry-tracing/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-tracing/tests/README.md -------------------------------------------------------------------------------- /sentry-tracing/tests/breadcrumbs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-tracing/tests/breadcrumbs.rs -------------------------------------------------------------------------------- /sentry-tracing/tests/name_op_updates.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-tracing/tests/name_op_updates.rs -------------------------------------------------------------------------------- /sentry-tracing/tests/shared.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-tracing/tests/shared.rs -------------------------------------------------------------------------------- /sentry-tracing/tests/smoke.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-tracing/tests/smoke.rs -------------------------------------------------------------------------------- /sentry-types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-types/Cargo.toml -------------------------------------------------------------------------------- /sentry-types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-types/LICENSE -------------------------------------------------------------------------------- /sentry-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-types/README.md -------------------------------------------------------------------------------- /sentry-types/src/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-types/src/auth.rs -------------------------------------------------------------------------------- /sentry-types/src/crontab_validator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-types/src/crontab_validator.rs -------------------------------------------------------------------------------- /sentry-types/src/dsn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-types/src/dsn.rs -------------------------------------------------------------------------------- /sentry-types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-types/src/lib.rs -------------------------------------------------------------------------------- /sentry-types/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-types/src/macros.rs -------------------------------------------------------------------------------- /sentry-types/src/project_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-types/src/project_id.rs -------------------------------------------------------------------------------- /sentry-types/src/protocol/attachment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-types/src/protocol/attachment.rs -------------------------------------------------------------------------------- /sentry-types/src/protocol/envelope.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-types/src/protocol/envelope.rs -------------------------------------------------------------------------------- /sentry-types/src/protocol/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-types/src/protocol/mod.rs -------------------------------------------------------------------------------- /sentry-types/src/protocol/monitor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-types/src/protocol/monitor.rs -------------------------------------------------------------------------------- /sentry-types/src/protocol/session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-types/src/protocol/session.rs -------------------------------------------------------------------------------- /sentry-types/src/protocol/v7.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-types/src/protocol/v7.rs -------------------------------------------------------------------------------- /sentry-types/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-types/src/utils.rs -------------------------------------------------------------------------------- /sentry-types/tests/test_auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-types/tests/test_auth.rs -------------------------------------------------------------------------------- /sentry-types/tests/test_protocol_v7.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry-types/tests/test_protocol_v7.rs -------------------------------------------------------------------------------- /sentry/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/Cargo.toml -------------------------------------------------------------------------------- /sentry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/LICENSE -------------------------------------------------------------------------------- /sentry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/README.md -------------------------------------------------------------------------------- /sentry/examples/anyhow-demo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/examples/anyhow-demo.rs -------------------------------------------------------------------------------- /sentry/examples/before-send.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/examples/before-send.rs -------------------------------------------------------------------------------- /sentry/examples/event-processors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/examples/event-processors.rs -------------------------------------------------------------------------------- /sentry/examples/health.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/examples/health.rs -------------------------------------------------------------------------------- /sentry/examples/log-demo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/examples/log-demo.rs -------------------------------------------------------------------------------- /sentry/examples/message-demo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/examples/message-demo.rs -------------------------------------------------------------------------------- /sentry/examples/panic-demo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/examples/panic-demo.rs -------------------------------------------------------------------------------- /sentry/examples/performance-demo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/examples/performance-demo.rs -------------------------------------------------------------------------------- /sentry/examples/send-with-extra.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/examples/send-with-extra.rs -------------------------------------------------------------------------------- /sentry/examples/thread-demo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/examples/thread-demo.rs -------------------------------------------------------------------------------- /sentry/examples/tracing-demo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/examples/tracing-demo.rs -------------------------------------------------------------------------------- /sentry/src/defaults.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/src/defaults.rs -------------------------------------------------------------------------------- /sentry/src/init.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/src/init.rs -------------------------------------------------------------------------------- /sentry/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/src/lib.rs -------------------------------------------------------------------------------- /sentry/src/transports/curl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/src/transports/curl.rs -------------------------------------------------------------------------------- /sentry/src/transports/embedded_svc_http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/src/transports/embedded_svc_http.rs -------------------------------------------------------------------------------- /sentry/src/transports/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/src/transports/mod.rs -------------------------------------------------------------------------------- /sentry/src/transports/ratelimit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/src/transports/ratelimit.rs -------------------------------------------------------------------------------- /sentry/src/transports/reqwest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/src/transports/reqwest.rs -------------------------------------------------------------------------------- /sentry/src/transports/thread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/src/transports/thread.rs -------------------------------------------------------------------------------- /sentry/src/transports/tokio_thread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/src/transports/tokio_thread.rs -------------------------------------------------------------------------------- /sentry/src/transports/ureq.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/src/transports/ureq.rs -------------------------------------------------------------------------------- /sentry/tests/test_async.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/tests/test_async.rs -------------------------------------------------------------------------------- /sentry/tests/test_basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/tests/test_basic.rs -------------------------------------------------------------------------------- /sentry/tests/test_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/tests/test_client.rs -------------------------------------------------------------------------------- /sentry/tests/test_log.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/tests/test_log.rs -------------------------------------------------------------------------------- /sentry/tests/test_log_combined_filters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/tests/test_log_combined_filters.rs -------------------------------------------------------------------------------- /sentry/tests/test_log_logs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/tests/test_log_logs.rs -------------------------------------------------------------------------------- /sentry/tests/test_processors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/tests/test_processors.rs -------------------------------------------------------------------------------- /sentry/tests/test_tower.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/tests/test_tower.rs -------------------------------------------------------------------------------- /sentry/tests/test_tracing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-rust/HEAD/sentry/tests/test_tracing.rs --------------------------------------------------------------------------------