Hello,
i found these Exchange related checks somewhere in the forum and thought they would fit into the cookbook:
With thanks to Cooper:
With thanks to mucknet
i found these Exchange related checks somewhere in the forum and thought they would fit into the cookbook:
With thanks to Cooper:
Code:
If you are interested in queue related stuff here are some of the perfmon items I monitor. \smtp server\Local queue\_Total - This is the queue that is attempting to deliver to you exchange mailboxes (mail store) \smtp server\Remote queue\_Total - This is the queue for messages that exchage is attempting to route to an external recipient (ie another server) \smtp server\Categorizer queue\_Total - This is the queue where exchange holds messages while it does things, like look up addresses in AD, or DNS lookups.
Code:
Here are my zabbix_agentd.conf items I monitor for SMTP exchange: PerfCounter = smtp_total_badmailed_messages_bad_pickup_file,"\SMTP Server(_Total)\Badmailed Messages (Bad Pickup File)",10 PerfCounter = smtp_total_badmailed_messages_general_failure,"\SMTP Server(_Total)\Badmailed Messages (General Failure)",10 PerfCounter = smtp_total_remote_queue_length,"\SMTP Server(_Total)\Remote Queue Length",10 PerfCounter = smtp_total_messages_sent_sec,"\SMTP Server(_Total)\Messages Sent/sec",10 PerfCounter = smtp_total_messages_sent_total,"\SMTP Server(_Total)\Messages Sent Total",10 PerfCounter = smtp_total_outbound_connections_current,"\SMTP Server(_Total)\Outbound Connections Current",10 PerfCounter = smtp_total_outbound_connections_refused,"\SMTP Server(_Total)\Outbound Connections Refused",10 PerfCounter = smtp_total_pickup_directory_messages_retrieved_tot al,"\SMTP Server(_Total)\Pickup Directory Messages Retrieved Total",10 PerfCounter = smtp_total_pickup_directory_messages_retrieved_sec ,"\SMTP Server(_Total)\Pickup Directory Messages Retrieved/sec",10
Comment