We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d819933 commit c539c53Copy full SHA for c539c53
src/NServiceBus.Transport.RabbitMQ/Administration/ManagementApi/Models/Queue.cs
@@ -26,6 +26,10 @@ class Queue
26
[JsonPropertyName("policy")]
27
public string? AppliedPolicyName { get; set; }
28
29
+ // For ServiceControl queue length provider
30
+ [JsonPropertyName("messages")]
31
+ public long MessageCount { get; set; }
32
+
33
// For ServiceControl licensing component
34
[JsonPropertyName("message_stats")]
35
public QueueMessageStats? MessageStats { get; set; }
0 commit comments