├── .gitignore ├── LICENSE ├── README.md ├── appveyor.yml ├── demos ├── README.md ├── SentryConsole │ ├── Program.cs │ └── SentryConsole.csproj ├── SentrySerilogDemos.sln └── SentryWeb │ ├── .bowerrc │ ├── Controllers │ └── HomeController.cs │ ├── Models │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Scrubbing │ ├── CustomLogScrubber.cs │ └── DivisionByZeroFilter.cs │ ├── SentryWeb.csproj │ ├── Startup.cs │ ├── Views │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bower.json │ ├── bundleconfig.json │ └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ └── banner4.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map └── src ├── Serilog.Sinks.Sentry.AspNetCore ├── AspCoreHttpContextAdapter.cs ├── ExceptionExtensions.cs ├── HttpContextDestructingPolicy.cs ├── SentrySinkContextMiddleware.cs ├── Serilog.Sinks.Sentry.AspNetCore.csproj └── SerilogSentryExtensions.cs ├── Serilog.Sinks.Sentry.sln └── Serilog.Sinks.Sentry ├── AspNetCoreSentryRequestFactory.cs ├── AspNetCoreSentryUserFactory.cs ├── Constants.cs ├── ISentryHttpContext.cs ├── SentrySink.cs ├── SentrySinkExtensions.cs └── Serilog.Sinks.Sentry.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/appveyor.yml -------------------------------------------------------------------------------- /demos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/README.md -------------------------------------------------------------------------------- /demos/SentryConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryConsole/Program.cs -------------------------------------------------------------------------------- /demos/SentryConsole/SentryConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryConsole/SentryConsole.csproj -------------------------------------------------------------------------------- /demos/SentrySerilogDemos.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentrySerilogDemos.sln -------------------------------------------------------------------------------- /demos/SentryWeb/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /demos/SentryWeb/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/Controllers/HomeController.cs -------------------------------------------------------------------------------- /demos/SentryWeb/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /demos/SentryWeb/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/Program.cs -------------------------------------------------------------------------------- /demos/SentryWeb/Scrubbing/CustomLogScrubber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/Scrubbing/CustomLogScrubber.cs -------------------------------------------------------------------------------- /demos/SentryWeb/Scrubbing/DivisionByZeroFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/Scrubbing/DivisionByZeroFilter.cs -------------------------------------------------------------------------------- /demos/SentryWeb/SentryWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/SentryWeb.csproj -------------------------------------------------------------------------------- /demos/SentryWeb/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/Startup.cs -------------------------------------------------------------------------------- /demos/SentryWeb/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/Views/Home/About.cshtml -------------------------------------------------------------------------------- /demos/SentryWeb/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /demos/SentryWeb/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /demos/SentryWeb/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /demos/SentryWeb/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /demos/SentryWeb/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /demos/SentryWeb/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /demos/SentryWeb/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /demos/SentryWeb/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/appsettings.Development.json -------------------------------------------------------------------------------- /demos/SentryWeb/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/appsettings.json -------------------------------------------------------------------------------- /demos/SentryWeb/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/bower.json -------------------------------------------------------------------------------- /demos/SentryWeb/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/bundleconfig.json -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/css/site.css -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/favicon.ico -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /demos/SentryWeb/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/demos/SentryWeb/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/Serilog.Sinks.Sentry.AspNetCore/AspCoreHttpContextAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/src/Serilog.Sinks.Sentry.AspNetCore/AspCoreHttpContextAdapter.cs -------------------------------------------------------------------------------- /src/Serilog.Sinks.Sentry.AspNetCore/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/src/Serilog.Sinks.Sentry.AspNetCore/ExceptionExtensions.cs -------------------------------------------------------------------------------- /src/Serilog.Sinks.Sentry.AspNetCore/HttpContextDestructingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/src/Serilog.Sinks.Sentry.AspNetCore/HttpContextDestructingPolicy.cs -------------------------------------------------------------------------------- /src/Serilog.Sinks.Sentry.AspNetCore/SentrySinkContextMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/src/Serilog.Sinks.Sentry.AspNetCore/SentrySinkContextMiddleware.cs -------------------------------------------------------------------------------- /src/Serilog.Sinks.Sentry.AspNetCore/Serilog.Sinks.Sentry.AspNetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/src/Serilog.Sinks.Sentry.AspNetCore/Serilog.Sinks.Sentry.AspNetCore.csproj -------------------------------------------------------------------------------- /src/Serilog.Sinks.Sentry.AspNetCore/SerilogSentryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/src/Serilog.Sinks.Sentry.AspNetCore/SerilogSentryExtensions.cs -------------------------------------------------------------------------------- /src/Serilog.Sinks.Sentry.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/src/Serilog.Sinks.Sentry.sln -------------------------------------------------------------------------------- /src/Serilog.Sinks.Sentry/AspNetCoreSentryRequestFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/src/Serilog.Sinks.Sentry/AspNetCoreSentryRequestFactory.cs -------------------------------------------------------------------------------- /src/Serilog.Sinks.Sentry/AspNetCoreSentryUserFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/src/Serilog.Sinks.Sentry/AspNetCoreSentryUserFactory.cs -------------------------------------------------------------------------------- /src/Serilog.Sinks.Sentry/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/src/Serilog.Sinks.Sentry/Constants.cs -------------------------------------------------------------------------------- /src/Serilog.Sinks.Sentry/ISentryHttpContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/src/Serilog.Sinks.Sentry/ISentryHttpContext.cs -------------------------------------------------------------------------------- /src/Serilog.Sinks.Sentry/SentrySink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/src/Serilog.Sinks.Sentry/SentrySink.cs -------------------------------------------------------------------------------- /src/Serilog.Sinks.Sentry/SentrySinkExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/src/Serilog.Sinks.Sentry/SentrySinkExtensions.cs -------------------------------------------------------------------------------- /src/Serilog.Sinks.Sentry/Serilog.Sinks.Sentry.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serilog-contrib/serilog-sinks-sentry/HEAD/src/Serilog.Sinks.Sentry/Serilog.Sinks.Sentry.csproj --------------------------------------------------------------------------------