Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

This article provides information on Livestatus queries.

LAST TESTED ON CHECKMK 2.0.0P1

Livestatus queries over network

For SSH connection

OMD[mysite]~# ssh -t root@host ''su -site' "lq 'GET hosts\nColumns: name'"


For TLS connection

OMD[mysite]~# echo -e "GET hosts\nColumns: name\n"| openssl s_client -connect localhost:6999 -ign_eof -quiet 

For TLS connection with certificate verification

OMD[mysite]~# echo -e "GET hosts\nColumns: name\n\n" | openssl s_client  -CAfile /tmp/s1.pem -verify 3 -quiet -verify_hostname s1 -verify_return_error -connect localhost:6560 2>/dev/null

please replace /tmp/s1.pem with the site name and s1 with the name of the site


For Plain text

OMD[mysite]~# echo -e  "GET hosts\nColumns: name\n" | nc -q1 127.0.0.1 6999  

OMD[mysite]~# telnet 127.0.0.1 6999


  • No labels