Skip to content

Latest commit

 

History

History
63 lines (42 loc) · 2.28 KB

File metadata and controls

63 lines (42 loc) · 2.28 KB

codeRR Community Server

Build status Github All Releases

codeRR discovers and analyzes all exceptions in all of your installations for every version of your .NET application.

OSS screenshot

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

What's in it for me?

codeRR monitors your application and notifies you when new unique errors occurs, putting an end to random logfile scanning and relying on reports from users.

You can typically solve the incident straight way, since codeRR provides relevant information together with the exception. In your codeRR server you can do further analysis of systematic and related errors.

In short, we believe that codeRR will save you time and effort and help you improve code quality

Read more...

Getting started

Once you have installed the server you need to install one of our nuget packages in your application. 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 be attached as:

Read more...

Community

Licensing