Re: Hack for monitoring NTP servers

2024-04-15 Thread Hal Murray via devel
James Browning said: > If you were thinking of adding way too many servers you might want to replace > the bubble sort around lines 1709-1728 of ntp_proto.c That code is only sorting the servers that get used. Anything with noselect got tossed back at line 1619. if (peer_unfit(p

Re: Hack for monitoring NTP servers

2024-04-15 Thread James Browning via devel
> On 04/11/2024 12:39 PM PDT Hal Murray via devel wrote: > > > If somebody feels like hacking, something like this should be fun. > > The idea is to setup a ntpd server watching the servers you want to monitor. > (noselect on the server line does that) > > The new code is a program that wat

Re: Hack for monitoring NTP servers

2024-04-12 Thread Gary E. Miller via devel
Yo Richard! On Fri, 12 Apr 2024 14:12:41 -0500 Richard Laager via devel wrote: > On 2024-04-11 14:39, Hal Murray via devel wrote: > > If somebody feels like hacking, something like this should be fun. > > > > The idea is to setup a ntpd server watching the servers you want to > > monitor. (nose

Re: Hack for monitoring NTP servers

2024-04-12 Thread Richard Laager via devel
On 2024-04-11 14:39, Hal Murray via devel wrote: If somebody feels like hacking, something like this should be fun. The idea is to setup a ntpd server watching the servers you want to monitor. (noselect on the server line does that) The new code is a program that watches that server to see if t

Hack for monitoring NTP servers

2024-04-11 Thread Hal Murray via devel
If somebody feels like hacking, something like this should be fun. The idea is to setup a ntpd server watching the servers you want to monitor. (noselect on the server line does that) The new code is a program that watches that server to see if the servers to be monitored are responding corr

Monitoring NTP servers

2016-05-23 Thread Hal Murray
cbwie...@gmail.com said: > One thing I'm trying to develop is a method to track multiple system > simultaneously. I'm thinking of a monitor system with its own time base > using NTP to query state from each of the test systems. > I may write the first version in Python wrapping ntpdig. You obv