Last active
June 13, 2022 13:15
-
-
Save rodrickbrown/8f162607fd3fd7d4bce9b78b90095ffb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# Simple Script to check Std Dev offset | |
# of ntp servers | |
def checkStdDev(ntpsd: dict) -> None: | |
hostnames = ntpsd.keys() | |
for host in hostnames: | |
for loglines in ntpsd[host]: | |
logvalues = [ float(x) for x in loglines[2:len(loglines)] ] | |
logvalues.insert(0,loglines[0]) | |
stddev = logvalues[-1] | |
#print(host,logvalues) | |
if float(stddev) > 1: | |
print("Firing alert for {} -> Std Dev: {} ntp-server: [{}]".format(host, | |
logvalues[-1],logvalues[0])) | |
if __name__ == '__main__': | |
ntpsd = dict() | |
ntpsl = list() | |
with open('output.txt') as logdata: | |
for line in logdata: | |
line = line.rstrip() | |
if len(line) <= 1: | |
continue | |
if line.startswith("host:"): | |
ntpsl = [] | |
hostname = line.split(":")[-1] | |
continue | |
ntpsl.append(line.split(",")) | |
ntpsd[hostname] = ntpsl | |
checkStdDev(ntpsd) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment