Page MenuHomePhabricator
Paste P16127

Time for another one of my patented shell scripts
ArchivedPublic

Authored by Kormat on May 20 2021, 1:34 PM.
Tags
None
Referenced Files
F34461742: Time for another one of my pattented shell scripts
May 20 2021, 1:46 PM
F34461718: Time for another one of my pattented shell scripts
May 20 2021, 1:34 PM
Subscribers
None
#!/bin/bash
fqdn="${1:?}"
sudo -H SSH_AUTH_SOCK=/run/keyholder/proxy.sock ssh -t -o ConnectTimeout=3 root@$fqdn 'set -ex;
ps -wwwf `pgrep -P 1 -f pt-heartbeat-wikimedia`;
systemctl is-active pt-heartbeat-wikimedia && exit 0
pkill -P 1 -f pt-heartbeat-wikimedia;
systemctl start pt-heartbeat-wikimedia;
sleep 2;
systemctl is-active pt-heartbeat-wikimedia'
sudo -H mysql.py -h $fqdn heartbeat -e 'select TIMEDIFF(UTC_TIMESTAMP(6), ts) from heartbeat'

Event Timeline

Kormat changed the title of this paste from Time for another one of my pattented shell scripts to Time for another one of my patented shell scripts.