<html><head><title>Re: [smokeping-users] Alert script, with MTR</title>
<META http-equiv=Content-Type content="text/html; charset=utf-8">
</head>
<body>
<span style=" font-family:'Courier New'; font-size: 9pt;">So, I've solved my problem, and it was like I envisioned. [The alert script/MTR seems to run in the foreground and everything stops in smokeping until the script finishes, thus causing the RRD's to stop getting updated etc.]<br>
<br>
So, now, I call a bash script from smokeping like so:<br>
---<br>
to=|/etc/smokeping/call-smoke-mtr<br>
<br>
**Contents of call-smoke-mtr<br>
---<br>
/etc/smokeping/smoke-mtr "$@" &amp;<br>
---<br>
<br>
The $@ is short-hand for "output all the command line args."<br>
So we just run the real script with all the same input args we got called with, and do it in the background...<br>
<br>
The smoke-mtr is the "real" python script that actually does the MTR, generates the report and sends it.<br>
<br>
And these all go into the background and run just fine.<br>
<br>
A warning - if you kicked off some large number [I have no idea what large number might be a problem - I'd guess perhaps 100+] there's no control in my setup to keep us from consuming all the available resources and killing the smokeping monitor.<br>
<br>
Perhaps a few lines to keep the number of background processes from exceeding some threshold would be good - but I've not tinkered with that.<br>
<br>
But the above works, and prevents the choke in smokeping writing the RRD's while the MTR is running and thus no gaps in your RRD's, nogios complaining bitterly etc. :)<br>
<br>
-Greg<br>
<br>
<br>
</span><table>
<tr>
<td width=2 bgcolor= #0000ff><br>
</td>
<td><span style=" font-family:'courier new'; font-size: 9pt;">So, I've changed the thread title...<br>
<br>
A few updates.<br>
<br>
I didn't think it was load, so I tried running the Alert/MTR script *by hand/manually*, while smokeping and nagios are doing their thing - just to test what load was and what the effect was.<br>
<br>
I ran about 15 alerts/MTR runs in quick succession - all while smokeping and nagios were also running doing their work.<br>
Load does peak higher than I suspected - at ~2 for the 1 min average - but those queries complete fairly quickly and load drops back to around 0.3-0.4. [and this is way more load from the MTR script than should have been occurring in the automated runs I was doing before.]<br>
<br>
However, even with the much higher load, there were no drops in writing the smokeping RRD's and Nagios doesn't complain about them.<br>
<br>
So, I think it's safe to say that it's not a load issue - it's that for some reason when smokeping runs the "alert" script, that it has to wait for that script to finish before it goes on to do anything more - and this causes the other issues.<br>
<br>
---<br>
So, I also tried appending a "&amp;" to the smokeping alert line in the config - in the hopes that it would run the process in the background. No luck. [I'd guess it places the "&amp;" before the passed arguments and the script doesn't get any of the passed arguments it needs.]<br>
<br>
I thought about creating a script that would run a second script and append the "&amp;" to it, and run it.<br>
<br>
e.g. <br>
"MTR-Create" [a (bash?) script] - would take the arguments it was passed from smokeping [you'd call MTR-Create from the smokeping alert]<br>
MTR-Create would simply take it's arguments and call the "regular" MTR/Alert, passing along those arguments and appending "&amp;" at the end to run it in the background.<br>
<br>
I suspect I can struggle my way through doing that - but does any BASH guru know how best to do that, offhand. It could save me a lot of poking, trial and error! :)<br>
<br>
TIA!<br>
<br>
-Greg<br>
<br>
<br>
</span><table>
<tr>
<td width=2 bgcolor= #0000ff><br>
</td>
<td><span style=" font-family:'courier new'; font-size: 9pt;">Greg,<br>
<br>
How many alerts are firing when your box starts to bog? &nbsp;I have been running my fork of the mtr script for several months now with no issues. &nbsp;Matter of fact, I am now working on an expanded version that will dump the mtr's into mysql for easy access for our NOC. &nbsp;Currently, I just have the script appending a file in /var/log with each mtr.<br>
<br>
Could you be pushing the box you are running from too hard?<br>
<br>
<br>
<br>
<br>
On Wed, Jun 25, 2014 at 8:12 PM, Gregory Sloop &lt;</span><a style=" font-family:'courier new'; font-size: 9pt;" href="mailto:gregs@sloop.net">gregs@sloop.net</a><span style=" font-family:'courier new'; font-size: 9pt;">&gt; wrote:<br>
<br>
<br>
<br>
<span style=" color: #800000;"><b>FP&gt; On </b></span></span><a style=" font-family:'courier new'; font-size: 9pt; font-weight: bold;" href="tel:21.02.2014%2006">21.02.2014 06</a><span style=" font-family:'courier new'; font-size: 9pt; color: #800000;"><b>:42, Philip Wehunt wrote:<br>
&gt;&gt; I could hackishly work around this in my python but I wanted to<br>
&gt;&gt; identify if I am doing something wrong on the SP side or if it is a<br>
&gt;&gt; bug. Mainly in the spirit of KISS. I don't like to let hackish<br>
&gt;&gt; scripts linger.<br>
<br>
FP&gt; You probably found the same script on gist, but here's my version[1]<br>
FP&gt; which doesn't fail when the 6th arg is missing. It will not add "<br>
FP&gt; cleared" to the subject without the arg, but it will send you the report.<br>
<br>
FP&gt; [1]: </b></span><a style=" font-family:'courier new'; font-size: 9pt;" href="https://git.server-speed.net/users/flo/bin/tree/smokemtr.py">https://git.server-speed.net/users/flo/bin/tree/smokemtr.py</a><br>
<br>
<span style=" font-family:'courier new'; font-size: 9pt; color: #800000;"><b>FP&gt; From the documentation in smokeping_config I'd say this is a bug, but<br>
FP&gt; given I get my mails I didn't bother fixing it yet.<br>
<br>
</b><span style=" color: #000000;">Florian </span></span><a style=" color: #000000; font-family:'courier new'; font-size: 9pt;" href="http://et.al">et.al</a><span style=" font-family:'courier new'; font-size: 9pt;">.<br>
<br>
First, thanks for the script. I've had to mod it a bit - my MTR isn't quite the same as yours and I want to use a non-local SMTP server and port - but those were easy mods. [MTR is in a different spot too, again easy mod.]<br>
<br>
So, I'm very excited about the prospects of automated mtr stats when a smokeping alert gets triggered - however I run into a substantial snag.<br>
<br>
I use a 60s poll in smokeping, and if I get a bunch of [smokeping] alerts that kick off, then, when each MTR takes a while to run, it stalls smokeping. <br>
<br>
This causes a ripple-effect, and a raft of nagios alerts...since I use a smokeping nagios plug-in. &nbsp;When SP stalls [running the mtr's] the RRD's go dry, and then nagios starts alerting on an "unknown" target state. ["This RRD hasn't been written to in 180s" etc.]<br>
<br>
So, is there some way I can fork off the mtr script, and allow smokeping to continue while the mtr stats are gathered and a report sent?<br>
<br>
[This is something I'm woefully un-knowledgeable about...]<br>
<br>
TIA<br>
-Greg<br>
<br>
_______________________________________________<br>
smokeping-users mailing list<br>
</span><a style=" font-family:'courier new'; font-size: 9pt;" href="mailto:smokeping-users@lists.oetiker.ch">smokeping-users@lists.oetiker.ch</a><br>
<a style=" font-family:'courier new'; font-size: 9pt;" href="https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users">https://lists.oetiker.ch/cgi-bin/listinfo/smokeping-users</a></td>
</tr>
</table>
<br><br>
<br>
<span style=" font-family:'arial'; font-size: 9pt; color: #c0c0c0;"><i>-- <br>
Gregory Sloop, Principal: Sloop Network &amp; Computer Consulting<br>
Voice: 503.251.0452 x82<br>
EMail: </i></span><a style=" font-family:'arial'; font-size: 9pt;" href="mailto:gregs@sloop.net">gregs@sloop.net</a><br>
<a style=" font-family:'arial'; font-size: 9pt;" href="http://www.sloop.net">http://www.sloop.net</a><br>
<span style=" font-family:'arial'; font-size: 9pt; color: #c0c0c0;"><i>---</td>
</tr>
</table>
<br><br>
<span style=" font-family:'arial'; color: #c0c0c0;"><i>-- <br>
Gregory Sloop, Principal: Sloop Network &amp; Computer Consulting<br>
Voice: 503.251.0452 x82<br>
EMail: </i></span><a style=" font-family:'arial';" href="mailto:gregs@sloop.net">gregs@sloop.net</a><br>
<a style=" font-family:'arial';" href="http://www.sloop.net">http://www.sloop.net</a><br>
<span style=" font-family:'arial'; color: #c0c0c0;"><i>---</body></html>