<div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Oct 25, 2021 at 9:34 PM Kyle O'Donnell <<a href="mailto:kyleo@0b10.mx">kyleo@0b10.mx</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Finally got around to working on this.<br>
<br>
I spoke with someone on the #cluterslabs IRC channel who mentioned that the monitor_scripts param does indeed run at some frequency (op monitor timeout=? interval=?), not just during the "start" and "migrate_from" actions.<br>
<br>
The monitor_scripts param does not support scripts with command line args, just a space delimited list for running multiple scripts. This means that each VirtualDomain resource needs its own script to be able to define the ${DOMAIN_NAME}.  I found that a bit annoying so I created a symlink to a wrapper script using the ${DOMAIN_NAME} as the first part of the filename and a separator for awk:<br>
<br></blockquote><div>The scripts being called by the monitor operation should inherit the environment from the monitor so that you should be able to use these variables.</div><div><br></div><div>Klaus </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
ln -s /path/to/wrapper_script.sh /path/to/wrapper/myvmhostname_____wrapper_script.sh<br>
<br>
and in my wrapper_script.sh:<br>
#!/bin/bash<br>
DOMAIN_NAME=$(basename "$0" |awk -F'____' '{print $1}')<br>
/path/to/myscript.sh -H ${DOMAIN_NAME} -C guest-get-time -l 25 -w 1<br>
<br>
(a bit hack-y but better than creating 1 script per vm resource and modifying it with the ${DOMAIN_NAME})<br>
<br>
Then creating the cluster resource:<br>
pcs resource create myvmhostname VirtualDomain config="/path/to/myvmhostname/myvmhostname.xml" hypervisor="qemu:///system" migration_transport="ssh" force_stop="false" monitor_scripts="/path/to/wrapper/myvmhostname_____wrapper_script.sh" meta allow-migrate="true" target-role="Stopped" op migrate_from timeout=90s interval=0s op migrate_to timeout=120s interval=0s op monitor timeout=40s interval=10s op start timeout=90s interval=0s op stop timeout=90s interval=0s<br>
<br>
‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐<br>
<br>
On Sunday, June 6th, 2021 at 16:56, Kyle O'Donnell <<a href="mailto:kyleo@0b10.mx" target="_blank">kyleo@0b10.mx</a>> wrote:<br>
<br>
> Let me know if there is a better approach to the following problem. When the virtual machine does not respond to a state query I want the cluster to kick it<br>
><br>
> I could not find any useful docs for using the nagios plugins. After reading the documentation about running a custom script via the "monitor" function in the RA I determined that would not meet my requirements as it's only run on start and migrate(unless I read it incorrectly?).<br>
><br>
> Here is what I did (im on ubuntu 20.04):<br>
><br>
> cp /usr/lib/ocf/resource.d/heartbeat/VirtualDomain /usr/lib/ocf/resource.d/heartbeat/MyVirtDomain<br>
><br>
> cp /usr/share/resource-agents/ocft/configs/VirtualDomain cp /usr/share/resource-agents/ocft/configs/MyVirtDomain<br>
><br>
> sed -i 's/VirtualDomain/MyVirtDomain/g' /usr/lib/ocf/resource.d/heartbeat/MyVirtDomain<br>
><br>
> sed -i 's/VirtualDomain/MyVirtDomain/g' /usr/share/resource-agents/ocft/configs/MyVirtDomain<br>
><br>
> edited function MyVirtDomain_status in /usr/lib/ocf/resource.d/heartbeat/MyVirtDomain, adding the following to the status case running|paused|idle|blocked|"in shutdown")<br>
><br>
> FROM<br>
><br>
> running|paused|idle|blocked|"in shutdown")<br>
><br>
> # running: domain is currently actively consuming cycles<br>
><br>
> # paused: domain is paused (suspended)<br>
><br>
> # idle: domain is running but idle<br>
><br>
> # blocked: synonym for idle used by legacy Xen versions<br>
><br>
> # in shutdown: the domain is in process of shutting down, but has not completely shutdown or crashed.<br>
><br>
> ocf_log debug "Virtual domain $DOMAIN_NAME is currently $status."<br>
><br>
> rc=$OCF_SUCCESS<br>
><br>
> TO<br>
><br>
> running|paused|idle|blocked|"in shutdown")<br>
><br>
> # running: domain is currently actively consuming cycles<br>
><br>
> # paused: domain is paused (suspended)<br>
><br>
> # idle: domain is running but idle<br>
><br>
> # blocked: synonym for idle used by legacy Xen versions<br>
><br>
> # in shutdown: the domain is in process of shutting down, but has not completely shutdown or crashed.<br>
><br>
> custom_chk=$(/path/to/myscript.sh -H $DOMAIN_NAME -C guest-get-time -l 25 -w 1)<br>
><br>
> custom_rc=$?<br>
><br>
> if [ ${custom_rc} -eq 0 ]; then<br>
><br>
> ocf_log debug "Virtual domain $DOMAIN_NAME is currently $status."<br>
><br>
> rc=$OCF_SUCCESS<br>
><br>
> else<br>
><br>
> ocf_log debug "Virtual domain $DOMAIN_NAME is currently ${custom_chk}."<br>
><br>
> rc=$OCF_ERR_GENERIC<br>
><br>
> fi<br>
><br>
> The custom script uses the qemu-guest-agent in my guest, passing the parameter to grab the guest's time (seems to be most universal [windows, centos6, ubuntu, centos 7]). Runs 25 loops, sleeps 1 second between iterations, exit 0 as soon as the agent responds with the time and exit 1 after the 25th loop, which are OCF_SUCCESS and OCF_ERR_GENERIC based on docs.<br>
><br>
> /path/to/myscript.sh -H myvm -C guest-get-time -l 25 -w 1<br>
> =========================================================<br>
><br>
> [GOOD] - myvm virsh qemu-agent-command guest-get-time output: {"return":1623011582178375000}<br>
><br>
> or when its not responding:<br>
><br>
> /path/to/myscript.sh -H myvm -C guest-get-time -l 25 -w 1<br>
> =========================================================<br>
><br>
> [BAD] - myvm virsh qemu-agent-command guest-get-time output: error: Guest agent is not responding: QEMU guest agent is not connected<br>
><br>
> [BAD] - myvm virsh qemu-agent-command guest-get-time output: error: Guest agent is not responding: QEMU guest agent is not connected<br>
><br>
> [BAD] - myvm virsh qemu-agent-command guest-get-time output: error: Guest agent is not responding: QEMU guest agent is not connected<br>
><br>
> [BAD] - myvm virsh qemu-agent-command guest-get-time output: error: Guest agent is not responding: QEMU guest agent is not connected<br>
><br>
> ... (exits after 25th or<br>
><br>
> [GOOD] - myvm virsh qemu-agent-command guest-get-time output: {"return":1623011582178375000}<br>
><br>
> and when the vm isnt running:<br>
><br>
> /path/to/myscript.sh -H myvm -C guest-get-time -l 25 -w 1<br>
> =========================================================<br>
><br>
> [BAD] - myvm virsh qemu-agent-command guest-get-time output: error: failed to get domain 'myvm'<br>
><br>
> I updated my test vm to use the new RA, updated the status timeout to 40s from default of 30s just in case.<br>
><br>
> I'd like to be able to update the parameters to myscript.sh via crm configure edit at some point, but will figure that out later...<br>
><br>
> My test:<br>
><br>
> reboot the VM from within the OS, hit escape so that I enter the boot mode prompt... after ~30 seconds the cluster decides the resource is having a problem, marks it as failed, and restarts the virtual machine (on the same node -- which in my case in desirable), once the guest is back up and responding the cluster reports the VM as Started<br>
><br>
> I still have plenty more testing to do and will keep the list posted on progress.<br>
><br>
> -Kyle<br>
><br>
> ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐<br>
><br>
> On Thursday, May 27th, 2021 at 05:34, Kyle O'Donnell <a href="mailto:kyleo@0b10.mx" target="_blank">kyleo@0b10.mx</a> wrote:<br>
><br>
> > guest-get-fsinfo doesn't seem to work on older agents (centos6) I've found guest-get-time more universal.<br>
> ><br>
> > Also, found this helpful thread on using monitor_scripts which is part of the VirtualDomain RA<br>
> ><br>
> > <a href="https://linux-ha-dev.linux-ha.narkive.com/yxvySDA2/monitor-scripts-parameter-for-the-virtualdomain-ra-was-re-linux-ha-ocf-resource-agent-for-kvm" rel="noreferrer" target="_blank">https://linux-ha-dev.linux-ha.narkive.com/yxvySDA2/monitor-scripts-parameter-for-the-virtualdomain-ra-was-re-linux-ha-ocf-resource-agent-for-kvm</a><br>
> ><br>
> > ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐<br>
> ><br>
> > On Sunday, May 16th, 2021 at 22:49, Kyle O'Donnell <a href="mailto:kyleo@0b10.mx" target="_blank">kyleo@0b10.mx</a> wrote:<br>
> ><br>
> > > I am thinking about using the qemu-guest-agent to run one of the available commands to determine the health of the OS inside<br>
> > ><br>
> > > virsh qemu-agent-command myvm --pretty '{"execute":"guest-get-fsinfo"}'<br>
> > ><br>
> > > <a href="https://qemu-project.gitlab.io/qemu/interop/qemu-ga-ref.html" rel="noreferrer" target="_blank">https://qemu-project.gitlab.io/qemu/interop/qemu-ga-ref.html</a><br>
> > ><br>
> > > ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐<br>
> > ><br>
> > > On Thursday, May 13th, 2021 at 01:28, Andrei Borzenkov <a href="mailto:arvidjaar@gmail.com" target="_blank">arvidjaar@gmail.com</a> wrote:<br>
> > ><br>
> > > > On 03.05.2021 09:48, Ulrich Windl wrote:<br>
> > > ><br>
> > > > > > > > Ken Gaillot <a href="mailto:kgaillot@redhat.com" target="_blank">kgaillot@redhat.com</a> schrieb am 30.04.2021 um 16:57 in<br>
> > > > > > > ><br>
> > > > > > > > Nachricht<br>
> > > > > > > ><br>
> > > > > > > > <a href="mailto:3acef4bc31923fb019619c713300444c2dcd354a.camel@redhat.com" target="_blank">3acef4bc31923fb019619c713300444c2dcd354a.camel@redhat.com</a>:<br>
> > > > > > > ><br>
> > > > > > > > On Fri, 2021‑04‑30 at 11:00 +0100, lejeczek wrote:<br>
> > > > > ><br>
> > > > > > > Hi guys<br>
> > > > > > ><br>
> > > > > > > I'd like to ask around for thoughts & suggestions on any<br>
> > > > > > ><br>
> > > > > > > semi/official ways to monitor VirtualDomain.<br>
> > > > > > ><br>
> > > > > > > Something beyond what included RA does ‑ such as actual<br>
> > > > > > ><br>
> > > > > > > health testing of and communication with VM's OS.<br>
> > > > > > ><br>
> > > > > > > many thanks, L.<br>
> > > > > ><br>
> > > > > > This use case led to a Pacemaker feature many moons ago ...<br>
> > > > > ><br>
> > > > > > Pacemaker supports nagios plug‑ins as a resource type (e.g.<br>
> > > > > ><br>
> > > > > > nagios:check_apache_status). These are service checks usually used with<br>
> > > > > ><br>
> > > > > > monitoring software such as nagios, icinga, etc.<br>
> > > > > ><br>
> > > > > > If the service being monitored is inside a VirtualDomain, named vm1 for<br>
> > > > > ><br>
> > > > > > example, you can configure the nagios resource with the resource meta‑<br>
> > > > > ><br>
> > > > > > attribute container="vm1". If the nagios check fails, Pacemaker will<br>
> > > > > ><br>
> > > > > > restart vm1.<br>
> > > > ><br>
> > > > > "check fails" mans WARNING, CRITICAL, or UNKNOWN? ;-)<br>
> > > ><br>
> > > > switch (rc) {<br>
> > > ><br>
> > > > case NAGIOS_STATE_OK:<br>
> > > ><br>
> > > > return PCMK_OCF_OK;<br>
> > > ><br>
> > > > case NAGIOS_INSUFFICIENT_PRIV:<br>
> > > ><br>
> > > > return PCMK_OCF_INSUFFICIENT_PRIV;<br>
> > > ><br>
> > > > case NAGIOS_NOT_INSTALLED:<br>
> > > ><br>
> > > > return PCMK_OCF_NOT_INSTALLED;<br>
> > > ><br>
> > > > case NAGIOS_STATE_WARNING:<br>
> > > ><br>
> > > > case NAGIOS_STATE_CRITICAL:<br>
> > > ><br>
> > > > case NAGIOS_STATE_UNKNOWN:<br>
> > > ><br>
> > > > case NAGIOS_STATE_DEPENDENT:<br>
> > > ><br>
> > > > default:<br>
> > > ><br>
> > > > return PCMK_OCF_UNKNOWN_ERROR;<br>
> > > ><br>
> > > > }<br>
> > > ><br>
> > > > return PCMK_OCF_UNKNOWN_ERROR;<br>
> > > ><br>
> > > > Manage your subscription:<br>
> > > ><br>
> > > > <a href="https://lists.clusterlabs.org/mailman/listinfo/users" rel="noreferrer" target="_blank">https://lists.clusterlabs.org/mailman/listinfo/users</a><br>
> > > ><br>
> > > > ClusterLabs home: <a href="https://www.clusterlabs.org/" rel="noreferrer" target="_blank">https://www.clusterlabs.org/</a><br>
><br>
> Manage your subscription:<br>
><br>
> <a href="https://lists.clusterlabs.org/mailman/listinfo/users" rel="noreferrer" target="_blank">https://lists.clusterlabs.org/mailman/listinfo/users</a><br>
><br>
> ClusterLabs home: <a href="https://www.clusterlabs.org/" rel="noreferrer" target="_blank">https://www.clusterlabs.org/</a><br>
_______________________________________________<br>
Manage your subscription:<br>
<a href="https://lists.clusterlabs.org/mailman/listinfo/users" rel="noreferrer" target="_blank">https://lists.clusterlabs.org/mailman/listinfo/users</a><br>
<br>
ClusterLabs home: <a href="https://www.clusterlabs.org/" rel="noreferrer" target="_blank">https://www.clusterlabs.org/</a><br>
</blockquote></div></div>