I need help interpreting this graph:
It looks like messages are coming in, then being processed, and going back to 0. The graph is not continually rising.
However, the outgoing messages has "--". Does this mean 0?
Does an outgoing message represent a message being read by a service?
If the messages are not being read, then what is happening to them? The dead letter queue has 0 messages.
Yes, an outgoing message represents a message being read by a service.
In your case, I see you've disabled
the dead letter queue(in your screenshot, the Dead lettering
option is disabled.), so there is no messages in the DLQ. If DLQ is disabled, the messages will get deleted after they expire.