5c927671ebda7c1f56363bc29286646f4928a8c8 lrnassar Wed Mar 19 16:44:18 2025 -0700 Fixing typo. diff --git src/utils/qa/hgTracksTiming.py src/utils/qa/hgTracksTiming.py index d575d3e68ce..8c31a6c25c1 100644 --- src/utils/qa/hgTracksTiming.py +++ src/utils/qa/hgTracksTiming.py @@ -1,21 +1,21 @@ # Meant as a substitute for hgTracksRandom # Queries a list of GB servers (crontab set to every 15m) and documents their load time # as well as their status code, if they took too long to load, or if hgTracks display did not # fully load. Alerts with a printed error when a negative condition is encountered. # Each run it reads the list of all observed times and regenerates a table and graphs displaying -# the change of server load times over time. Once per month is reports as a reminder to check for abnormalities +# the change of server load times over time. Once per month it reports as a reminder to check for abnormalities # If running on a new user, you will need to copy the index.html page from qateam and run the function here once: makeSymLinks(user,save_dir) import requests, subprocess, time, datetime, getpass, os, urllib3, matplotlib import matplotlib.pyplot as plt import matplotlib.ticker as mticker import matplotlib.dates as mdates import matplotlib from collections import defaultdict from collections import deque def bash(cmd): """Run the cmd in bash subprocess""" try: rawBashOutput = subprocess.run(cmd, check=True, shell=True,\ stdout=subprocess.PIPE, universal_newlines=True, stderr=subprocess.STDOUT)