Quick Start Guide

Start using the tool in just a few minutes

1. Install dashboard

Database

docker run -d -p 27017:27017 --name mongodb mongo

For production environments, further configuration is required to ensure data persistence and security.

Dashboard

docker pull razorsharpdotnet/dashboard:latest
docker run -d -p 8080:8080 -p 8081:8081 -e RAZORSHARP_MONGODB_CONNECTION_STRING=mongodb://host.docker.internal:27017 razorsharpdotnet/dashboard:latest

2. Applying razorsharp to your application

dotnet tool install Razorsharp.APM.CLI --global --version 1.0.0-beta*
razorsharp --inject HelloWorld.dll --dashboard http://localhost:8081

3. Test

Execute an API call or a user action to allow Razorsharp APM to create log entries.

Access the dashboard at http://localhost:8080 to view the topology map and detailed log information.

Disclaimer: Please note that Razorsharp APM CLI is currently in beta. It is recommended to use it only in test environments at this stage. By using Razorsharp APM CLI, you acknowledge and agree that the tool is provided "as is" without warranty of any kind, express or implied. We do not accept liability for any direct, indirect, incidental, special, exemplary, or consequential damages arising from the use of the software. Please read license i nuget package for further details.