Checks DNS server availability via ping then performs configurable DNS query (record_type: A, AAAA, TXT, MX, etc.). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
232 B
Python
12 lines
232 B
Python
from .ping import PingChecker
|
|
from .http import HttpChecker
|
|
from .snmp import SnmpChecker
|
|
from .dns import DnsChecker
|
|
|
|
CHECKERS = {
|
|
"ping": PingChecker,
|
|
"http": HttpChecker,
|
|
"snmp": SnmpChecker,
|
|
"dns": DnsChecker,
|
|
}
|