Forum Discussion

Gareth_Orley_31's avatar
Gareth_Orley_31
Icon for Nimbostratus rankNimbostratus
Feb 19, 2010

Health Monitor Help

 

Hi

 

 

I'm trying to create a health monitor on a LTM on v10.1

 

 

The URL via a browser is:

 

 

http://10.10.10.41:8015/probe_dicom_c_echo/configure.html?alias=WFM1

 

 

The Health monitor in bigip.conf

 

 

monitor Mon_XXXX_WFM_HTTP_1 {

 

defaults from http

 

dest 10.10.10.41:8015

 

recv "HTTP/1.1 200 OK"

 

send "GET /probe_dicom_c_echo/configure.html?alias=WFM1"

 

}

 

 

I have attached this to the node 10.10.10.41, but I'm getting a fail, when I know the sites working. So I'm thinking its my GET string or recv.

 

 

Any help would be great,

 

 

thanks

 

g
  • hoolio's avatar
    hoolio
    Icon for Cirrostratus rankCirrostratus
    Hi Gareth,

     

     

    You can remove the destination IP and port from the monitor. If you're applying it to that pool member, bigd will automatically use the pool member's IP and port to make the request.

     

     

    I'd guess the reason the monitor is failing is that you're sending an HTTP 0.9 request (no version specified). Can you try:

     

     

    GET /probe_dicom_c_echo/configure.html?alias=WFM1 HTTP/1.1\r\nHost: \r\nConnection: Close

     

     

    and see if the monitor marks the pool member up?

     

     

    Aaron