Search found 6 matches
- Wed Mar 23, 2016 8:19 am
- Forum: Open Source Nagios Projects
- Topic: HTTP - CRITICAL - Socket timeout after 10 seconds
- Replies: 4
- Views: 9063
Re: HTTP - CRITICAL - Socket timeout after 10 seconds
For the check on the HTTP host/service, try dropping the '-S' from the check command so it looks like this check_http! -H oururl.com -u "/xxx-yyy/aaa-bbb.page?execution=e1s1" As a follow-up to my previous post, I decided to try this just for kicks and now I am getting the "CRITICAL -...
- Wed Mar 23, 2016 6:46 am
- Forum: Open Source Nagios Projects
- Topic: HTTP - CRITICAL - Socket timeout after 10 seconds
- Replies: 4
- Views: 9063
Re: HTTP - CRITICAL - Socket timeout after 10 seconds
Thanks, but that is not the service definition that's causing the issue, but rather this one: define service{ use generic-service ; Inherit default value$ hostgroups web-hosts-pub servicegroups webservices service_description HTTP check_command check_http! -H $HOSTADDRESS$ -I $HOSTADDRESS$ -e HTTP/1...
- Tue Mar 22, 2016 12:50 pm
- Forum: Open Source Nagios Projects
- Topic: HTTP - CRITICAL - Socket timeout after 10 seconds
- Replies: 4
- Views: 9063
HTTP - CRITICAL - Socket timeout after 10 seconds
I have a situation where I'm monitoring both the HTTP and HTTPS services on a host. For some reason which I'm finding hard to explain, the HTTP service is returning the following error: "CRITICAL - Socket timeout after 10 seconds." The HTTPS service, however, is reporting OK. Based on a fe...
- Wed Mar 02, 2016 8:08 am
- Forum: Open Source Nagios Projects
- Topic: check_http - HTTP WARNING: HTTP/1.1 400 Bad Request
- Replies: 5
- Views: 6214
Re: check_http - HTTP WARNING: HTTP/1.1 400 Bad Request
Separating the FQDN and the remainder of the URL did the trick. Thanks!
- Tue Mar 01, 2016 10:22 am
- Forum: Open Source Nagios Projects
- Topic: check_http - HTTP WARNING: HTTP/1.1 400 Bad Request
- Replies: 5
- Views: 6214
Re: check_http - HTTP WARNING: HTTP/1.1 400 Bad Request
Code: Select all
# 'check_http' command definition
define command{
command_name check_http
command_line $USER1$/check_http -I $HOSTADDRESS$ $ARG1$
}
- Tue Mar 01, 2016 9:48 am
- Forum: Open Source Nagios Projects
- Topic: check_http - HTTP WARNING: HTTP/1.1 400 Bad Request
- Replies: 5
- Views: 6214
check_http - HTTP WARNING: HTTP/1.1 400 Bad Request
I've set up monitoring for a specific HTTPS website, but am getting the following warning on the Nagios web interface: HTTP WARNING: HTTP/1.1 400 Bad Request - 513 bytes in 0.159 second response time Here's what the service definition looks like: define service{ use generic-service ; Inherit default...