diff options
-rwxr-xr-x | main.py (renamed from bwLpStatus.py) | 12 | ||||
-rw-r--r-- | template.html (renamed from bwlpMonitor_template.html) | 0 |
2 files changed, 6 insertions, 6 deletions
@@ -150,9 +150,9 @@ def thrift(name, ip, port, server): # Parses the log from the logfile. Fills the logEntries array. def parseLog(): global logEntries - if not (os.path.exists('bwLpStatusLog.txt')): + if not (os.path.exists('history.txt')): return - with open('bwLpStatusLog.txt', 'r') as log: + with open('history.txt', 'r') as log: for line in log: line = line.strip() entry = line.split('\t') @@ -164,7 +164,7 @@ def parseLog(): # Writes updated log in the logfile. def writeLog(): - with open('bwLpStatusLog.txt', 'a') as log: + with open('history.txt', 'a') as log: for entry in logEntries[newLogIndex:]: log_string = entry.date + '\t' + entry.service + '\t' + entry.state + '\t' + entry.host log_string += '\t' + str(entry.msg) @@ -261,11 +261,11 @@ for entry in reversed(logEntries[cut_amount:]): + entry.msg + '</div></div></div>') # Copy the .html file and replace the %CONTENT% to generate the final html file. -shutil.copyfile('bwlpMonitor_template.html', 'bwlpMonitor.html') +shutil.copyfile('template.html', 'status.html') # Replace the %CONTENT% in the template with the actual html code. -html = open('bwlpMonitor_template.html') -html2 = open('bwlpMonitor.html', 'w') +html = open('template.html') +html2 = open('status.html', 'w') for line in html: html2.write(line.replace('%CONTENT%', code).replace('%LOG%', log)) diff --git a/bwlpMonitor_template.html b/template.html index f05c233..f05c233 100644 --- a/bwlpMonitor_template.html +++ b/template.html |