{{template "header.html" .}}

Topic: {{.Topic}}

Topic Message Queue

{{range .TopicHostStats }} {{ end }} {{ with .GlobalTopicStats }} {{ end }}
nsqd Host Depth Memory + Disk Messages Channels
{{.HostAddress}} {{.Depth | commafy}} {{.MemoryDepth | commafy}} + {{.BackendDepth | commafy}} {{.MessageCount | commafy}} {{.ChannelCount}}
Total: {{.Depth | commafy}} {{.MemoryDepth | commafy}} + {{.BackendDepth | commafy}} {{.MessageCount | commafy}} {{.ChannelCount}}

Channel Message Queues

{{ if not .ChannelStats }}

Warning no channels have been created. Messages will queue at the topic message queue until a client connects.

{{else}} {{range $c := .ChannelStats}} {{ end }}
Channel Depth Memory + Disk In-Flight Deferred Requeued Timed Out Messages Connections
{{$c.ChannelName}} {{if $c.Paused}}paused{{end}} {{$c.Depth | commafy}} {{$c.MemoryDepth | commafy}} + {{$c.BackendDepth | commafy}} {{$c.InFlightCount | commafy}} {{$c.DeferredCount | commafy}} {{$c.RequeueCount | commafy}} {{$c.TimeoutCount | commafy}} {{$c.MessageCount | commafy}} {{$c.ClientCount}}
{{end}}
{{template "footer.html" .}}