stratovarius
stratovarius

Reputation: 3880

NServiceBus ServiceInsight - Empty Flow Diagram and Sequence Diagram

.

class ConfigAuditQueue : IProvideConfiguration<AuditConfig>
{
    public AuditConfig GetConfiguration()
    {
        return new AuditConfig
        {
            QueueName = "audit"
        };
    }
}

As you can see in the screenshot, it is connected to msmq api and can fetch the messages. However Flow Diagram and Sequence Diagrams are empty.

  1. Why is that, any ideas?
  2. Is it related to the Unknown Message ID ? (Although it is known in Header)

SS

Here is also MSMQ installed features screenshot and versions for helping error recreation.

enter image description here

Upvotes: 1

Views: 224

Answers (2)

Hadi Eskandari
Hadi Eskandari

Reputation: 26354

After spending some time trying to track the issue, turns out this is a ServiceControl bug that happens when running on non-English culture, specially Turkish.

The bug has been raised and fixed since. You can find more info here.

Upvotes: 1

Ramon Smits
Ramon Smits

Reputation: 2618

This issue is crossposted to the Particular Google Groups:

This seems to be any a bug and an issue is created for it:

Upvotes: 0

Related Questions