loganalysis.py 1.04 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import sys
import re
import requests
import json

prelines = 10
postlines = 10

def find_errors_in_log_file():
  if len(sys.argv) < 2:
    print("Usage: python loganalysis.py <filename>")
    return

  log_file_path = sys.argv[1]
  with open(log_file_path, 'r') as log_file:
    log_lines = log_file.readlines()

  error_lines = []
  for i, line in enumerate(log_lines):
    if re.search('error', line, re.IGNORECASE):
      error_lines.append(i)

  error_logs = []
  for error_line in error_lines:
    start_index = max(0, error_line - prelines)
    end_index = min(len(log_lines), error_line + postlines)
    error_logs.extend(log_lines[start_index:end_index])

  return error_logs

error_logs = find_errors_in_log_file()

data = {
  "prompt": "\n".join(error_logs), 
  "model": "mattw/loganalyzer"
}


response = requests.post("http://localhost:11434/api/generate", json=data, stream=True)
for line in response.iter_lines():
  if line:
    json_data = json.loads(line)
    if json_data['done'] == False:
Matt Williams's avatar
Matt Williams committed
44
      print(json_data['response'], end='', flush=True)
45