Code Monkey home page Code Monkey logo

deadif's Introduction

#Dead IF

deadif1 = "mbean WebSphere:type=JvmStats attribute UpTime > 10000"
deadif3 = "mbean Application:type=ApplicationTester,name=myTest operation TestMQ > 100"

The DeadIf application will load rules that are defined as Operating System variables and execute them when a rest service is accessed. The service returns a rest object with statuses and a HTTP return code. The code is either HTTP/200 OK (no rules triggered) or HTTP/503 Service Unavailable (one or more rules triggered).

A good example of when to use this application would be together with Kubernetes liveness probes to verify that the application is working inside an container. The kubernetes probes would check /DeadIf/healthz and based on the HTTP status code determine if the application server needs to re-spawn.

An example of an rule is :

mbean WebSphere:type=ThreadPoolStats,name=Default Executor attribute ActiveThreads is > 100

An example of resoponses:

Rule(-s) triggered: HTTP/503
{
  "ruleResult": [
    {
      "message": "Rule check on WebSphere:type=ThreadPoolStats,name=Default Executor ActiveThreads: 1 > 100",
      "id": "deadif7",
      "deadAccordingToRule": false
    },
    {
      "message": "Rule check on WebSphere:type=JvmStats UpTime: 512403 > 50000",
      "id": "deadif4",
      "deadAccordingToRule": true
    }
   ],
  "dead": true
}
----------------------------------
Successful: HTTP/200

{
  "ruleResult": [
    {
      "message": "Rule check on WebSphere:type=JvmStats UpTime: 10002 > 50000",
      "id": "deadif4",
      "deadAccordingToRule": false
    }
  ],
  "dead": false
}

If an rule is triggered it will be reported in the SystemOut stream:

[WARNING ] deadif rule deadif4 has been triggered Rule check on WebSphere:type=JvmStats UpTime: 512403 > 50000
[WARNING ] deadif rule deadif1 has been triggered Rule check on WebSphere:type=JvmStats UpTime: 512404 > 70000
[ERROR   ] deadif rule(-s) have been triggered. Application is deemed down. Reporting HTTP/503/ServiceUnavailable to probe.

###Syntax

The syntax for the rules are:

To evaluate an attribute:

mbean <object name> attribute  <name> {<,>,=,!=}  <value>

To evaluate the result of an operation:

mbean <object name> operation  <name> {<,>,=,!=}  <value>

Note that there is no support for passing arguments to the operation at this time.

###Examples

  • "The application is dead if the application server has been running for more than 1000 seconds":

    deadif0 = mbean WebSphere:type=JvmStats attribute UpTime > 10000
    
  • "The application is dead if Default Executor has more that 100 active threads"

    deadif1 = "mbean WebSphere:type=ThreadPoolStats,name=Default Executor attribute ActiveThreads > 100"
    
  • "The application is dead if myTest operation TestMQ return false"

    deadif2 = "mbean name=myTest operation TestMQ = false"
    
  • "The application is dead if myTest operation getQueueDepth returns is grater then 100"

    deadif3 = "mbean name=myTest operation getQueueDepth > 100"
    

###Building deadif.war Check out the code and run the maven target package.

git clone https://github.com/mtekkie/DeadIf
cd DeadIf
mvn package

The resulting artifact (deadif.war) will be placed in target/.

###Custom MXBeans An application has the possibility to expose it's own MXBeans and have the rules tested against them.

An example of an really simple MXBean is available in this repo: https://github.com/mtekkie/MXBean-Example

More information about MXBeans are available on Oracles site: https://docs.oracle.com/javase/tutorial/jmx/mbeans/mxbeans.html

###Application Server Info All application servers have different setups when it comes to the MBeans that they are exposing. Use Jconsole to explore which MBeans that your application server is exposing.

In Websphere Liberty profile there is an option to enable monitoring in the server.xml file. If that is enabled the PMI objects are available as MBeans and you can apply rules to them.

<server description="unicornsRulesServer">

    <!-- Enable features -->
    <featureManager>
        <feature>javaee-7.0</feature>
        <feature>monitor-1.0</feature>
    </featureManager>

	<monitor enableTraditionalPMI="false"/>
  <!-- ... other stuff ....  -->  
</server>

deadif's People

Contributors

mtekkie avatar

Stargazers

Bortek avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.