-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Maxim Volkov
committed
Jan 11, 2021
1 parent
1805688
commit d3dc03b
Showing
4 changed files
with
30 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,26 @@ | ||
# Maximus Connectivity Monitoring | ||
## Management Pack for System Center Operations Manager | ||
Multi-protocol connectivity testing for SCOM, including ping, HTTP, SSL/TLS, TCP, etc. | ||
Multi-protocol connectivity testing for SCOM, including ping, HTTP, SSL/TLS, etc. | ||
|
||
See "making of" article at http://maxcoreblog.com/2021/01/11/connectivity-monitoring-scom-management-pack-the-making-of/ | ||
|
||
Main management pack features: | ||
|
||
- All intuitive GUI driven configuration. | ||
- Extendable -- other management pack authors can add more tests, which will be picked up by UI. | ||
|
||
|
||
Tests objects implemented in the current release: | ||
- Ping (2 monitors and 1 performance collection rule) | ||
- SSL Connection and Remote Certificate Validation (6 monitors) | ||
- HTTP Probe (1 monitor and 1 performance collection rule) | ||
- DNS Name Resolution (1 monitor) | ||
|
||
The main idea behind this management pack is to create flexible infrastructure, | ||
which allows to create and configure a suitable monitoring sets for each destination. | ||
Say, for instance, if you have an SQL server, you can add it as a destination, | ||
then add 'Ping', 'DNS Resolution', 'SSL', 'TCP Connect', and 'SQL Synthetic transaction' test objects. | ||
For a mail server, you can create a destination and add 'Ping', 'DNS Resolution', 'SSL', 'TCP Connect', | ||
'SMTP Send', and 'IMAP Receive' modules. Or, for an S3-compatible storage service you can make | ||
a set of 'Ping', 'DNS Resolution', 'SSL', 'TCP Connect', and 'S3 Synthetic Transaction'. | ||
|