Skip to content

crazyants/OneTrueError.Server

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Coderr Community Server

Build status Github All Releases

Skip logfiles - Use automated exception handling!

OSS screenshot of v2.0screenshot is from the version 2.0 beta

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

What’s Coderr?

Coderr is an error handling tool developed specifically for .NET 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?

Too often, error detection and management involves relying on reports from users and random logfile scanning. The unknown amount of errors and weaknesses of the code creates uncertainty and lessens your control. With a systematic approach facilitated by a tool built for developers by developers, Coderr provides insight about the status of the applications.

Getting started

Once you have downloaded and installed the server you need to install and configure one of our nuget packages. You can read more about them here.

Unhandled exceptions will be picked up by the client libraries.

To report exceptions yourself:

public void UpdatePost(int uid, ForumPost post)
{
	try
	{
		_service.Update(uid, post);
	}
	catch (Exception ex)
	{
		OneTrue.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

About

OneTrueError is an automated service for detecting and analysing exceptions in .NET

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 57.0%
  • JavaScript 19.2%
  • CSS 10.6%
  • TypeScript 8.7%
  • HTML 4.5%
  • Batchfile 0.0%