# HG changeset patch # User Mahlon E. Smith # Date 1521751927 25200 # Node ID 1801334b8dc4e478fb895fd321973e96cd9b10a5 # Parent 1c195ed0a04928a9f4bfbd9634ec23fb38c77ab4 Fix documentation, bump copyright. diff -r 1c195ed0a049 -r 1801334b8dc4 README.md --- a/README.md Wed Aug 30 13:48:56 2017 -0700 +++ b/README.md Thu Mar 22 13:52:07 2018 -0700 @@ -16,8 +16,8 @@ of small parts and loose coupling for stability, reliability, and customizability. -This adds fping sweeping support to Arborist monitoring, which is an -efficient means to check the ICMP reachability of many, many hosts +This adds fping sweeping support to Arborist monitoring, providing an +efficient method to check the ICMP reachability of many, many hosts simultaneously. It requires the fping binary to be installed in your path. Use your @@ -26,7 +26,7 @@ ## Prerequisites -* Ruby 2.2 or better +* Ruby 2.4 or better ## Installation @@ -54,8 +54,6 @@ Arborist::Monitor 'ping check' do every 10.seconds match type: 'host' - include_down true - use :addresses exec 'fping', '-e', '-t', '150' exec_callbacks( Arborist::Monitor::FPing ) end @@ -65,7 +63,7 @@ ## License -Copyright (c) 2016, Michael Granger and Mahlon E. Smith +Copyright (c) 2016-2018, Michael Granger and Mahlon E. Smith All rights reserved. Redistribution and use in source and binary forms, with or without diff -r 1c195ed0a049 -r 1801334b8dc4 lib/arborist/monitor/fping.rb --- a/lib/arborist/monitor/fping.rb Wed Aug 30 13:48:56 2017 -0700 +++ b/lib/arborist/monitor/fping.rb Thu Mar 22 13:52:07 2018 -0700 @@ -11,8 +11,6 @@ # Arborist::Monitor 'ping check' do # every 20.seconds # match type: 'host' -# include_down true -# use :addresses # exec 'fping', '-e', '-t', '150' # exec_callbacks( Arborist::Monitor::FPing ) # end