I migrated from the original Kafka MirrorMaker to MirrorMaker 2.0 for replicating topics from one cluster to another. I am running a dedicated MirrorMaker cluster as described in the docs.
Let's say that I am replicating a topic named test-topic.
Cluster A Cluster B
---------- ----------
test-topic ---> A.test-topic
How can I determine how far A.test-topic is behind test-topic?
The original MirrorMaker created consumer groups, so I referred to the lag on that consumer group. MirrorMaker 2.0 does not create a consumer group, so I cannot use that to determine the lag.