<div dir="auto">Give me ip can set you up in Nagios for a few days or Check_MK just let me know.</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sun, Mar 28, 2021, 2:34 PM Alex Carver via Ale <<a href="mailto:ale@ale.org">ale@ale.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Bing is fine but I wanted to get a couple more destinations to check <br>
multiple paths.  But I can certainly start with Bing.<br>
<br>
I already have a script set up that writes out to a database so I can do <br>
queries on the data.<br>
<br>
On 2021-03-28 06:05, DJ-Pfulio via Ale wrote:<br>
> That's what <a href="http://bing.com" rel="noreferrer noreferrer" target="_blank">bing.com</a> is for - best to use the IP for that.<br>
> #########################<br>
> #!/bin/bash<br>
> # let other crontabs run 1st<br>
> sleep 10s;<br>
> # 1 ping only (in Sean Connery voice)<br>
> PING=`/bin/ping -c 1 204.79.197.200|/bin/grep loss`<br>
> NOW=`/bin/date +'%F-%H%M%S'`<br>
> echo "$NOW      $PING"<br>
> #########################<br>
> Then have the crontab throw it into a log file:<br>
> MAILTO=root<br>
> LOG=/var/log/internet-up.log<br>
> SCRIPT=/usr/local/sbin/internet-up.sh<br>
> */2 * * * *     root if [ -x $SCRIPT ]; then $SCRIPT >> $LOG fi<br>
> #########################<br>
> <br>
> Then you can grep the log file for<br>
> "100% packet loss"<br>
> and<br>
> "0% packet loss"<br>
> <br>
> lines to know how much downtime there is. This script is a little<br>
> more complex - the output from last week.  I rotate log files Sunday<br>
> mornings.<br>
> #########################<br>
> $ /usr/local/sbin/internet-up-summary.sh /var/log/internet-up.log.1.gz<br>
>    Using /var/log/internet-up.log.1.gz ...<br>
>    Using /tmp/internet-up.log.1<br>
>   ...<br>
>   Period 20210321-062611  - 20210328-062411<br>
>    Total Time: 10080 (min) 168.00 (hrs)<br>
>    Percent Up Time: 99.98 %<br>
>    Percent Down Time: 0.02 %<br>
>    Total Down Time: 2 min or 0.03 hrs<br>
>   Currently: UP<br>
>    Removing /tmp/internet-up.log.1<br>
> #########################<br>
> <br>
> Or did I miss the question?<br>
> <br>
> <br>
> On 3/28/21 4:21 AM, Alex Carver via Ale wrote:<br>
>> Would anyone (or multiple anyones) be willing to be a ping recipient<br>
>> for a few days?  I'm trying to determine how many times my connection<br>
>> drops and for approximately how long.  The plan is to record the<br>
>> results of a ping to each host at a rate of one per minute for a few<br>
>> days so I can spot any short or long duration drops.<br>
>><br>
>> I already know it's dropping in the early morning hours because my<br>
>> daily speed test is failing completely.  I just want to get a higher<br>
>> resolution check of connection status.<br>
> _______________________________________________<br>
> Ale mailing list<br>
> <a href="mailto:Ale@ale.org" target="_blank" rel="noreferrer">Ale@ale.org</a><br>
> <a href="https://mail.ale.org/mailman/listinfo/ale" rel="noreferrer noreferrer" target="_blank">https://mail.ale.org/mailman/listinfo/ale</a><br>
> See JOBS, ANNOUNCE and SCHOOLS lists at<br>
> <a href="http://mail.ale.org/mailman/listinfo" rel="noreferrer noreferrer" target="_blank">http://mail.ale.org/mailman/listinfo</a><br>
> <br>
<br>
_______________________________________________<br>
Ale mailing list<br>
<a href="mailto:Ale@ale.org" target="_blank" rel="noreferrer">Ale@ale.org</a><br>
<a href="https://mail.ale.org/mailman/listinfo/ale" rel="noreferrer noreferrer" target="_blank">https://mail.ale.org/mailman/listinfo/ale</a><br>
See JOBS, ANNOUNCE and SCHOOLS lists at<br>
<a href="http://mail.ale.org/mailman/listinfo" rel="noreferrer noreferrer" target="_blank">http://mail.ale.org/mailman/listinfo</a><br>
</blockquote></div>