{"id":16477920,"url":"https://github.com/mausworks/pidget","last_synced_at":"2025-03-21T07:30:25.910Z","repository":{"id":44104493,"uuid":"108683142","full_name":"mausworks/pidget","owner":"mausworks","description":"Error reporting for .NET using sentry.io","archived":false,"fork":false,"pushed_at":"2022-07-08T14:23:03.000Z","size":824,"stargazers_count":37,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-17T22:24:19.503Z","etag":null,"topics":["aspnet","dotnet-core","error-reporting","event-logging","middleware","sentry"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mausworks.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-10-28T20:49:01.000Z","updated_at":"2024-01-25T17:31:15.000Z","dependencies_parsed_at":"2022-09-19T04:52:39.974Z","dependency_job_id":null,"html_url":"https://github.com/mausworks/pidget","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mausworks%2Fpidget","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mausworks%2Fpidget/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mausworks%2Fpidget/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mausworks%2Fpidget/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mausworks","download_url":"https://codeload.github.com/mausworks/pidget/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244757051,"owners_count":20505314,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aspnet","dotnet-core","error-reporting","event-logging","middleware","sentry"],"created_at":"2024-10-11T12:47:19.835Z","updated_at":"2025-03-21T07:30:25.398Z","avatar_url":"https://github.com/mausworks.png","language":"C#","readme":"# PIDGET \n\n[![Build status](https://travis-ci.org/mausworks/pidget.svg?branch=master)](https://travis-ci.org/mausworks/pidget)\n[![Codecov](https://img.shields.io/codecov/c/github/mausworks/pidget.svg)](https://codecov.io/gh/mausworks/pidget)\n\nPidget is an exception and error-reporting library for **[Sentry.io](https://sentry.io/)!** \n\nIf you are looking for extensive and configurable exception handling in ASP.NET Core, then have a look at the [ASP.NET Middleware](https://github.com/mausworks/pidget/tree/master/src/Pidget.AspNet). For most other applications you can use the [client](https://github.com/mausworks/pidget/tree/master/src/Pidget.Client).\n\nIf you have any questions, ideas or requests, please open a [new issue](https://github.com/mausworks/pidget/issues/new)!\n\n## How is this different from SharpRaven?\n\n- Pidget is async-first (for blocking calls use, e.g. `client.CaptureAsync([...]).Result`)\n- Pidget is primarily targeted towards .NET Core\n- Pidget aims to be modular and extensible, whereas SharpRaven is a bit more monolithic\n- The Pidget client is a unopinionated minimalistic client, i.e. \"it just sends stuff\"\n- The Pidget client uses a `HttpClient` as primary transfer mechanism, whereas SharpRaven uses a [`WebRequest`](https://github.com/getsentry/raven-csharp/blob/3c30a19c953744afb99ff4a618c6c97a062597e7/src/app/SharpRaven/Data/Requester.cs#L61-L85)\n- The Pidget ASP.NET Middleware is specifically tailored for ASP.NET Core\n\n## Can I use it?\n\nPidget targets [.NET Standard 2.0](https://docs.microsoft.com/en-us/dotnet/standard/net-standard#net-implementation-support), which adds support for most (somewhat modern) .NET applications, e.g. .NET Core, Xamarin, Mono, UWP.\n\n* * * * \n\n## Pidget ASP.NET Middleware\n\nCaptures ASP.NET Core application errors and automatically attaches user \u0026 request data.\n\n### [Features](https://docs.sentry.io/clientdev/overview/#writing-an-sdk)\n\n- Support for Linux, Windows and OS X\n- Automated error capturing (e.g. uncaught exception handlers)\n- ~~Logging framework integration~~ (Can be configured with before/after-send hooks)\n- Non-blocking event submission\n- ~~Basic~~ **configurable** data sanitization (e.g. filtering out values that look like passwords)\n- Context data helpers (e.g. setting the current user, recording breadcrumbs)\n- Honor Sentry’s HTTP 429 Retry-After header\n- Pre and Post event send hooks\n\n**[Documentation \u0026 source](https://github.com/mausworks/pidget/tree/master/src/Pidget.AspNet)**\n\n[![NuGet](https://img.shields.io/nuget/dt/Pidget.AspNet.svg)](https://nuget.org/packages/Pidget.AspNet)\n\n* * * *\n\n## Pidget Client\n\nAn easy-to use Sentry client. Basic by design.\n\n### [Features](https://docs.sentry.io/clientdev/overview/#writing-an-sdk)\n\n- DSN configuration\n- Graceful failures (e.g. Sentry server is unreachable)\n- Setting attributes (e.g. tags and extra data)\n- Support for Linux, Windows and OS X\n- Non-blocking event submission\n- Context data helpers (e.g. setting the current user, recording breadcrumbs)\n- Event sampling\n- **Not possible/viable:** Local variable values in stacktrace\n\n**[Documentation \u0026 source](https://github.com/mausworks/pidget/tree/master/src/Pidget.Client)**\n\n[![NuGet](https://img.shields.io/nuget/dt/Pidget.Client.svg)](https://nuget.org/packages/Pidget.Client)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmausworks%2Fpidget","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmausworks%2Fpidget","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmausworks%2Fpidget/lists"}