Is there a way to determine how many emails are tranfer though a Send / recieved connector

Dean Maher 71 Reputation points
2021-12-03T19:23:15.527+00:00

Hello ,

I want to determine how many msg are transfer though connector (send/receive ) for a time interval (day/week/month)
Can this be done and is PowerShell an options ?
As one of these connector would be Hybrid 0365 connector can 0365 help with that aspect

Dean

Exchange Online
Exchange Online
A Microsoft email and calendaring hosted service.
6,190 questions
Exchange | Exchange Server | Management
0 comments No comments
{count} votes

Accepted answer
  1. Andy David - MVP 157.8K Reputation points MVP
    2021-12-03T19:56:25.313+00:00
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. KyleXu-MSFT 26,396 Reputation points
    2021-12-06T07:44:58.24+00:00

    @Dean Maher

    You could create Message Trace report on Exchange online admin center to check the email sent from/to Exchange on-premises:

    Here is an example to check emails that sent from Exchange on-premises(*@localdomain.com)
    155204-qa-kyle-15-39-59.png

    From the Exchange on-premises, you can also use command below to check emails send from specified connector:

    Get-TransportService | Get-MessageTrackingLog -ResultSize unlimited | where{$_.ConnectorId -like "Outbound to Office 365*"}    
    

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.