I need to list the messages that were posted in nats stream to know which ones were not recognized.
I have tried to look at the admin api that nats suggests in its documentation, but it does not specify if this can be done or not.
I have also looked at the jetstream library for go, with this I can get general information about the streams and their comsumers but not the messages that were not acknowledged and I don't see any functions that give me what I need.
Has anyone already done this no matter the programming language?
Acknowledgements are tied to a specific
consumer
, not astream
.You can derive the state of acknowledgements from
consumer
info, precisely, the Acknowledgement floor:Which is available in NATS CLI and most client libraries. There is no way to directly see the list of acknowledged messages.