Merge "Add healthcheck script for memcached"

This commit is contained in:
Zuul 2018-02-22 20:05:08 +00:00 committed by Gerrit Code Review
commit 21eb3f6aeb

5
healthcheck/memcached Normal file
View File

@ -0,0 +1,5 @@
#!/bin/bash
listen_addr=$(awk 'match($0, /-l +([0-9a-fA-F\.\:]+) /, a) {print a[1]}' /etc/sysconfig/memcached)
echo "stats" | socat - TCP:$listen_addr:11211
exit