Hi All, We have vertical kubernetes cluster and put F5 (GTM/LTM) in front of the cluster. Service to service call will be go to GTM/LTM before go to micro service (workload/pod): service A -> GTM/L...
-v for verbosity
-k to ignore certificate issues
-d to issue a POST with POST payload data
curl -vk https://www.example.com/foo -d 'user=admin&password=admin'
-X to explicitly define the request method
curl -vkX POST https://www.example.com/foo/bar -d 'user=admin&password=admin'
The -v option is going to your best tool for troubleshooting monitors. You'll of course want to perform captures to see what the monitor is actually sending and receiving, andcurl -v will allow you to simulate these requests.