I can easily get rates from the New release UDP stream using winsockets, but for some reason I can't get any rates using aeron. I am using the RateSubscriber project and the following URI:
const static std::string DEFAULT_CHANNEL = "aeron:udp?endpoint=224.0.28.1:14310";
When I run my code (after I started aeronmd.exe of course) I dont receive any rates:
Subscribing to channel aeron:udp?endpoint=224.0.28.1:14310 on Stream ID 10
Subscription: aeron:udp?endpoint=224.0.28.1:14310 22:10
0 msgs/sec, 0 bytes/sec, totals 0 messages 0 MB payloads
0 msgs/sec, 0 bytes/sec, totals 0 messages 0 MB payloads
0 msgs/sec, 0 bytes/sec, totals 0 messages 0 MB payloads
0 msgs/sec, 0 bytes/sec, totals 0 messages 0 MB payloads
Shutting down...
What am I doing wrong? Do I need to run something else?
Thank you!