Forum Discussion

7 Replies

  • uni's avatar
    uni
    Icon for Altostratus rankAltostratus

    Disabling a node will stop node monitors for that node. Disabling a pool member will stop pool monitors for that member.

     

  • JG's avatar
    JG
    Icon for Cumulonimbus rankCumulonimbus

    Not sure what your concerns are: Is it that you think a conventional HTTP monitor will not take out a hung server out of the server pool quick enough?

     

  • If its hung and the F5 marks it as down, then am sure there is an iRule where you can disable it based on this condition. As uni mentioned, if its disabled the F5 wont send out monitor probes. Think this satisfies your requirement.

     

  • uni's avatar
    uni
    Icon for Altostratus rankAltostratus

    Presumably the server was still acknowledging the TCP SYN requests. TCP half-open is rarely a good choice of monitor.

     

    Consider what you would consider an indicator that the JVM is not hung, and create a monitor accordingly. If you can't use an http monitor (with send and receive strings), see if you can devise a TCP monitor with send and receive strings.

     

  • JG's avatar
    JG
    Icon for Cumulonimbus rankCumulonimbus

    A "hung" serve is perhaps too general a description, and you need to find out exactly what made the server hang and in what way. For existing requests might be taking a long time to process, the OS might still be responsive, and the jvm might still be taking new incoming requests but was just not able to process them, in which case a TCP Half Open monitor would not be effective if not making things worse.

     

    You can just create a simple HTTP monitor modeled after a generic one, using a rare random string, e.g. "/xkxjskdlskfdjgf" as the request path; if you get an error response, most likely "404 Not Found", then the jvm Webserver is working. Bear in mind that this monitor only checks if your webserver is processing an http request, not if your java application is actually working. For that you should really ask the app admin to provide a URL with defined output for use in your monitor.