Skip to content

raffian/eagle-eye

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EagleEye

A web-based diagnostics console for configuring lightweight tests on nodes and arbitrary service endpoints.

Agentless Monitors

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)

Diagnostics Web Console

Control Panel

Main console for selecting target environments for diagnostics verification. Execution status and test results updated in real-time based on availability.

Graphical Reporting

Graphical reporting of node health for quickly identifying problems:

Interactive Results

Get detailed test results; re-execute node tests using 'Test Again' button:

Remote Logs

EagleEye supports remote log file viewing and searching (to enable, configure SSH auth under Team settings).

Topology View

Navigate node configuration using topology view:

Custom Tests

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
      }
   }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published