Skip to content

Sentry

Sentry provides great ways of tracking performance across transactions and spans within those transaction. As such, it provides a great way of tracking performance of your mediator calls.

  1. Install the package
  2. Call the hosting UseSentry (ie. MauiProgram.cs - UseSentry with your DSN)
  3. Register in your against your hosted services call
    services.AddShinyMediator(cfg =>
    {
    cfg.UseSentry();
    });
  4. Start making calls to the mediator as your normally would