A web-based diagnostics console for configuring lightweight tests on nodes and arbitrary service endpoints.
EagleEye is 100% agentless. Simply use the console to configure tests for a variety of nodes and application endpoints, such as virtual IPs, web and app servers, databases, web services, even linux processes and file system resources. #####Supported Tests
- Ping (native)
- Http Get
- Http Put
- Redis ping
- Mongo ping
- RDBMS connect
- Process Stat
- File System (check files, folder, mounts)
Main console for selecting target environments for diagnostics verification. Execution status and test results updated in real-time based on availability.
Graphical reporting of node health for quickly identifying problems:
Get detailed test results; re-execute node tests using 'Test Again' button:
EagleEye supports remote log file viewing and searching (to enable, configure SSH auth under Team settings).
Navigate node configuration using topology view:
Need a custom test? Just extend the framework:
class MyDiagnostic implements Diagnostic {
TestResult runDiagnostic(nodeConfig, testConfig, options) {
attemptDiagnostic(options) { ->
def result
try{
//check some service, database, etc
result = new TestResultPassed("Looking good!")
}catch(Exception e){
log.error(e.getMessage(), e)
result = new TestResultFailed(e.getMessage())
}
return result
}
}
}