All Projects → coderrio → Coderr.server

coderrio / Coderr.server

Licence: other
Replace logfiles with Coderr to correct bugs faster and more efficiently.

Programming Languages

csharp
926 projects

Projects that are alternatives of or similar to Coderr.server

bugsnag-java
Bugsnag error reporting for Java.
Stars: ✭ 51 (-44.57%)
Mutual labels:  exceptions, exception-handling
mwe-cpp-exception
Minimum working example of proper C++11 exception handling
Stars: ✭ 20 (-78.26%)
Mutual labels:  exceptions, exception-handling
Coderr.Client
Core client library for Coderr
Stars: ✭ 23 (-75%)
Mutual labels:  exceptions, exception-handling
stack-trace-art
Turning programming exceptions into art
Stars: ✭ 39 (-57.61%)
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 (+453.26%)
Mutual labels:  exceptions, exception-handling
Exceptions4c
🐑 An exception handling framework for C
Stars: ✭ 189 (+105.43%)
Mutual labels:  exceptions, exception-handling
DuckOS
Such OS; Very Duck!
Stars: ✭ 16 (-82.61%)
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 (+98.91%)
Mutual labels:  exceptions, exception-handling
Bugsnag Php
Bugsnag error monitoring and crash reporting tool for PHP apps
Stars: ✭ 475 (+416.3%)
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 (+306.52%)
Mutual labels:  exceptions, exception-handling
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 (+77.17%)
Mutual labels:  exceptions, exception-handling
Sosl
StackOverflow Search Library
Stars: ✭ 10 (-89.13%)
Mutual labels:  exceptions, exception-handling
Bugsnag Js
Javascript error handling tool for Bugsnag. Monitor and report JavaScript bugs & errors.
Stars: ✭ 625 (+579.35%)
Mutual labels:  exceptions, exception-handling
Larabug
Laravel error reporting tool
Stars: ✭ 84 (-8.7%)
Mutual labels:  exceptions, exception-handling
Server
The Prefect API and backend
Stars: ✭ 87 (-5.43%)
Mutual labels:  automation
Ck Tensorflow
Collective Knowledge components for TensorFlow (code, data sets, models, packages, workflows):
Stars: ✭ 90 (-2.17%)
Mutual labels:  automation
Nps
NPM Package Scripts -- All the benefits of npm scripts without the cost of a bloated package.json and limits of json
Stars: ✭ 1,285 (+1296.74%)
Mutual labels:  automation
Flexget
The official FlexGet repository
Stars: ✭ 1,279 (+1290.22%)
Mutual labels:  automation
Netshot
Network Configuration and Compliance Management
Stars: ✭ 91 (-1.09%)
Mutual labels:  automation
Patrowlhears
PatrowlHears - Vulnerability Intelligence Center / Exploits
Stars: ✭ 89 (-3.26%)
Mutual labels:  automation

Coderr Community Server

Build status Github All Releases

Discover more errors and solve them faster!

Welcome screen

Watch our intro video

Search function

Search using your own data

.. don't want to host/maintain your own server? Try Coderr Live

What’s Coderr?

Coderr is an error management service developed specifically for .NET and JavaScript applications. Coderr provides an insight to all errors that are occurring and gives you control and a complete view of your applications’ status.

Why change?

Compared to log files and log analysis tools (like Splunk / Kibana), Coderr fouces exclusivly on errors (both exceptions and other types) where everything works out of the box. No need to customize dashboards, views or anything else. All errors are grouped out of the box and you can see how often they occurr, in which environment (like "production") and in which application versions.

Once an error is corrected, all future reports for it will automatically be ignored unless the error surfaces in a newer application version.

With Coderr, you can focus on building new features and spend minimal time correcting bugs.

Getting started

  1. Download Coderr Server, use our cloud service (free for up to five users) or use our Docker image
  2. Install one of our nuget libraries (or npm library).
  3. Follow the instructions in the package ReadMe (max three lines of code to get started).
  4. Try the code below.

Unhandled exceptions will automatically be reported by the client libraries.

To report exceptions manually:

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 in this case be attached as:

You can learn more about reporting errors here.

Running Coderr

You can run any Coderr in development, test and in production. Coderr is available in three different ways; as Coderr Community Server (AGPL license, self-hosting), as Coderr Live (commercial license, cloud version) or on request, as Coderr running on premise (commercial license, self-hosting version). Coderr Live and Coderr on premise add powerful algorithms to prioritize errors and provide insight to how your code is improving over time with applied solutions. Coderr was rebranded and developed from OneTrueError in 2017.

Read more

About us

We are passionate about Open Source, Microsoft .NET and code quality. 1TCompany started in 2017 in Sweden and builds on years of coding experience and bringing products to market. Our mission is to assist fellow developers deliver quality code. To accomplish this mission, we decided to make Coderr commercially available and ready for prime time.

Community

Licensing

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].