• I found the answer to my own question. For others wondering, connect to the subscriber and run the following:

    USE <subscriber_db>

    GO

    SELECT publisher,publication, distribution_agent,transaction_timestamp

    FROM dbo.MSreplication_subscriptions

    The transaction_timestamp value contains the Log Sequence Number (LSN) for the last transaction applied by replication. Multiple rows per publication indicates parallel distribution streams (a non default setting)

    Thanks!