All Projects → coderrio → Coderr.Client

coderrio / Coderr.Client

Licence: other
Core client library for Coderr

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to Coderr.Client

05 Python Files
Python too supports file handling and allows users to handle files i.e., to read and write files, along with many other file handling options, to operate on files. The concept of file handling has stretched over various other languages, but the implementation is either complicated or lengthy, but like other concepts of Python, this concept here …
Stars: ✭ 163 (+608.7%)
Mutual labels:  exceptions, exception-handling
Bugsnag Js
Javascript error handling tool for Bugsnag. Monitor and report JavaScript bugs & errors.
Stars: ✭ 625 (+2617.39%)
Mutual labels:  exceptions, exception-handling
Bugsnag React Native
Error monitoring and reporting tool for native exceptions and JS errors in React Native apps
Stars: ✭ 374 (+1526.09%)
Mutual labels:  exceptions, exception-handling
stack-trace-art
Turning programming exceptions into art
Stars: ✭ 39 (+69.57%)
Mutual labels:  exceptions, exception-handling
Object Oriented Programming Using Python
Python is a multi-paradigm programming language. Meaning, it supports different programming approach. One of the popular approach to solve a programming problem is by creating objects. This is known as Object-Oriented Programming (OOP).
Stars: ✭ 183 (+695.65%)
Mutual labels:  exceptions, exception-handling
mwe-cpp-exception
Minimum working example of proper C++11 exception handling
Stars: ✭ 20 (-13.04%)
Mutual labels:  exceptions, exception-handling
Traceback with variables
Adds variables to python traceback. Simple, lightweight, controllable. Debug reasons of exceptions by logging or pretty printing colorful variable contexts for each frame in a stacktrace, showing every value. Dump locals environments after errors to console, files, and loggers. Works in Jupyter and IPython. Install with pip or conda.
Stars: ✭ 509 (+2113.04%)
Mutual labels:  exceptions, exception-handling
DuckOS
Such OS; Very Duck!
Stars: ✭ 16 (-30.43%)
Mutual labels:  exceptions, exception-handling
Coderr.server
Replace logfiles with Coderr to correct bugs faster and more efficiently.
Stars: ✭ 92 (+300%)
Mutual labels:  exceptions, exception-handling
Larabug
Laravel error reporting tool
Stars: ✭ 84 (+265.22%)
Mutual labels:  exceptions, exception-handling
Bugsnag Php
Bugsnag error monitoring and crash reporting tool for PHP apps
Stars: ✭ 475 (+1965.22%)
Mutual labels:  exceptions, exception-handling
Applicationinsights Dotnet Server
Microsoft Application Insights for .NET Web Applications
Stars: ✭ 130 (+465.22%)
Mutual labels:  telemetry, exceptions
Sosl
StackOverflow Search Library
Stars: ✭ 10 (-56.52%)
Mutual labels:  exceptions, exception-handling
Exceptions4c
🐑 An exception handling framework for C
Stars: ✭ 189 (+721.74%)
Mutual labels:  exceptions, exception-handling
bugsnag-java
Bugsnag error reporting for Java.
Stars: ✭ 51 (+121.74%)
Mutual labels:  exceptions, exception-handling
Applicationinsights Home
Application Insights main repository for documentation of overall SDK offerings for all platforms.
Stars: ✭ 221 (+860.87%)
Mutual labels:  telemetry
browser-telemetry
A Telemetry module for collecting errors, logs, metrics, uncaught exceptions etc on browser side.
Stars: ✭ 20 (-13.04%)
Mutual labels:  telemetry
Windowsspyblocker
WindowsSpyBlocker 🛡️ is an application written in Go and delivered as a single executable to block spying and tracking on Windows systems.
Stars: ✭ 2,913 (+12565.22%)
Mutual labels:  telemetry
Luatelemetry
FrSky SmartPort(S.Port), D-series, F.Port and TBS Crossfire telemetry on all Taranis and Horus transmitters
Stars: ✭ 206 (+795.65%)
Mutual labels:  telemetry
cpp client telemetry
1DS C++ SDK
Stars: ✭ 62 (+169.57%)
Mutual labels:  telemetry

Core client for Coderr

NuGet

This client library is used to manually report exceptions to Coderr (Err.Report(exception)).

For more information about Coderr, visit our homepage.

Getting started guide

Reporting the first error

Simply catch an exception and report it:

public void UpdatePost(int uid, ForumPost post)
{
	try
	{
		_service.Update(uid, post);
	}
	catch (Exception ex)
	{
		Err.Report(ex, new{ UserId = uid, ForumPost = post });
	}
}

The context information will be attached as:

Read more...

Automated handling

For automated handling, use one of the integration libraries found in nuget.

https://www.nuget.org/packages?q=coderr.client

Features in this library

  • HTTP proxy detection and usage when error reports are uploaded.
  • Queued uploads (to allow the application to still be responsive, even if uploading are done over a slow connection)
  • Compressed upload to minimize bandwidth usage.
  • Context data collection
  • Custom context data
  • Anonymous object
  • View models etc
  • Adding tags to errors
  • Allow user to leave feedback
  • Automated information collection from windows, the process and the current thread.

More information

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].