Technical Forum
Ask questions. Discover Answers.
cancel
Showing results for 
Search instead for 
Did you mean: 

custom Monitor

MikeyG
Nimbostratus
Nimbostratus

I am trying to create a custom monitor for the URL https://telecom-phone.com wanting to check for https://telecom-phone.com/security/loggerd off, 200 OK

3 REPLIES 3

Create a simple https monitor & query for the monitoring page.

 

create ltm monitor https TELECOM-HTTPS { interval 30 timeout 91 send "GET /security/loggerd HTTP/1.1\r\nUser-Agent: BigIP\r\nHost: telecom-phone.com\r\nConnection: close\r\n\r\n" recv "200 OK" recv-disable "Drain" }

& bind this monitor to the LTM pool.

Thank you, i was damn close but your example helped me understand my mistake.

Send String - GET /security/loggerd HTTP/1.1\r\nHost: telecom-phone.com \r\nConnection: Close\r\n\r\n

Receive String - 200

 

Try to configure custom monitoring using above parameters and test.