If I try ``` pulsarctl subscriptions peek my-topic-name my-subscription-name ``` for a partition topic, I get ``` code: 405 reason: Peek messages on a partitioned topic is not allowed ``` And specifying a more specific partition with ``` pulsarctl subscriptions peek my-topic-name-partition-0 my-subscription-name ``` just yields `code: 404 reason: Message not found` My interest is in seeing the publishTime and eventTime values for many messages between 2 particular timestamp ranges. kafkactl has a way to view messages like this, across partitions, without issue: ``` kafkactl consume my-topic --from-timestamp 1727896337000 --to-timestamp 1727896437000 --print-timestamps ``` If there is a better way to do this, please let me know.