X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/7e43a00fd352fa3f43bb9041a0782eff3bf0be0a..452021ef0c9ac746949a2ef7fd12db4c2d5fee35:/munin/nominatim_requests_querylog?ds=sidebyside diff --git a/munin/nominatim_requests_querylog b/munin/nominatim_requests_querylog index 7fe11bd0..8a103cfc 100755 --- a/munin/nominatim_requests_querylog +++ b/munin/nominatim_requests_querylog @@ -28,6 +28,9 @@ z2.type GAUGE z3.label search (no result) z3.draw STACK z3.type GAUGE +z4.label lookup +z4.draw STACK +z4.type GAUGE z4.label details z4.draw STACK z4.type GAUGE""" @@ -40,7 +43,7 @@ class LogFile: """ A query log file, unpacked. """ def __init__(self, filename): - self.fd = open(filename) + self.fd = open(filename, encoding='utf-8', errors='replace') self.len = os.path.getsize(filename) def __del__(self): @@ -121,9 +124,8 @@ class LogFile: def loglines(self): for l in self.fd: e = ENTRY_REGEX.match(l) - if e is None: - raise ValueError("Invalid log line:", l) - yield e.groupdict() + if e is not None: + yield e.groupdict() if __name__ == '__main__': @@ -135,6 +137,7 @@ if __name__ == '__main__': reverse = 0 searchy = 0 searchn = 0 + lookup = 0 details = 0 if 'NOMINATIM_QUERYLOG' in os.environ: lf = LogFile(os.environ['NOMINATIM_QUERYLOG']) @@ -147,6 +150,8 @@ if __name__ == '__main__': searchn += 1 else: searchy += 1 + elif l['type'] == 'place': + lookup +=1 else: details += 1 @@ -154,4 +159,5 @@ if __name__ == '__main__': print('z1.value', reverse/5) print('z2.value', searchy/5) print('z3.value', searchn/5) + print('z4.value', lookup/5) print('z4.value', details/5)