Skip to content

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

License

Notifications You must be signed in to change notification settings

coderrio/Coderr.Server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

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