birdyb
Goto Top

Exchange 2013 - Durchschnittlicher E-Mail-Durchsatz nach Stunden

Guten Morgen zusammen,

zur Analyse der Auslastung unserer Einsatzzentrale würde die zuständige Bereichsleitung gerne wissen, wieviele Mails im Schnitt pro Uhrzeitbereich (0-1 Uhr, 1-2 Uhr, usw.) bei uns eingehen. Google führte mich zu dieser Seite: http://exchangeserverpro.com/calculate-hourly-email-traffic-using-messa ... allerdings komme ich damit nicht zurecht. Ich weiß nicht, auf welche Dateien ich das ganze dann anwenden soll, etc.

Hat jemand einen Rat für mich? Danke für die Unterstützung.

Beste Grüße!


Berthold

Content-Key: 310154

Url: https://administrator.de/contentid/310154

Ausgedruckt am: 19.03.2024 um 07:03 Uhr

Mitglied: wuurian
wuurian 18.07.2016 um 08:35:41 Uhr
Goto Top
Morgen,

schau dir das mal an:

https://www.frankysweb.de/

Gruß
Mitglied: BirdyB
BirdyB 18.07.2016 um 08:52:57 Uhr
Goto Top
Guten Morgen,

danke für den Hinweis. Auch dort bin ich bereits gelandet, allerdings liefert der ExchangeReporter genau nicht die Auswertung die ich benötige. Oder meintest du etwas anderes bei Frankysweb?

Beste Grüße!
Mitglied: 129813
Lösung 129813 18.07.2016 aktualisiert um 17:54:47 Uhr
Goto Top
Hi,
try this:
Get-MessageTrackingLog -EventId RECEIVE -ResultSize Unlimited | ?{$_.Source -eq 'SMTP'} | group {$_.Timestamp.Hour} | select @{n="Hour";e={[int]$_.Name}},@{n="AverageIncomingMails";e={$_.Group | group {$_.Timestamp.Date} | measure count -Average | select -Expand Average}} | sort Hour  
The timeframe can be customized with the parameters -Start and -End of Get-MessageTrackingLog

Regards
Mitglied: BirdyB
BirdyB 18.07.2016 um 17:49:28 Uhr
Goto Top
That's really great, i just had to add "-ResultSize unlimited" for the Script to work. Just one little question: Is it possible to get the Result sorted by hour ascending?
My Result seems to be random and i'm not familiar enough with powershell to achieve that.
Thanks a lot!
Mitglied: 129813
129813 18.07.2016 um 17:54:12 Uhr
Goto Top
Updated above.

Regards
Mitglied: BirdyB
BirdyB 18.07.2016 um 17:59:01 Uhr
Goto Top
Thanks a lot. Unfortunately the sorting is done alphanumerically, but i will anyhow figure out how to solve this.
I should really start learning PowerShell...
Mitglied: 129813
129813 18.07.2016 um 18:08:46 Uhr
Goto Top
Sorry forgot converting to integer face-wink, corrected above.