├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── public ├── wp-sentry-browser.feedback.min.js ├── wp-sentry-browser.min.js ├── wp-sentry-browser.replay.min.js ├── wp-sentry-browser.tracing.min.js ├── wp-sentry-browser.tracing.replay.min.js └── wp-sentry-init.js ├── readme.txt ├── src ├── class-wp-sentry-admin-page.php ├── class-wp-sentry-js-tracker.php ├── class-wp-sentry-php-tracker.php ├── class-wp-sentry-version.php ├── plugins │ └── class-wp-sentry-action-scheduler-integration.php ├── tracing │ ├── class-wp-sentry-php-tracing.php │ ├── features │ │ ├── class-wp-sentry-tracing-feature-db.php │ │ ├── class-wp-sentry-tracing-feature-http.php │ │ ├── class-wp-sentry-tracing-feature-plugins.php │ │ ├── class-wp-sentry-tracing-feature-theme.php │ │ ├── class-wp-sentry-tracing-feature-transients.php │ │ └── class-wp-sentry-tracing-feature.php │ └── trait-wp-sentry-tracks-pushed-scopes-and-spans.php ├── trait-wp-sentry-resolves-environment.php └── trait-wp-sentry-resolves-users.php └── wp-sentry.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/composer.lock -------------------------------------------------------------------------------- /public/wp-sentry-browser.feedback.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/public/wp-sentry-browser.feedback.min.js -------------------------------------------------------------------------------- /public/wp-sentry-browser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/public/wp-sentry-browser.min.js -------------------------------------------------------------------------------- /public/wp-sentry-browser.replay.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/public/wp-sentry-browser.replay.min.js -------------------------------------------------------------------------------- /public/wp-sentry-browser.tracing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/public/wp-sentry-browser.tracing.min.js -------------------------------------------------------------------------------- /public/wp-sentry-browser.tracing.replay.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/public/wp-sentry-browser.tracing.replay.min.js -------------------------------------------------------------------------------- /public/wp-sentry-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/public/wp-sentry-init.js -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/readme.txt -------------------------------------------------------------------------------- /src/class-wp-sentry-admin-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/src/class-wp-sentry-admin-page.php -------------------------------------------------------------------------------- /src/class-wp-sentry-js-tracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/src/class-wp-sentry-js-tracker.php -------------------------------------------------------------------------------- /src/class-wp-sentry-php-tracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/src/class-wp-sentry-php-tracker.php -------------------------------------------------------------------------------- /src/class-wp-sentry-version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/src/class-wp-sentry-version.php -------------------------------------------------------------------------------- /src/plugins/class-wp-sentry-action-scheduler-integration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/src/plugins/class-wp-sentry-action-scheduler-integration.php -------------------------------------------------------------------------------- /src/tracing/class-wp-sentry-php-tracing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/src/tracing/class-wp-sentry-php-tracing.php -------------------------------------------------------------------------------- /src/tracing/features/class-wp-sentry-tracing-feature-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/src/tracing/features/class-wp-sentry-tracing-feature-db.php -------------------------------------------------------------------------------- /src/tracing/features/class-wp-sentry-tracing-feature-http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/src/tracing/features/class-wp-sentry-tracing-feature-http.php -------------------------------------------------------------------------------- /src/tracing/features/class-wp-sentry-tracing-feature-plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/src/tracing/features/class-wp-sentry-tracing-feature-plugins.php -------------------------------------------------------------------------------- /src/tracing/features/class-wp-sentry-tracing-feature-theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/src/tracing/features/class-wp-sentry-tracing-feature-theme.php -------------------------------------------------------------------------------- /src/tracing/features/class-wp-sentry-tracing-feature-transients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/src/tracing/features/class-wp-sentry-tracing-feature-transients.php -------------------------------------------------------------------------------- /src/tracing/features/class-wp-sentry-tracing-feature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/src/tracing/features/class-wp-sentry-tracing-feature.php -------------------------------------------------------------------------------- /src/tracing/trait-wp-sentry-tracks-pushed-scopes-and-spans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/src/tracing/trait-wp-sentry-tracks-pushed-scopes-and-spans.php -------------------------------------------------------------------------------- /src/trait-wp-sentry-resolves-environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/src/trait-wp-sentry-resolves-environment.php -------------------------------------------------------------------------------- /src/trait-wp-sentry-resolves-users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/src/trait-wp-sentry-resolves-users.php -------------------------------------------------------------------------------- /wp-sentry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/wp-sentry/HEAD/wp-sentry.php --------------------------------------------------------------------------------