ServiceInsight Saga View not working

211 Views Asked by At

See the following screen shot: saga view not working

In my endpoint project I have referenced the ServiceControl SagaAudit plugin, such that when I deploy, the necessary dll is deployed as expected. You can see this in the left pane of the screenshot, which shows a view of the files in my deployed folder, from which the NServiceBus.host.exe is running processing messages successfully.

Yet the Saga view in ServiceInsight is complaining that I don't have the necessary ServiceControl plugin.

What am I missing?

1

There are 1 best solutions below

0
On

You need the saga audit plugin to see the saga data, see http://docs.particular.net/servicecontrol/plugins/saga-audit for information and links to the nuget packages. be aware that you need to include the assembly to scan in the config:

// Create a new configuration
var config = new BusConfiguration();

// Make sure to add the ServiceControl plugin assembly
config.AssembliesToScan(
  AllAssemblies.Matching("NServiceBus").And("ServiceControl.Plugin").ToList()
);