summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-07-04 11:25:17 +0300
committerPaul Buetow <paul@buetow.org>2025-07-04 11:25:17 +0300
commit0645644bb945c4ce4707252c38a8d454b2ac9567 (patch)
treeaaff70f07cb07b85cbdcb53faf35c13ca40292ef
parentaa2f547cf2b6136dc60f541f30c27a426ec7c6c8 (diff)
chore: clean up temporary files and reorganize documentation
- Delete temporary benchmark shell scripts (7 files) - Delete temporary log files from root and integrationtests - Delete .out test output files - Delete temporary Python analysis scripts - Move documentation to doc/ directory: - TURBOBOOST_OPTIMIZATION.md → doc/turboboost_optimization.md - performance_optimization_summary.md → doc/performance_optimization_summary.md - integrationtests/REFACTORING_GUIDE.md → doc/refactoring_guide.md - benchmarks/PROFILING.md → doc/profiling.md 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
-rwxr-xr-xanalyze_turbo_profiles.py160
-rwxr-xr-xcompare_turbo_benchmarks.py107
-rw-r--r--doc/performance_optimization_summary.md (renamed from performance_optimization_summary.md)0
-rw-r--r--doc/profiling.md (renamed from benchmarks/PROFILING.md)0
-rw-r--r--doc/refactoring_guide.md (renamed from integrationtests/REFACTORING_GUIDE.md)0
-rw-r--r--doc/turboboost_optimization.md (renamed from TURBOBOOST_OPTIMIZATION.md)0
-rw-r--r--integrationtests/final_test_server.log2
-rw-r--r--integrationtests/mapr_testdata.log597
-rw-r--r--integrationtests/server_debug.log12545
-rw-r--r--integrationtests/server_manual.log2
-rw-r--r--server_test2.log2645
-rw-r--r--server_test3.log4
12 files changed, 0 insertions, 16062 deletions
diff --git a/analyze_turbo_profiles.py b/analyze_turbo_profiles.py
deleted file mode 100755
index 8a06d7c..0000000
--- a/analyze_turbo_profiles.py
+++ /dev/null
@@ -1,160 +0,0 @@
-#!/usr/bin/env python3
-import subprocess
-import re
-import sys
-import os
-
-def run_pprof_command(profile_path, command_args):
- """Run go tool pprof and return output"""
- cmd = ['go', 'tool', 'pprof'] + command_args + [profile_path]
- try:
- result = subprocess.run(cmd, capture_output=True, text=True, check=True)
- return result.stdout
- except subprocess.CalledProcessError as e:
- print(f"Error running pprof: {e}")
- return None
-
-def extract_top_functions(profile_path, n=10):
- """Extract top N functions from CPU profile"""
- output = run_pprof_command(profile_path, ['-top', f'-nodecount={n}'])
- if not output:
- return []
-
- functions = []
- in_data = False
- for line in output.split('\n'):
- if 'flat flat%' in line:
- in_data = True
- continue
- if in_data and line.strip():
- parts = line.split()
- if len(parts) >= 5:
- flat_time = parts[0]
- flat_pct = parts[1]
- func_name = ' '.join(parts[4:])
- functions.append((func_name, flat_pct, flat_time))
-
- return functions
-
-def get_profile_stats(profile_path):
- """Get overall profile statistics"""
- output = run_pprof_command(profile_path, ['-text', '-seconds=1'])
- if not output:
- return {}
-
- stats = {}
- for line in output.split('\n'):
- if 'Duration:' in line:
- match = re.search(r'Duration: ([\d.]+)', line)
- if match:
- stats['duration'] = float(match.group(1))
- elif 'samples' in line and 'Total' not in line:
- match = re.search(r'(\d+)', line)
- if match:
- stats['samples'] = int(match.group(1))
-
- return stats
-
-def compare_profiles(noturbo_dir, turbo_dir):
- """Compare profiles between turbo and non-turbo modes"""
- tools = ['dcat', 'dgrep', 'dmap']
-
- print("DTail Turbo Mode Profile Analysis")
- print("=" * 80)
- print()
-
- for tool in tools:
- print(f"\n{tool.upper()} CPU Profile Comparison")
- print("-" * 60)
-
- # Find CPU profiles
- noturbo_cpu = None
- turbo_cpu = None
-
- for f in os.listdir(noturbo_dir):
- if f.startswith(f'{tool}_cpu_') and f.endswith('.prof'):
- noturbo_cpu = os.path.join(noturbo_dir, f)
- break
-
- for f in os.listdir(turbo_dir):
- if f.startswith(f'{tool}_cpu_') and f.endswith('.prof'):
- turbo_cpu = os.path.join(turbo_dir, f)
- break
-
- if not noturbo_cpu or not turbo_cpu:
- print(f"Could not find CPU profiles for {tool}")
- continue
-
- # Get top functions
- noturbo_funcs = extract_top_functions(noturbo_cpu, 15)
- turbo_funcs = extract_top_functions(turbo_cpu, 15)
-
- # Create function map for comparison
- func_map = {}
- for func, pct, time in noturbo_funcs:
- func_map[func] = {'noturbo': pct, 'turbo': '0%'}
-
- for func, pct, time in turbo_funcs:
- if func in func_map:
- func_map[func]['turbo'] = pct
- else:
- func_map[func] = {'noturbo': '0%', 'turbo': pct}
-
- # Print comparison
- print(f"{'Function':<50} {'No Turbo':<10} {'Turbo':<10} {'Change':<10}")
- print("-" * 80)
-
- # Sort by no-turbo percentage
- sorted_funcs = sorted(func_map.items(),
- key=lambda x: float(x[1]['noturbo'].rstrip('%')) if x[1]['noturbo'] != '0%' else 0,
- reverse=True)
-
- for func, data in sorted_funcs[:10]:
- noturbo_pct = float(data['noturbo'].rstrip('%'))
- turbo_pct = float(data['turbo'].rstrip('%'))
- change = turbo_pct - noturbo_pct
-
- # Truncate function name if too long
- if len(func) > 48:
- func = func[:45] + '...'
-
- print(f"{func:<50} {data['noturbo']:<10} {data['turbo']:<10} {change:+.1f}%")
-
- # Check for turbo-specific functions
- print("\nTurbo Mode Specific Functions:")
- print("-" * 60)
- turbo_specific = False
- for func, pct, time in turbo_funcs[:15]:
- if 'turbo' in func.lower() or 'optimized' in func.lower() or 'channelless' in func.lower() or 'LineProcessor' in func:
- print(f"{func:<50} {pct}")
- turbo_specific = True
-
- if not turbo_specific:
- print("No turbo-specific functions found in top 15 CPU consumers")
-
- # Analyze potential bottlenecks
- print("\n\nBottleneck Analysis")
- print("=" * 80)
- print("\nKey Observations:")
- print("1. Syscall overhead: Both modes show high syscall.Syscall6 usage (25-27%)")
- print(" - This is likely from file I/O operations that turbo mode cannot optimize")
- print("2. No turbo-specific functions appear in the CPU profiles")
- print(" - Suggests turbo mode optimizations may not be activating properly")
- print("3. Runtime overhead: selectgo and channel operations still present in turbo mode")
- print(" - Indicates channel-less processing may not be fully engaged")
-
- print("\nRecommendations:")
- print("1. Verify turbo mode is actually being activated in the test scenarios")
- print("2. Check if the test data size is large enough to show turbo benefits")
- print("3. Consider profiling with larger files where channel overhead is more significant")
- print("4. Investigate why syscall overhead dominates - possibly network or disk I/O bound")
-
-if __name__ == "__main__":
- noturbo_dir = "profiles_comparison/noturbo"
- turbo_dir = "profiles_comparison/turbo"
-
- if not os.path.exists(noturbo_dir) or not os.path.exists(turbo_dir):
- print("Error: Profile directories not found")
- sys.exit(1)
-
- compare_profiles(noturbo_dir, turbo_dir) \ No newline at end of file
diff --git a/compare_turbo_benchmarks.py b/compare_turbo_benchmarks.py
deleted file mode 100755
index 7621c8c..0000000
--- a/compare_turbo_benchmarks.py
+++ /dev/null
@@ -1,107 +0,0 @@
-#!/usr/bin/env python3
-import re
-import sys
-
-def parse_benchmark_results(filename):
- results = {}
- with open(filename, 'r') as f:
- content = f.read()
-
- # Parse benchmark lines
- pattern = r'Benchmark(\w+)/(\w+)/([^-]+)-\d+\s+\d+\s+([\d.]+) ns/op\s+([\d.]+) MB/sec(?:\s+([\d.]+) hit_rate_%)?(?:\s+([\d.]+) lines/sec)?(?:\s+([\d.]+) records/sec)?'
-
- for match in re.finditer(pattern, content):
- test_type = match.group(1)
- command = match.group(2)
- params = match.group(3)
- ns_per_op = float(match.group(4))
- mb_per_sec = float(match.group(5))
- hit_rate = float(match.group(6)) if match.group(6) else None
- lines_per_sec = float(match.group(7)) if match.group(7) else None
- records_per_sec = float(match.group(8)) if match.group(8) else None
-
- key = f"{test_type}/{command}/{params}"
- results[key] = {
- 'ns_per_op': ns_per_op,
- 'mb_per_sec': mb_per_sec,
- 'hit_rate': hit_rate,
- 'lines_per_sec': lines_per_sec,
- 'records_per_sec': records_per_sec
- }
-
- return results
-
-def calculate_improvement(no_turbo, turbo):
- if no_turbo == 0:
- return 0
- return ((no_turbo - turbo) / no_turbo) * 100
-
-def main():
- no_turbo_results = parse_benchmark_results('benchmark_noturbo.txt')
- turbo_results = parse_benchmark_results('benchmark_turbo.txt')
-
- print("DTail Turbo Mode Benchmark Comparison")
- print("=" * 80)
- print()
-
- # Group by command
- commands = {}
- for key in no_turbo_results.keys():
- if key in turbo_results:
- parts = key.split('/')
- command = parts[1]
- if command not in commands:
- commands[command] = []
- commands[command].append(key)
-
- for command in sorted(commands.keys()):
- print(f"\n{command} Benchmarks:")
- print("-" * 60)
- print(f"{'Test':<40} {'Metric':<15} {'No Turbo':<12} {'Turbo':<12} {'Improvement':<12}")
- print("-" * 60)
-
- for key in sorted(commands[command]):
- no_turbo = no_turbo_results[key]
- turbo = turbo_results[key]
-
- test_name = key.split('/', 2)[2]
-
- # Time improvement (lower is better)
- time_imp = calculate_improvement(no_turbo['ns_per_op'], turbo['ns_per_op'])
- print(f"{test_name:<40} {'Time (ns/op)':<15} {no_turbo['ns_per_op']:<12.0f} {turbo['ns_per_op']:<12.0f} {time_imp:>10.1f}%")
-
- # Throughput improvement (higher is better)
- mb_imp = calculate_improvement(turbo['mb_per_sec'], no_turbo['mb_per_sec'])
- print(f"{'':<40} {'MB/sec':<15} {no_turbo['mb_per_sec']:<12.2f} {turbo['mb_per_sec']:<12.2f} {-mb_imp:>10.1f}%")
-
- if no_turbo['lines_per_sec']:
- lines_imp = calculate_improvement(turbo['lines_per_sec'], no_turbo['lines_per_sec'])
- print(f"{'':<40} {'Lines/sec':<15} {no_turbo['lines_per_sec']:<12.0f} {turbo['lines_per_sec']:<12.0f} {-lines_imp:>10.1f}%")
-
- if no_turbo['records_per_sec']:
- records_imp = calculate_improvement(turbo['records_per_sec'], no_turbo['records_per_sec'])
- print(f"{'':<40} {'Records/sec':<15} {no_turbo['records_per_sec']:<12.0f} {turbo['records_per_sec']:<12.0f} {-records_imp:>10.1f}%")
-
- print()
-
- # Summary statistics
- print("\nSummary:")
- print("-" * 60)
-
- total_time_improvement = []
- for key in no_turbo_results.keys():
- if key in turbo_results:
- imp = calculate_improvement(no_turbo_results[key]['ns_per_op'], turbo_results[key]['ns_per_op'])
- total_time_improvement.append(imp)
-
- if total_time_improvement:
- avg_improvement = sum(total_time_improvement) / len(total_time_improvement)
- print(f"Average time improvement: {avg_improvement:.1f}%")
- print(f"Best improvement: {max(total_time_improvement):.1f}%")
- print(f"Worst improvement: {min(total_time_improvement):.1f}%")
-
- print("\nNote: Positive improvements mean turbo mode is faster/better.")
- print(" Negative improvements mean turbo mode is slower/worse.")
-
-if __name__ == "__main__":
- main() \ No newline at end of file
diff --git a/performance_optimization_summary.md b/doc/performance_optimization_summary.md
index 9d1162b..9d1162b 100644
--- a/performance_optimization_summary.md
+++ b/doc/performance_optimization_summary.md
diff --git a/benchmarks/PROFILING.md b/doc/profiling.md
index 7925fb3..7925fb3 100644
--- a/benchmarks/PROFILING.md
+++ b/doc/profiling.md
diff --git a/integrationtests/REFACTORING_GUIDE.md b/doc/refactoring_guide.md
index 88c77d5..88c77d5 100644
--- a/integrationtests/REFACTORING_GUIDE.md
+++ b/doc/refactoring_guide.md
diff --git a/TURBOBOOST_OPTIMIZATION.md b/doc/turboboost_optimization.md
index f13943f..f13943f 100644
--- a/TURBOBOOST_OPTIMIZATION.md
+++ b/doc/turboboost_optimization.md
diff --git a/integrationtests/final_test_server.log b/integrationtests/final_test_server.log
deleted file mode 100644
index e6e1575..0000000
--- a/integrationtests/final_test_server.log
+++ /dev/null
@@ -1,2 +0,0 @@
-DTail 4.3.2 Protocol 4.1 Have a lot of fun!
-ERROR|0703-164751|paul@127.0.0.1:32998|ssh: parse error in message type 0
diff --git a/integrationtests/mapr_testdata.log b/integrationtests/mapr_testdata.log
deleted file mode 100644
index bec8774..0000000
--- a/integrationtests/mapr_testdata.log
+++ /dev/null
@@ -1,597 +0,0 @@
-INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m21s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m21s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1
-INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1
-INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1
-INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1
-INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1
-INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1
-INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1
-INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1
-INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1
-INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=1
-INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m21s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|1002-071146|1|stats.go:56|8|11|7|0.19|471h0m23s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|1002-071146|1|stats.go:56|8|11|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|1002-071146|1|stats.go:56|8|11|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|1002-071147|1|stats.go:56|8|12|7|0.19|471h0m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|12|7|0.19|471h0m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|12|7|0.19|471h0m25s|MAPREDUCE:STATS|lifetimeConnections=2|currentConnections=0
-INFO|1002-071147|1|stats.go:56|8|13|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|13|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|14|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|14|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|14|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|14|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|14|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|14|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|14|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|14|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|15|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|15|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|15|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|16|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|16|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|16|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|16|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|16|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|16|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
-INFO|1002-071147|1|stats.go:56|8|16|7|0.19|471h0m24s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
-INFO|1002-071148|1|stats.go:56|8|11|7|0.19|471h0m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071148|1|stats.go:56|8|11|7|0.19|471h0m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071149|1|stats.go:56|8|11|7|0.19|471h0m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071149|1|stats.go:56|8|11|7|0.19|471h0m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071156|1|stats.go:56|8|11|7|0.24|471h0m33s|MAPREDUCE:STATS|lifetimeConnections=2|currentConnections=0
-INFO|1002-071156|1|stats.go:56|8|11|7|0.24|471h0m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071156|1|stats.go:56|8|11|7|0.24|471h0m34s|MAPREDUCE:STATS|lifetimeConnections=2|currentConnections=0
-INFO|1002-071157|1|stats.go:56|8|11|7|0.24|471h0m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071157|1|stats.go:56|8|11|7|0.24|471h0m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071157|1|stats.go:56|8|11|7|0.24|471h0m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071158|1|stats.go:56|8|11|7|0.24|471h0m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071158|1|stats.go:56|8|11|7|0.24|471h0m36s|MAPREDUCE:STATS|lifetimeConnections=2|currentConnections=0
-INFO|1002-071159|1|stats.go:56|8|11|7|0.24|471h0m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071159|1|stats.go:56|8|11|7|0.24|471h0m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071206|1|stats.go:56|8|11|7|0.20|471h0m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071206|1|stats.go:56|8|11|7|0.20|471h0m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071206|1|stats.go:56|8|11|7|0.20|471h0m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071207|1|stats.go:56|8|11|7|0.20|471h0m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071207|1|stats.go:56|8|11|7|0.20|471h0m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071208|1|stats.go:56|8|11|7|0.20|471h0m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071208|1|stats.go:56|8|11|7|0.20|471h0m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071208|1|stats.go:56|8|11|7|0.20|471h0m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071209|1|stats.go:56|8|11|7|0.20|471h0m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071209|1|stats.go:56|8|11|7|0.20|471h0m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|1002-071213|1|stats.go:56|8|12|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071213|1|stats.go:56|8|12|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071213|1|stats.go:56|8|12|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071213|1|stats.go:56|8|12|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071213|1|stats.go:56|8|12|7|0.26|471h0m50s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071213|1|stats.go:56|8|13|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071213|1|stats.go:56|8|13|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071213|1|stats.go:56|8|13|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071213|1|stats.go:56|8|15|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
-INFO|1002-071213|1|stats.go:56|8|15|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
-INFO|1002-071213|1|stats.go:56|8|15|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
-INFO|1002-071213|1|stats.go:56|8|15|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
-INFO|1002-071213|1|stats.go:56|8|15|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
-INFO|1002-071213|1|stats.go:56|8|15|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
-INFO|1002-071213|1|stats.go:56|8|15|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
-INFO|1002-071213|1|stats.go:56|8|15|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
-INFO|1002-071213|1|stats.go:56|8|15|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
-INFO|1002-071213|1|stats.go:56|8|15|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
-INFO|1002-071213|1|stats.go:56|8|16|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071213|1|stats.go:56|8|17|7|0.26|471h0m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071216|1|stats.go:56|8|11|7|0.24|471h0m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071216|1|stats.go:56|8|11|7|0.24|471h0m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071216|1|stats.go:56|8|11|7|0.24|471h0m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071217|1|stats.go:56|8|11|7|0.24|471h0m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071217|1|stats.go:56|8|11|7|0.24|471h0m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071218|1|stats.go:56|8|11|7|0.24|471h0m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071218|1|stats.go:56|8|11|7|0.24|471h0m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071218|1|stats.go:56|8|11|7|0.24|471h0m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071219|1|stats.go:56|8|11|7|0.24|471h0m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071219|1|stats.go:56|8|11|7|0.24|471h0m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071226|1|stats.go:56|8|11|7|0.28|471h1m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071226|1|stats.go:56|8|11|7|0.28|471h1m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071226|1|stats.go:56|8|11|7|0.28|471h1m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071227|1|stats.go:56|8|11|7|0.28|471h1m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071227|1|stats.go:56|8|11|7|0.28|471h1m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071228|1|stats.go:56|8|11|7|0.28|471h1m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071228|1|stats.go:56|8|11|7|0.28|471h1m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071228|1|stats.go:56|8|11|7|0.28|471h1m6s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071229|1|stats.go:56|8|11|7|0.28|471h1m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071229|1|stats.go:56|8|11|7|0.28|471h1m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071236|1|stats.go:56|8|11|7|0.32|471h1m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071236|1|stats.go:56|8|11|7|0.32|471h1m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071236|1|stats.go:56|8|11|7|0.32|471h1m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071237|1|stats.go:56|8|11|7|0.32|471h1m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071237|1|stats.go:56|8|11|7|0.32|471h1m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071238|1|stats.go:56|8|11|7|0.32|471h1m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071238|1|stats.go:56|8|11|7|0.32|471h1m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071238|1|stats.go:56|8|11|7|0.32|471h1m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071239|1|stats.go:56|8|11|7|0.32|471h1m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071239|1|stats.go:56|8|11|7|0.32|471h1m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071246|1|stats.go:56|8|11|7|0.27|471h1m23s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071246|1|stats.go:56|8|11|7|0.27|471h1m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071246|1|stats.go:56|8|11|7|0.27|471h1m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071247|1|stats.go:56|8|11|7|0.27|471h1m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071247|1|stats.go:56|8|11|7|0.27|471h1m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071248|1|stats.go:56|8|11|7|0.27|471h1m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071248|1|stats.go:56|8|11|7|0.27|471h1m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071248|1|stats.go:56|8|11|7|0.27|471h1m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071249|1|stats.go:56|8|11|7|0.27|471h1m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071249|1|stats.go:56|8|11|7|0.27|471h1m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071256|1|stats.go:56|8|11|7|0.23|471h1m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071256|1|stats.go:56|8|11|7|0.23|471h1m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071256|1|stats.go:56|8|11|7|0.23|471h1m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071257|1|stats.go:56|8|11|7|0.23|471h1m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071257|1|stats.go:56|8|11|7|0.23|471h1m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071258|1|stats.go:56|8|11|7|0.23|471h1m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071258|1|stats.go:56|8|11|7|0.23|471h1m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071258|1|stats.go:56|8|11|7|0.23|471h1m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071259|1|stats.go:56|8|11|7|0.23|471h1m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071259|1|stats.go:56|8|11|7|0.23|471h1m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071306|1|stats.go:56|8|11|7|0.35|471h1m43s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071306|1|stats.go:56|8|11|7|0.35|471h1m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071306|1|stats.go:56|8|11|7|0.35|471h1m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071307|1|stats.go:56|8|11|7|0.35|471h1m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071307|1|stats.go:56|8|11|7|0.35|471h1m45s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071308|1|stats.go:56|8|11|7|0.35|471h1m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071308|1|stats.go:56|8|11|7|0.35|471h1m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071308|1|stats.go:56|8|11|7|0.35|471h1m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071309|1|stats.go:56|8|11|7|0.35|471h1m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071309|1|stats.go:56|8|11|7|0.35|471h1m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071316|1|stats.go:56|8|11|7|0.38|471h1m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071316|1|stats.go:56|8|11|7|0.38|471h1m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071316|1|stats.go:56|8|11|7|0.38|471h1m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071317|1|stats.go:56|8|11|7|0.38|471h1m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071317|1|stats.go:56|8|11|7|0.38|471h1m55s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071318|1|stats.go:56|8|11|7|0.38|471h1m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071318|1|stats.go:56|8|11|7|0.38|471h1m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071318|1|stats.go:56|8|11|7|0.38|471h1m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071319|1|stats.go:56|8|11|7|0.38|471h1m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071319|1|stats.go:56|8|11|7|0.38|471h1m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071326|1|stats.go:56|8|11|7|0.32|471h2m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071326|1|stats.go:56|8|11|7|0.32|471h2m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071326|1|stats.go:56|8|11|7|0.32|471h2m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071327|1|stats.go:56|8|11|7|0.32|471h2m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071327|1|stats.go:56|8|11|7|0.32|471h2m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071328|1|stats.go:56|8|11|7|0.32|471h2m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071328|1|stats.go:56|8|11|7|0.32|471h2m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071328|1|stats.go:56|8|11|7|0.32|471h2m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071329|1|stats.go:56|8|11|7|0.32|471h2m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071329|1|stats.go:56|8|11|7|0.32|471h2m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071336|1|stats.go:56|8|11|7|0.35|471h2m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071336|1|stats.go:56|8|11|7|0.35|471h2m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071336|1|stats.go:56|8|11|7|0.35|471h2m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071337|1|stats.go:56|8|11|7|0.35|471h2m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071337|1|stats.go:56|8|11|7|0.35|471h2m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071338|1|stats.go:56|8|11|7|0.35|471h2m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071338|1|stats.go:56|8|11|7|0.35|471h2m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071338|1|stats.go:56|8|11|7|0.35|471h2m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071339|1|stats.go:56|8|11|7|0.35|471h2m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071339|1|stats.go:56|8|11|7|0.35|471h2m17s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071346|1|stats.go:56|8|11|7|0.30|471h2m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071346|1|stats.go:56|8|11|7|0.30|471h2m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071346|1|stats.go:56|8|11|7|0.30|471h2m24s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071347|1|stats.go:56|8|11|7|0.30|471h2m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071347|1|stats.go:56|8|11|7|0.30|471h2m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071348|1|stats.go:56|8|11|7|0.30|471h2m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071348|1|stats.go:56|8|11|7|0.30|471h2m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071348|1|stats.go:56|8|11|7|0.30|471h2m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071349|1|stats.go:56|8|11|7|0.30|471h2m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071349|1|stats.go:56|8|11|7|0.30|471h2m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071356|1|stats.go:56|8|11|7|0.57|471h2m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071356|1|stats.go:56|8|11|7|0.57|471h2m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071356|1|stats.go:56|8|11|7|0.57|471h2m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071357|1|stats.go:56|8|11|7|0.57|471h2m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071357|1|stats.go:56|8|11|7|0.57|471h2m35s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071358|1|stats.go:56|8|11|7|0.57|471h2m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071358|1|stats.go:56|8|11|7|0.57|471h2m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071358|1|stats.go:56|8|11|7|0.57|471h2m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071359|1|stats.go:56|8|11|7|0.57|471h2m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071359|1|stats.go:56|8|11|7|0.57|471h2m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071406|1|stats.go:56|8|11|7|0.48|471h2m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071406|1|stats.go:56|8|11|7|0.48|471h2m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071406|1|stats.go:56|8|11|7|0.48|471h2m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071407|1|stats.go:56|8|11|7|0.48|471h2m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071407|1|stats.go:56|8|11|7|0.48|471h2m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071408|1|stats.go:56|8|11|7|0.48|471h2m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071408|1|stats.go:56|8|11|7|0.48|471h2m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071408|1|stats.go:56|8|11|7|0.48|471h2m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071409|1|stats.go:56|8|11|7|0.48|471h2m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071409|1|stats.go:56|8|11|7|0.48|471h2m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071416|1|stats.go:56|8|11|7|0.49|471h2m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071416|1|stats.go:56|8|11|7|0.49|471h2m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071416|1|stats.go:56|8|11|7|0.49|471h2m54s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071417|1|stats.go:56|8|11|7|0.49|471h2m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071417|1|stats.go:56|8|11|7|0.49|471h2m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071418|1|stats.go:56|8|11|7|0.49|471h2m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071418|1|stats.go:56|8|11|7|0.49|471h2m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071418|1|stats.go:56|8|11|7|0.49|471h2m56s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071419|1|stats.go:56|8|11|7|0.49|471h2m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071419|1|stats.go:56|8|11|7|0.49|471h2m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071426|1|stats.go:56|8|11|7|0.41|471h3m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071426|1|stats.go:56|8|11|7|0.41|471h3m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071426|1|stats.go:56|8|11|7|0.41|471h3m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071427|1|stats.go:56|8|11|7|0.41|471h3m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071427|1|stats.go:56|8|11|7|0.41|471h3m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071428|1|stats.go:56|8|11|7|0.41|471h3m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071428|1|stats.go:56|8|11|7|0.41|471h3m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071428|1|stats.go:56|8|11|7|0.41|471h3m6s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071429|1|stats.go:56|8|11|7|0.41|471h3m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071429|1|stats.go:56|8|11|7|0.41|471h3m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071436|1|stats.go:56|8|11|7|0.35|471h3m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071436|1|stats.go:56|8|11|7|0.35|471h3m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071436|1|stats.go:56|8|11|7|0.35|471h3m14s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071437|1|stats.go:56|8|11|7|0.35|471h3m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071437|1|stats.go:56|8|11|7|0.35|471h3m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071438|1|stats.go:56|8|11|7|0.35|471h3m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071438|1|stats.go:56|8|11|7|0.35|471h3m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071438|1|stats.go:56|8|11|7|0.35|471h3m16s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071439|1|stats.go:56|8|11|7|0.35|471h3m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071439|1|stats.go:56|8|11|7|0.35|471h3m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071446|1|stats.go:56|8|11|7|0.29|471h3m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071446|1|stats.go:56|8|11|7|0.29|471h3m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071446|1|stats.go:56|8|11|7|0.29|471h3m24s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071447|1|stats.go:56|8|11|7|0.29|471h3m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071447|1|stats.go:56|8|11|7|0.29|471h3m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071448|1|stats.go:56|8|11|7|0.29|471h3m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071448|1|stats.go:56|8|11|7|0.29|471h3m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071448|1|stats.go:56|8|11|7|0.29|471h3m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071449|1|stats.go:56|8|11|7|0.29|471h3m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071449|1|stats.go:56|8|11|7|0.29|471h3m27s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071456|1|stats.go:56|8|11|7|0.25|471h3m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071456|1|stats.go:56|8|11|7|0.25|471h3m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071456|1|stats.go:56|8|11|7|0.25|471h3m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071457|1|stats.go:56|8|11|7|0.25|471h3m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071457|1|stats.go:56|8|11|7|0.25|471h3m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071458|1|stats.go:56|8|11|7|0.25|471h3m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071458|1|stats.go:56|8|11|7|0.25|471h3m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071458|1|stats.go:56|8|11|7|0.25|471h3m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071459|1|stats.go:56|8|11|7|0.25|471h3m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071459|1|stats.go:56|8|11|7|0.25|471h3m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071506|1|stats.go:56|8|11|7|0.28|471h3m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071506|1|stats.go:56|8|11|7|0.28|471h3m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071506|1|stats.go:56|8|11|7|0.28|471h3m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071507|1|stats.go:56|8|11|7|0.28|471h3m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071507|1|stats.go:56|8|11|7|0.28|471h3m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071508|1|stats.go:56|8|11|7|0.28|471h3m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071508|1|stats.go:56|8|11|7|0.28|471h3m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071508|1|stats.go:56|8|11|7|0.28|471h3m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071509|1|stats.go:56|8|11|7|0.28|471h3m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071509|1|stats.go:56|8|11|7|0.28|471h3m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071516|1|stats.go:56|8|11|7|0.24|471h3m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071516|1|stats.go:56|8|11|7|0.24|471h3m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071516|1|stats.go:56|8|11|7|0.24|471h3m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071517|1|stats.go:56|8|11|7|0.24|471h3m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071517|1|stats.go:56|8|11|7|0.24|471h3m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071518|1|stats.go:56|8|11|7|0.24|471h3m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071518|1|stats.go:56|8|11|7|0.24|471h3m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071519|1|stats.go:56|8|11|7|0.24|471h3m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071519|1|stats.go:56|8|11|7|0.24|471h3m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071519|1|stats.go:56|8|11|7|0.24|471h3m57s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071526|1|stats.go:56|8|11|7|0.20|471h4m3s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071526|1|stats.go:56|8|11|7|0.20|471h4m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071526|1|stats.go:56|8|11|7|0.20|471h4m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071527|1|stats.go:56|8|11|7|0.20|471h4m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071527|1|stats.go:56|8|11|7|0.20|471h4m5s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071528|1|stats.go:56|8|11|7|0.20|471h4m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071528|1|stats.go:56|8|11|7|0.20|471h4m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071529|1|stats.go:56|8|11|7|0.20|471h4m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071529|1|stats.go:56|8|11|7|0.20|471h4m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071529|1|stats.go:56|8|11|7|0.20|471h4m7s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071536|1|stats.go:56|8|11|7|0.17|471h4m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071536|1|stats.go:56|8|11|7|0.17|471h4m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071536|1|stats.go:56|8|11|7|0.17|471h4m14s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071537|1|stats.go:56|8|11|7|0.17|471h4m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071537|1|stats.go:56|8|11|7|0.17|471h4m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071538|1|stats.go:56|8|11|7|0.17|471h4m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071538|1|stats.go:56|8|11|7|0.17|471h4m16s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071539|1|stats.go:56|8|11|7|0.17|471h4m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071539|1|stats.go:56|8|11|7|0.17|471h4m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071539|1|stats.go:56|8|11|7|0.17|471h4m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071546|1|stats.go:56|8|11|7|0.14|471h4m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071546|1|stats.go:56|8|11|7|0.14|471h4m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071546|1|stats.go:56|8|11|7|0.14|471h4m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071547|1|stats.go:56|8|11|7|0.14|471h4m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071547|1|stats.go:56|8|11|7|0.14|471h4m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071548|1|stats.go:56|8|11|7|0.14|471h4m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071548|1|stats.go:56|8|11|7|0.14|471h4m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071549|1|stats.go:56|8|11|7|0.14|471h4m26s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071549|1|stats.go:56|8|11|7|0.14|471h4m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071549|1|stats.go:56|8|11|7|0.14|471h4m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071556|1|stats.go:56|8|11|7|0.12|471h4m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071556|1|stats.go:56|8|11|7|0.12|471h4m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071556|1|stats.go:56|8|11|7|0.12|471h4m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071557|1|stats.go:56|8|11|7|0.12|471h4m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071557|1|stats.go:56|8|11|7|0.12|471h4m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071558|1|stats.go:56|8|11|7|0.12|471h4m35s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071558|1|stats.go:56|8|11|7|0.12|471h4m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071559|1|stats.go:56|8|11|7|0.12|471h4m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071559|1|stats.go:56|8|11|7|0.12|471h4m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071559|1|stats.go:56|8|11|7|0.12|471h4m37s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071606|1|stats.go:56|8|11|7|0.18|471h4m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071606|1|stats.go:56|8|11|7|0.18|471h4m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071606|1|stats.go:56|8|11|7|0.18|471h4m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071607|1|stats.go:56|8|11|7|0.18|471h4m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071607|1|stats.go:56|8|11|7|0.18|471h4m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071608|1|stats.go:56|8|11|7|0.18|471h4m45s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071608|1|stats.go:56|8|11|7|0.18|471h4m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071609|1|stats.go:56|8|11|7|0.18|471h4m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071609|1|stats.go:56|8|11|7|0.18|471h4m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071609|1|stats.go:56|8|11|7|0.18|471h4m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071616|1|stats.go:56|8|11|7|0.22|471h4m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071616|1|stats.go:56|8|11|7|0.22|471h4m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071617|1|stats.go:56|8|11|7|0.22|471h4m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071617|1|stats.go:56|8|11|7|0.22|471h4m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071617|1|stats.go:56|8|11|7|0.22|471h4m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071618|1|stats.go:56|8|11|7|0.22|471h4m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071618|1|stats.go:56|8|11|7|0.22|471h4m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071619|1|stats.go:56|8|11|7|0.22|471h4m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071619|1|stats.go:56|8|11|7|0.22|471h4m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071619|1|stats.go:56|8|11|7|0.22|471h4m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071626|1|stats.go:56|8|11|7|0.27|471h5m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071626|1|stats.go:56|8|11|7|0.27|471h5m4s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071627|1|stats.go:56|8|11|7|0.27|471h5m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071627|1|stats.go:56|8|11|7|0.27|471h5m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071627|1|stats.go:56|8|11|7|0.27|471h5m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071628|1|stats.go:56|8|11|7|0.27|471h5m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071628|1|stats.go:56|8|11|7|0.27|471h5m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071629|1|stats.go:56|8|11|7|0.27|471h5m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071629|1|stats.go:56|8|11|7|0.27|471h5m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071629|1|stats.go:56|8|11|7|0.27|471h5m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071636|1|stats.go:56|8|11|7|0.46|471h5m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071636|1|stats.go:56|8|11|7|0.46|471h5m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071637|1|stats.go:56|8|11|7|0.46|471h5m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071637|1|stats.go:56|8|11|7|0.46|471h5m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071637|1|stats.go:56|8|11|7|0.46|471h5m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071638|1|stats.go:56|8|11|7|0.46|471h5m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071638|1|stats.go:56|8|11|7|0.46|471h5m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071639|1|stats.go:56|8|11|7|0.46|471h5m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071639|1|stats.go:56|8|11|7|0.46|471h5m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071639|1|stats.go:56|8|11|7|0.46|471h5m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071646|1|stats.go:56|8|11|7|0.39|471h5m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071646|1|stats.go:56|8|11|7|0.39|471h5m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071647|1|stats.go:56|8|11|7|0.39|471h5m24s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071647|1|stats.go:56|8|11|7|0.39|471h5m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071647|1|stats.go:56|8|11|7|0.39|471h5m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071648|1|stats.go:56|8|11|7|0.39|471h5m25s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071648|1|stats.go:56|8|11|7|0.39|471h5m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071649|1|stats.go:56|8|11|7|0.39|471h5m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071649|1|stats.go:56|8|11|7|0.39|471h5m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071649|1|stats.go:56|8|11|7|0.39|471h5m27s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071656|1|stats.go:56|8|11|7|0.33|471h5m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071656|1|stats.go:56|8|11|7|0.33|471h5m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071657|1|stats.go:56|8|11|7|0.33|471h5m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071657|1|stats.go:56|8|11|7|0.33|471h5m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071657|1|stats.go:56|8|11|7|0.33|471h5m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071658|1|stats.go:56|8|11|7|0.33|471h5m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071658|1|stats.go:56|8|11|7|0.33|471h5m36s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071659|1|stats.go:56|8|11|7|0.33|471h5m36s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071659|1|stats.go:56|8|11|7|0.33|471h5m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071659|1|stats.go:56|8|11|7|0.33|471h5m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071706|1|stats.go:56|8|11|7|0.28|471h5m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071706|1|stats.go:56|8|11|7|0.28|471h5m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071707|1|stats.go:56|8|11|7|0.28|471h5m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071707|1|stats.go:56|8|11|7|0.28|471h5m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071707|1|stats.go:56|8|11|7|0.28|471h5m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071708|1|stats.go:56|8|11|7|0.28|471h5m45s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071708|1|stats.go:56|8|11|7|0.28|471h5m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071709|1|stats.go:56|8|11|7|0.28|471h5m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071709|1|stats.go:56|8|11|7|0.28|471h5m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071709|1|stats.go:56|8|11|7|0.28|471h5m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071716|1|stats.go:56|8|11|7|0.32|471h5m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071716|1|stats.go:56|8|11|7|0.32|471h5m54s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071717|1|stats.go:56|8|11|7|0.32|471h5m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071717|1|stats.go:56|8|11|7|0.32|471h5m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071717|1|stats.go:56|8|11|7|0.32|471h5m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071718|1|stats.go:56|8|11|7|0.32|471h5m55s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071718|1|stats.go:56|8|11|7|0.32|471h5m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071719|1|stats.go:56|8|11|7|0.32|471h5m56s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071719|1|stats.go:56|8|11|7|0.32|471h5m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071719|1|stats.go:56|8|11|7|0.32|471h5m57s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071726|1|stats.go:56|8|11|7|0.27|471h6m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071726|1|stats.go:56|8|11|7|0.27|471h6m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071727|1|stats.go:56|8|11|7|0.27|471h6m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071727|1|stats.go:56|8|11|7|0.27|471h6m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071727|1|stats.go:56|8|11|7|0.27|471h6m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071728|1|stats.go:56|8|11|7|0.27|471h6m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071728|1|stats.go:56|8|11|7|0.27|471h6m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071729|1|stats.go:56|8|11|7|0.27|471h6m6s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071729|1|stats.go:56|8|11|7|0.27|471h6m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071729|1|stats.go:56|8|11|7|0.27|471h6m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071736|1|stats.go:56|8|11|7|0.23|471h6m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071736|1|stats.go:56|8|11|7|0.23|471h6m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071737|1|stats.go:56|8|11|7|0.23|471h6m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071737|1|stats.go:56|8|11|7|0.23|471h6m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071737|1|stats.go:56|8|11|7|0.23|471h6m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071738|1|stats.go:56|8|11|7|0.23|471h6m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071738|1|stats.go:56|8|11|7|0.23|471h6m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071739|1|stats.go:56|8|11|7|0.23|471h6m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071739|1|stats.go:56|8|11|7|0.23|471h6m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071739|1|stats.go:56|8|11|7|0.23|471h6m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071746|1|stats.go:56|8|11|7|0.27|471h6m23s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071746|1|stats.go:56|8|11|7|0.27|471h6m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071747|1|stats.go:56|8|11|7|0.27|471h6m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071747|1|stats.go:56|8|11|7|0.27|471h6m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071747|1|stats.go:56|8|11|7|0.27|471h6m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071748|1|stats.go:56|8|11|7|0.27|471h6m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071748|1|stats.go:56|8|11|7|0.27|471h6m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071749|1|stats.go:56|8|11|7|0.27|471h6m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071749|1|stats.go:56|8|11|7|0.27|471h6m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071749|1|stats.go:56|8|11|7|0.27|471h6m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071756|1|stats.go:56|8|11|7|0.23|471h6m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071756|1|stats.go:56|8|11|7|0.23|471h6m34s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071757|1|stats.go:56|8|11|7|0.23|471h6m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071757|1|stats.go:56|8|11|7|0.23|471h6m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071757|1|stats.go:56|8|11|7|0.23|471h6m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071758|1|stats.go:56|8|11|7|0.23|471h6m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071758|1|stats.go:56|8|11|7|0.23|471h6m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071759|1|stats.go:56|8|11|7|0.23|471h6m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071759|1|stats.go:56|8|11|7|0.23|471h6m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071759|1|stats.go:56|8|11|7|0.23|471h6m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071806|1|stats.go:56|8|11|7|0.51|471h6m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071806|1|stats.go:56|8|11|7|0.51|471h6m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071807|1|stats.go:56|8|11|7|0.51|471h6m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071807|1|stats.go:56|8|11|7|0.51|471h6m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071807|1|stats.go:56|8|11|7|0.51|471h6m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071808|1|stats.go:56|8|11|7|0.51|471h6m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071808|1|stats.go:56|8|11|7|0.51|471h6m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071809|1|stats.go:56|8|11|7|0.51|471h6m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071809|1|stats.go:56|8|11|7|0.51|471h6m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071809|1|stats.go:56|8|11|7|0.51|471h6m47s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071816|1|stats.go:56|8|11|7|0.51|471h6m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071816|1|stats.go:56|8|11|7|0.51|471h6m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071817|1|stats.go:56|8|11|7|0.51|471h6m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071817|1|stats.go:56|8|11|7|0.51|471h6m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071817|1|stats.go:56|8|11|7|0.51|471h6m55s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071818|1|stats.go:56|8|11|7|0.51|471h6m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071818|1|stats.go:56|8|11|7|0.51|471h6m56s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071819|1|stats.go:56|8|11|7|0.51|471h6m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071819|1|stats.go:56|8|11|7|0.51|471h6m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071819|1|stats.go:56|8|11|7|0.51|471h6m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071826|1|stats.go:56|8|11|7|0.58|471h7m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071826|1|stats.go:56|8|11|7|0.58|471h7m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071827|1|stats.go:56|8|11|7|0.58|471h7m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071827|1|stats.go:56|8|11|7|0.58|471h7m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071827|1|stats.go:56|8|11|7|0.58|471h7m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071828|1|stats.go:56|8|11|7|0.58|471h7m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071828|1|stats.go:56|8|11|7|0.58|471h7m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071829|1|stats.go:56|8|11|7|0.58|471h7m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071829|1|stats.go:56|8|11|7|0.58|471h7m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071829|1|stats.go:56|8|11|7|0.58|471h7m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071836|1|stats.go:56|8|11|7|0.56|471h7m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071836|1|stats.go:56|8|11|7|0.56|471h7m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071837|1|stats.go:56|8|11|7|0.56|471h7m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071837|1|stats.go:56|8|11|7|0.56|471h7m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071837|1|stats.go:56|8|11|7|0.56|471h7m15s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071838|1|stats.go:56|8|11|7|0.56|471h7m15s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071838|1|stats.go:56|8|11|7|0.56|471h7m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071839|1|stats.go:56|8|11|7|0.56|471h7m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071839|1|stats.go:56|8|11|7|0.56|471h7m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071839|1|stats.go:56|8|11|7|0.56|471h7m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071846|1|stats.go:56|8|11|7|0.48|471h7m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071846|1|stats.go:56|8|11|7|0.48|471h7m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071847|1|stats.go:56|8|11|7|0.48|471h7m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071847|1|stats.go:56|8|11|7|0.48|471h7m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071847|1|stats.go:56|8|11|7|0.48|471h7m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071848|1|stats.go:56|8|11|7|0.48|471h7m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071848|1|stats.go:56|8|11|7|0.48|471h7m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071849|1|stats.go:56|8|11|7|0.48|471h7m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071849|1|stats.go:56|8|11|7|0.48|471h7m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071849|1|stats.go:56|8|11|7|0.48|471h7m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071856|1|stats.go:56|8|11|7|0.70|471h7m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071856|1|stats.go:56|8|11|7|0.70|471h7m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071857|1|stats.go:56|8|11|7|0.70|471h7m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071857|1|stats.go:56|8|11|7|0.70|471h7m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071857|1|stats.go:56|8|11|7|0.70|471h7m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071858|1|stats.go:56|8|11|7|0.70|471h7m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071858|1|stats.go:56|8|11|7|0.70|471h7m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071859|1|stats.go:56|8|11|7|0.70|471h7m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071859|1|stats.go:56|8|11|7|0.70|471h7m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071859|1|stats.go:56|8|11|7|0.70|471h7m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071906|1|stats.go:56|8|11|7|0.60|471h7m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071906|1|stats.go:56|8|11|7|0.60|471h7m44s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|1002-071907|1|stats.go:56|8|11|7|0.60|471h7m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071907|1|stats.go:56|8|11|7|0.60|471h7m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071907|1|stats.go:56|8|11|7|0.60|471h7m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071908|1|stats.go:56|8|11|7|0.60|471h7m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071908|1|stats.go:56|8|11|7|0.60|471h7m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071909|1|stats.go:56|8|11|7|0.60|471h7m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071909|1|stats.go:56|8|11|7|0.60|471h7m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071909|1|stats.go:56|8|11|7|0.60|471h7m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|1002-071912|1|stats.go:56|8|15|7|0.55|471h7m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=4
-INFO|1002-071912|1|stats.go:56|8|15|7|0.55|471h7m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=4
-INFO|1002-071912|1|stats.go:56|8|15|7|0.55|471h7m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=4
-INFO|1002-071912|1|stats.go:56|8|15|7|0.55|471h7m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=4
-INFO|1002-071912|1|stats.go:56|8|15|7|0.55|471h7m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=4
-INFO|1002-071912|1|stats.go:56|8|15|7|0.55|471h7m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=4
-INFO|1002-071912|1|stats.go:56|8|15|7|0.55|471h7m50s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=4
-INFO|1002-071912|1|stats.go:56|8|15|7|0.55|471h7m50s|MAPREDUCE:STATS|lifetimeConnections=4|currentConnections=1
-INFO|1002-071912|1|stats.go:56|8|15|7|0.55|471h7m50s|MAPREDUCE:STATS|lifetimeConnections=4|currentConnections=1
-INFO|1002-071912|1|stats.go:56|8|15|7|0.55|471h7m50s|MAPREDUCE:STATS|lifetimeConnections=4|currentConnections=1
-INFO|1002-071913|1|stats.go:56|8|13|7|0.55|471h7m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|1002-071913|1|stats.go:56|8|13|7|0.55|471h7m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|1002-071913|1|stats.go:56|8|13|7|0.55|471h7m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|1002-071913|1|stats.go:56|8|13|7|0.55|471h7m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|1002-071913|1|stats.go:56|8|13|7|0.55|471h7m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|1002-071913|1|stats.go:56|8|13|7|0.55|471h7m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|1002-071913|1|stats.go:56|8|13|7|0.55|471h7m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|1002-071913|1|stats.go:56|8|13|7|0.55|471h7m51s|MAPREDUCE:STATS|lifetimeConnections=4|currentConnections=0
-INFO|1002-071913|1|stats.go:56|8|13|7|0.55|471h7m51s|MAPREDUCE:STATS|lifetimeConnections=4|currentConnections=0
-INFO|1002-071913|1|stats.go:56|8|13|7|0.55|471h7m51s|MAPREDUCE:STATS|lifetimeConnections=4|currentConnections=0
-INFO|1002-071916|1|stats.go:56|8|11|7|0.50|471h7m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|1002-071916|1|stats.go:56|8|11|7|0.50|471h7m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|1002-071917|1|stats.go:56|8|11|7|0.50|471h7m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|1002-071917|1|stats.go:56|8|11|7|0.50|471h7m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|1002-071917|1|stats.go:56|8|11|7|0.50|471h7m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|1002-071918|1|stats.go:56|8|11|7|0.50|471h7m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|1002-071918|1|stats.go:56|8|11|7|0.50|471h7m56s|MAPREDUCE:STATS|lifetimeConnections=4|currentConnections=0
-INFO|1002-071919|1|stats.go:56|8|11|7|0.50|471h7m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|1002-071919|1|stats.go:56|8|11|7|0.50|471h7m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|1002-071919|1|stats.go:56|8|11|7|0.50|471h7m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|1002-071920|1|stats.go:56|8|15|7|0.50|471h7m58s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=5
-INFO|1002-071920|1|stats.go:56|8|15|7|0.50|471h7m58s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=5
-INFO|1002-071920|1|stats.go:56|8|15|7|0.50|471h7m58s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=5
-INFO|1002-071920|1|stats.go:56|8|15|7|0.50|471h7m58s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=5
-INFO|1002-071920|1|stats.go:56|8|15|7|0.50|471h7m58s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=5
-INFO|1002-071920|1|stats.go:56|8|15|7|0.50|471h7m58s|MAPREDUCE:STATS|lifetimeConnections=5|currentConnections=1
-INFO|1002-071920|1|stats.go:56|8|15|7|0.50|471h7m58s|MAPREDUCE:STATS|lifetimeConnections=5|currentConnections=1
-INFO|1002-071921|1|stats.go:56|8|12|7|1.02|471h7m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071921|1|stats.go:56|8|12|7|1.02|471h7m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071921|1|stats.go:56|8|12|7|1.02|471h7m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071921|1|stats.go:56|8|13|7|1.02|471h7m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071921|1|stats.go:56|8|13|7|1.02|471h7m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071921|1|stats.go:56|8|13|7|1.02|471h7m59s|MAPREDUCE:STATS|lifetimeConnections=5|currentConnections=0
-INFO|1002-071921|1|stats.go:56|8|15|7|1.02|471h7m58s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=5
-INFO|1002-071921|1|stats.go:56|8|15|7|1.02|471h7m58s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=5
-INFO|1002-071921|1|stats.go:56|8|15|7|1.02|471h7m58s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=5
-INFO|1002-071922|1|stats.go:56|8|12|7|1.02|471h7m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071922|1|stats.go:56|8|12|7|1.02|471h7m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071922|1|stats.go:56|8|13|7|1.02|471h7m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071922|1|stats.go:56|8|13|7|1.02|471h7m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071926|1|stats.go:56|8|11|7|0.94|471h8m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071926|1|stats.go:56|8|11|7|0.94|471h8m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071927|1|stats.go:56|8|11|7|0.94|471h8m4s|MAPREDUCE:STATS|lifetimeConnections=5|currentConnections=0
-INFO|1002-071927|1|stats.go:56|8|11|7|0.94|471h8m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071927|1|stats.go:56|8|11|7|0.94|471h8m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071928|1|stats.go:56|8|11|7|0.94|471h8m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071928|1|stats.go:56|8|11|7|0.94|471h8m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071929|1|stats.go:56|8|11|7|0.94|471h8m6s|MAPREDUCE:STATS|lifetimeConnections=5|currentConnections=0
-INFO|1002-071929|1|stats.go:56|8|11|7|0.94|471h8m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071929|1|stats.go:56|8|11|7|0.94|471h8m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071936|1|stats.go:56|8|11|7|0.80|471h8m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071936|1|stats.go:56|8|11|7|0.80|471h8m14s|MAPREDUCE:STATS|lifetimeConnections=5|currentConnections=0
-INFO|1002-071937|1|stats.go:56|8|11|7|0.80|471h8m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071937|1|stats.go:56|8|11|7|0.80|471h8m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071937|1|stats.go:56|8|11|7|0.80|471h8m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071938|1|stats.go:56|8|11|7|0.80|471h8m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071938|1|stats.go:56|8|11|7|0.80|471h8m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071939|1|stats.go:56|8|11|7|0.80|471h8m16s|MAPREDUCE:STATS|lifetimeConnections=5|currentConnections=0
-INFO|1002-071939|1|stats.go:56|8|11|7|0.80|471h8m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071939|1|stats.go:56|8|11|7|0.80|471h8m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071946|1|stats.go:56|8|11|7|0.67|471h8m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071946|1|stats.go:56|8|11|7|0.67|471h8m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071947|1|stats.go:56|8|11|7|0.67|471h8m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071947|1|stats.go:56|8|11|7|0.67|471h8m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071947|1|stats.go:56|8|11|7|0.67|471h8m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071948|1|stats.go:56|8|11|7|0.67|471h8m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071948|1|stats.go:56|8|11|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|1002-071948|1|stats.go:56|8|15|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6
-INFO|1002-071948|1|stats.go:56|8|15|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6
-INFO|1002-071948|1|stats.go:56|8|15|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6
-INFO|1002-071948|1|stats.go:56|8|15|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6
-INFO|1002-071948|1|stats.go:56|8|15|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6
-INFO|1002-071948|1|stats.go:56|8|15|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6
-INFO|1002-071948|1|stats.go:56|8|15|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6
-INFO|1002-071948|1|stats.go:56|8|15|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6
-INFO|1002-071948|1|stats.go:56|8|15|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6
-INFO|1002-071949|1|stats.go:56|8|15|7|0.67|471h8m26s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6
diff --git a/integrationtests/server_debug.log b/integrationtests/server_debug.log
deleted file mode 100644
index 1dee0cd..0000000
--- a/integrationtests/server_debug.log
+++ /dev/null
@@ -1,12545 +0,0 @@
-DTail 4.3.2 Protocol 4.1 Have a lot of fun!
-INFO|0703-163514|Starting server|DTail 4.3.2 Protocol 4.1 Have a lot of fun!
-INFO|0703-163514|Reading private server RSA host key from file|./ssh_host_key
-INFO|0703-163514|Starting server
-INFO|0703-163514|Binding server|localhost:4242
-DEBUG|0703-163514|Starting listener loop
-INFO|0703-163514|Starting scheduled job runner after 2s
-INFO|0703-163514|Starting continuous job runner after 2s
-INFO|0703-163524|2000147|stats.go:53|8|10|7|1.30|115h0m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=0
-INFO|0703-163533|Handling connection
-INFO|0703-163533|paul@127.0.0.1:33718|Incoming authorization
-INFO|0703-163533|paul@127.0.0.1:33718|Reading|./id_rsa.pub
-DEBUG|0703-163533|paul@127.0.0.1:33718|Authorized public key fingerprint|SHA256:6JCEoZk+DgZKsndyjIGCghIaoKMMxeswdTAYRQ7WBFE
-DEBUG|0703-163533|paul@127.0.0.1:33718|Offered public key fingerprint|SHA256:6JCEoZk+DgZKsndyjIGCghIaoKMMxeswdTAYRQ7WBFE
-INFO|0703-163533|2000147|stats.go:53|8|14|7|1.33|115h0m11s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1
-INFO|0703-163533|paul@127.0.0.1:33718|Invoking channel handler
-INFO|0703-163533|paul@127.0.0.1:33718|Invoking request handler
-ERROR|0703-163533|paul@127.0.0.1:33718|ssh: parse error in message type 0
-DEBUG|0703-163533|paul@127.0.0.1:33718|Creating new server handler
-DEBUG|0703-163533|paul@127.0.0.1:33718|protocol 4.1 base64 bWFwIGZyb20gU1RBVFMgc2VsZWN0IGNvdW50KCR0aW1lKSwkdGltZSBncm91cCBieSAkdGltZQ==
-TRACE|0703-163533|paul@127.0.0.1:33718|Base64 decoded received command|map from STATS select count($time),$time group by $time|8|[map from STATS select count($time),$time group by $time]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-163533|paul@127.0.0.1:33718|Handling user command|8|[map from STATS select count($time),$time group by $time]
-INFO|0703-163533|Creating turbo aggregate for MapReduce|query|from STATS select count($time),$time group by $time
-INFO|0703-163533|Creating turbo log format parser|default
-DEBUG|0703-163533|paul@127.0.0.1:33718|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-163533|paul@127.0.0.1:33718|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-163533|paul@127.0.0.1:33718|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-163533|Reading data from file(s)
-INFO|0703-163533|paul@127.0.0.1:33718|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-163533|TurboAggregate: Starting|interval|5s
-INFO|0703-163533|TurboAggregate: Started, waiting for data
-DEBUG|0703-163533|paul@127.0.0.1:33718|Command finished|activeCommands|1|pendingFiles|1
-INFO|0703-163533|TurboAggregate: Batch processor loop started
-INFO|0703-163533|paul@127.0.0.1:33718|Added pending files|count|1|totalPending|1
-INFO|0703-163533|TurboAggregate: Serialization loop started
-DEBUG|0703-163533|paul@127.0.0.1:33718|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-163533|paul@127.0.0.1:33718|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-163533|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-163533|paul@127.0.0.1:33718|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-163533|paul@127.0.0.1:33718|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-163533|paul@127.0.0.1:33718|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-163533|paul@127.0.0.1:33718|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-163533|paul@127.0.0.1:33718|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-163533|paul@127.0.0.1:33718|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-163533|paul@127.0.0.1:33718|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-163533|paul@127.0.0.1:33718|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-163533|paul@127.0.0.1:33718|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-163533|paul@127.0.0.1:33718|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-163533|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071148|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071148|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071149|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071149|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071149|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071156|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071156|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071157|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071157|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071158|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071158|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071158|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071159|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071159|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071206|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071206|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071206|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071207|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071207|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071208|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071208|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071209|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071209|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071209|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071216|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071216|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071217|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071217|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071217|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071218|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071218|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071218|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071219|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071219|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071219|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071226|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-163533|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071226|1|stats.go:56|8|11|7|0.21|471h0m2
-DEBUG|0703-163533|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-163533|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|0
-DEBUG|0703-163533|TurboAggregate: Processing line|lineNumber|0|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-163533|TurboAggregate: Parsed fields|lineNumber|0|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:16 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071143|totalGroups|1
-INFO|0703-163533|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time]|sampleCount|1
-INFO|0703-163533|TurboAggregate: Parsed fields|lineNumber|1|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:16 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-163533|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time]|sampleCount|2
-INFO|0703-163533|TurboAggregate: Parsed fields|lineNumber|2|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:12 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-163533|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time]|sampleCount|3
-INFO|0703-163533|TurboAggregate: Parsed fields|lineNumber|3|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:17 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-163533|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time]|sampleCount|4
-INFO|0703-163533|TurboAggregate: Parsed fields|lineNumber|4|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:14 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-163533|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time]|sampleCount|5
-INFO|0703-163533|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time]|sampleCount|6
-INFO|0703-163533|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time]|sampleCount|7
-INFO|0703-163533|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time]|sampleCount|8
-INFO|0703-163533|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time]|sampleCount|9
-INFO|0703-163533|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time]|sampleCount|10
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071147|totalGroups|2
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071148|totalGroups|3
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071149|totalGroups|4
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071156|totalGroups|5
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071157|totalGroups|6
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071158|totalGroups|7
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071159|totalGroups|8
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071206|totalGroups|9
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071207|totalGroups|10
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071208|totalGroups|11
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071209|totalGroups|12
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071213|totalGroups|13
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071216|totalGroups|14
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071217|totalGroups|15
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071218|totalGroups|16
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071219|totalGroups|17
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071226|totalGroups|18
-INFO|0703-163533|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|100
-INFO|0703-163533|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-163533|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-163533|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|100
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071227|totalGroups|19
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071228|totalGroups|20
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071229|totalGroups|21
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071236|totalGroups|22
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071237|totalGroups|23
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071238|totalGroups|24
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071239|totalGroups|25
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071246|totalGroups|26
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071247|totalGroups|27
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071248|totalGroups|28
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071249|totalGroups|29
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071256|totalGroups|30
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071257|totalGroups|31
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071258|totalGroups|32
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071259|totalGroups|33
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071306|totalGroups|34
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071307|totalGroups|35
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071308|totalGroups|36
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071309|totalGroups|37
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071316|totalGroups|38
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071317|totalGroups|39
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071318|totalGroups|40
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071319|totalGroups|41
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071326|totalGroups|42
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071327|totalGroups|43
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071328|totalGroups|44
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071329|totalGroups|45
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071336|totalGroups|46
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071337|totalGroups|47
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071338|totalGroups|48
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071339|totalGroups|49
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071346|totalGroups|50
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071347|totalGroups|51
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071348|totalGroups|52
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071349|totalGroups|53
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071356|totalGroups|54
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071357|totalGroups|55
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071358|totalGroups|56
-INFO|0703-163533|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|200
-INFO|0703-163533|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-163533|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-163533|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|200
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071359|totalGroups|57
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071406|totalGroups|58
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071407|totalGroups|59
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071408|totalGroups|60
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071409|totalGroups|61
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071416|totalGroups|62
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071417|totalGroups|63
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071418|totalGroups|64
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071419|totalGroups|65
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071426|totalGroups|66
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071427|totalGroups|67
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071428|totalGroups|68
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071429|totalGroups|69
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071436|totalGroups|70
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071437|totalGroups|71
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071438|totalGroups|72
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071439|totalGroups|73
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071446|totalGroups|74
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071447|totalGroups|75
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071448|totalGroups|76
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071449|totalGroups|77
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071456|totalGroups|78
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071457|totalGroups|79
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071458|totalGroups|80
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071459|totalGroups|81
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071506|totalGroups|82
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071507|totalGroups|83
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071508|totalGroups|84
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071509|totalGroups|85
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071516|totalGroups|86
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071517|totalGroups|87
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071518|totalGroups|88
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071519|totalGroups|89
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071526|totalGroups|90
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071527|totalGroups|91
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071528|totalGroups|92
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071529|totalGroups|93
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071536|totalGroups|94
-INFO|0703-163533|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|300
-INFO|0703-163533|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-163533|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-163533|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|300
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071537|totalGroups|95
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071538|totalGroups|96
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071539|totalGroups|97
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071546|totalGroups|98
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071547|totalGroups|99
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071548|totalGroups|100
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071549|totalGroups|101
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071556|totalGroups|102
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071557|totalGroups|103
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071558|totalGroups|104
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071559|totalGroups|105
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071606|totalGroups|106
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071607|totalGroups|107
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071608|totalGroups|108
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071609|totalGroups|109
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071616|totalGroups|110
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071617|totalGroups|111
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071618|totalGroups|112
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071619|totalGroups|113
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071626|totalGroups|114
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071627|totalGroups|115
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071628|totalGroups|116
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071629|totalGroups|117
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071636|totalGroups|118
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071637|totalGroups|119
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071638|totalGroups|120
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071639|totalGroups|121
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071646|totalGroups|122
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071647|totalGroups|123
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071648|totalGroups|124
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071649|totalGroups|125
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071656|totalGroups|126
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071657|totalGroups|127
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071658|totalGroups|128
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071659|totalGroups|129
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071706|totalGroups|130
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071707|totalGroups|131
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071708|totalGroups|132
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071709|totalGroups|133
-INFO|0703-163533|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|400
-INFO|0703-163533|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-163533|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-163533|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|400
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071716|totalGroups|134
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071717|totalGroups|135
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071718|totalGroups|136
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071719|totalGroups|137
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071726|totalGroups|138
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071727|totalGroups|139
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071728|totalGroups|140
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071729|totalGroups|141
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071736|totalGroups|142
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071737|totalGroups|143
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071738|totalGroups|144
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071739|totalGroups|145
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071746|totalGroups|146
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071747|totalGroups|147
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071748|totalGroups|148
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071749|totalGroups|149
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071756|totalGroups|150
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071757|totalGroups|151
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071758|totalGroups|152
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071759|totalGroups|153
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071806|totalGroups|154
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071807|totalGroups|155
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071808|totalGroups|156
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071809|totalGroups|157
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071816|totalGroups|158
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071817|totalGroups|159
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071818|totalGroups|160
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071819|totalGroups|161
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071826|totalGroups|162
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071827|totalGroups|163
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071828|totalGroups|164
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071829|totalGroups|165
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071836|totalGroups|166
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071837|totalGroups|167
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071838|totalGroups|168
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071839|totalGroups|169
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071846|totalGroups|170
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071847|totalGroups|171
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071848|totalGroups|172
-INFO|0703-163533|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|500
-INFO|0703-163533|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-163533|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-163533|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|500
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071849|totalGroups|173
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071856|totalGroups|174
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071857|totalGroups|175
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071858|totalGroups|176
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071859|totalGroups|177
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071906|totalGroups|178
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071907|totalGroups|179
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071908|totalGroups|180
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071909|totalGroups|181
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071912|totalGroups|182
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071913|totalGroups|183
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071916|totalGroups|184
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071917|totalGroups|185
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071918|totalGroups|186
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071919|totalGroups|187
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071920|totalGroups|188
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071921|totalGroups|189
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071922|totalGroups|190
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071926|totalGroups|191
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071927|totalGroups|192
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071928|totalGroups|193
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071929|totalGroups|194
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071936|totalGroups|195
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071937|totalGroups|196
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071938|totalGroups|197
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071939|totalGroups|198
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071946|totalGroups|199
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071947|totalGroups|200
-INFO|0703-163533|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|600
-INFO|0703-163533|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-163533|TurboAggregate: Processing batch|batchSize|13|totalLinesProcessed|600
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071948|totalGroups|201
-INFO|0703-163533|TurboAggregate: New group created|groupKey|1002-071949|totalGroups|202
-INFO|0703-163533|TurboAggregate: Batch processed|successCount|13|errorCount|0|totalLinesProcessed|613
-TRACE|0703-163533|paul@127.0.0.1:33718|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-163533|paul@127.0.0.1:33718|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-163533|paul@127.0.0.1:33718|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-163533|paul@127.0.0.1:33718|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-163533|paul@127.0.0.1:33718|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-163533|paul@127.0.0.1:33718|File processing complete|path|mapr_testdata.log|remainingPending|0
-INFO|0703-163533|paul@127.0.0.1:33718|All files processed|count|1
-DEBUG|0703-163533|paul@127.0.0.1:33718|Turbo mode: flushing data before EOF signal
-DEBUG|0703-163533|paul@127.0.0.1:33718|Flushing turbo data|channelLen|0
-DEBUG|0703-163533|paul@127.0.0.1:33718|Turbo channel drained successfully
-DEBUG|0703-163533|paul@127.0.0.1:33718|Waiting for data transmission|duration|500ms
-DEBUG|0703-163534|paul@127.0.0.1:33718|Command finished|activeCommands|0|pendingFiles|0
-INFO|0703-163534|paul@127.0.0.1:33718|shutdown() called|activeCommands|0|turboMode|true
-DEBUG|0703-163534|paul@127.0.0.1:33718|Flushing turbo data|channelLen|0
-DEBUG|0703-163534|paul@127.0.0.1:33718|Turbo channel drained successfully
-TRACE|0703-163534|paul@127.0.0.1:33718|flush()|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:368
-TRACE|0703-163534|paul@127.0.0.1:33718|flush|lines|0|server|0|mapr|0|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-163534|paul@127.0.0.1:33718|ALL lines sent|0xc00028c240
-TRACE|0703-163534|paul@127.0.0.1:33718|baseHandler.Read|checking turboLines channel|channelLen|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:94
-TRACE|0703-163534|paul@127.0.0.1:33718|baseHandler.Read|EOF received and channel empty, disabling turbo mode|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:132
-TRACE|0703-163534|paul@127.0.0.1:33718|baseHandler.Read|no data in turboLines, falling through|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:139
-INFO|0703-163534|paul@127.0.0.1:33718|Shutting down turbo aggregate
-INFO|0703-163534|TurboAggregate: Shutdown called|linesProcessed|613|currentGroups|202
-INFO|0703-163534|TurboAggregate: Processing final batch
-INFO|0703-163534|TurboAggregate: Waiting for all processing to complete
-INFO|0703-163534|TurboAggregate: All processing complete, groups before final serialization|groupCount|202
-INFO|0703-163534|TurboAggregate: Starting serialization|linesProcessed|613|currentGroups|202
-INFO|0703-163534|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-163534|TurboAggregate: Waiting for batch processing to complete
-INFO|0703-163534|TurboAggregate: Batch processor stopped by shutdown
-INFO|0703-163534|TurboAggregate: Serialization loop stopped by shutdown
-INFO|0703-163534|TurboAggregate: Serialization loop ended
-INFO|0703-163534|TurboAggregate: Batch processor loop ended
-ERROR|0703-163534|paul@127.0.0.1:33718|read tcp 127.0.0.1:4242->127.0.0.1:33718: read: connection reset by peer
-INFO|0703-163534|2000147|stats.go:53|8|17|7|1.33|115h0m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-163534|paul@127.0.0.1:33718|Good bye Mister!
-INFO|0703-163534|paul@127.0.0.1:33718|Shutting down turbo aggregate
-INFO|0703-163534|TurboAggregate: Shutdown called|linesProcessed|613|currentGroups|202
-INFO|0703-163534|TurboAggregate: Processing final batch
-INFO|0703-163534|TurboAggregate: Waiting for all processing to complete
-INFO|0703-163534|TurboAggregate: All processing complete, groups before final serialization|groupCount|202
-INFO|0703-163534|TurboAggregate: Starting serialization|linesProcessed|613|currentGroups|202
-INFO|0703-163534|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-163534|TurboAggregate: Waiting for batch processing to complete
-INFO|0703-163534|TurboAggregate: Groups before serialization|count|202
-INFO|0703-163534|TurboAggregate: Serialization details|groupCount|202|sampleGroups|[group=1002-071849, samples=2 group=1002-071647, samples=3 group=1002-071439, samples=3 group=1002-071329, samples=3 group=1002-071926, samples=2]
-INFO|0703-163534|TurboAggregate: Calling group.Serialize
-TRACE|0703-163534|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071659])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163534|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071927])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163534|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071529])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163534|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071148])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163534|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071716])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163534|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071427])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163534|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071838])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163534|Serialising mapr.AggregateSet|AggregateSet(Samples:10,FValues:map[count($time):10],SValues:map[$time:1002-071913])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163534|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071406])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163534|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071327])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163534|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071709])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163534|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071428])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163534|paul@127.0.0.1:33718|channel->handler: EOF|at /home/paul/git/dtail/internal/server/server.go:189
-INFO|0703-163534|paul@127.0.0.1:33718|Shutting down turbo aggregate
-INFO|0703-163534|TurboAggregate: Shutdown called|linesProcessed|613|currentGroups|202
-INFO|0703-163534|TurboAggregate: Processing final batch
-INFO|0703-163534|TurboAggregate: Waiting for all processing to complete
-INFO|0703-163534|TurboAggregate: All processing complete, groups before final serialization|groupCount|202
-INFO|0703-163534|TurboAggregate: Starting serialization|linesProcessed|613|currentGroups|202
-INFO|0703-163534|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-163534|TurboAggregate: Waiting for batch processing to complete
-INFO|0703-163534|2000147|stats.go:53|8|17|7|1.33|115h0m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071437])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071759])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071719])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071846])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071808])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071217])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071448])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071626])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-DEBUG|0703-163539|paul@127.0.0.1:33718|Shutdown timeout reached, enforcing shutdown
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071219])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071207])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071346])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-163539|paul@127.0.0.1:33718|Shutting down turbo aggregate
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071308])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-163539|TurboAggregate: Shutdown called|linesProcessed|613|currentGroups|202
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071357])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-163539|TurboAggregate: Processing final batch
-INFO|0703-163539|TurboAggregate: Waiting for all processing to complete
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071936])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-163539|TurboAggregate: All processing complete, groups before final serialization|groupCount|202
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071729])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-163539|TurboAggregate: Starting serialization|linesProcessed|613|currentGroups|202
-INFO|0703-163539|TurboAggregate: Processing remaining batch before serialization
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071336])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-163539|TurboAggregate: Waiting for batch processing to complete
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071456])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071319])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071628])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071726])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071226])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071907])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071857])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071317])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:11,FValues:map[count($time):11],SValues:map[$time:1002-071948])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071257])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071557])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071739])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071258])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071926])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071938])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071407])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:23,FValues:map[count($time):23],SValues:map[$time:1002-071147])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071906])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071429])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071206])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071438])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071436])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071848])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071856])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071609])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071237])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071418])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071209])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:10,FValues:map[count($time):10],SValues:map[$time:1002-071912])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071617])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071449])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071908])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071828])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071616])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071639])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071318])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071647])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071656])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071236])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:1,FValues:map[count($time):1],SValues:map[$time:1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071826])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071817])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071309])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071619])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071547])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071648])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071256])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071559])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071338])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071627])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071446])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071218])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071249])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071708])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071347])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071439])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071526])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071637])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071416])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071649])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071809])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071507])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071929])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071717])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071538])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:9,FValues:map[count($time):9],SValues:map[$time:1002-071921])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071528])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071356])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071348])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071919])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071546])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071518])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071916])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071618])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071158])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071329])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071508])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071229])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071326])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071549])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071818])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071928])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071457])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071307])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:20,FValues:map[count($time):20],SValues:map[$time:1002-071143])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071408])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071359])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071737])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071937])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071306])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071216])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071849])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071909])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071239])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071247])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071638])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071556])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071736])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071339])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071706])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:7,FValues:map[count($time):7],SValues:map[$time:1002-071920])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071816])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071749])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071847])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071858])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071246])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071607])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071727])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071517])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071836])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071349])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071758])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071819])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071918])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071208])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071839])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071248])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071806])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071629])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071548])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071757])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071837])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071636])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071747])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071156])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071947])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071748])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071859])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071159])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071658])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071328])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071917])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071606])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071259])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071509])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071807])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071756])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071337])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071829])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071506])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071157])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071608])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071316])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071358])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071149])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071516])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071409])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071728])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071746])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071519])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071527])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071707])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071459])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071558])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071657])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071447])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071738])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071646])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071718])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071238])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071458])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071539])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:20,FValues:map[count($time):20],SValues:map[$time:1002-071213])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:4,FValues:map[count($time):4],SValues:map[$time:1002-071922])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071228])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071426])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071419])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071536])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071827])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071939])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071946])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071227])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071417])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071537])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-163539|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-163539|TurboAggregate: After serialization|groupsRemaining|202
-INFO|0703-163539|TurboAggregate: Groups before serialization|count|202
-INFO|0703-163539|TurboAggregate: Serialization details|groupCount|202|sampleGroups|[group=1002-071849, samples=2 group=1002-071647, samples=3 group=1002-071439, samples=3 group=1002-071329, samples=3 group=1002-071926, samples=2]
-INFO|0703-163539|TurboAggregate: Calling group.Serialize
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071746])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071627])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071528])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071208])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071317])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071838])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071318])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071647])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071929])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071247])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071216])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071427])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071729])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:10,FValues:map[count($time):10],SValues:map[$time:1002-071913])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071328])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071927])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071857])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071207])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071758])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071906])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071336])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071659])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071227])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071807])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071206])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071716])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071309])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071339])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071848])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071737])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071749])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:23,FValues:map[count($time):23],SValues:map[$time:1002-071147])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071429])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071226])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071259])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071816])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071246])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071738])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071407])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071509])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071718])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071808])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071756])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071717])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071156])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071348])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071218])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071239])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071759])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071637])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071606])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071439])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071926])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071706])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071349])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071436])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071219])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071346])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071459])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071748])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071727])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071619])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071539])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071558])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071516])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071836])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071818])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071819])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071236])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071828])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071337])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071916])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071829])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071557])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071507])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071849])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071508])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071846])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071228])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071548])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071616])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071408])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071506])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071428])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071536])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071936])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071256])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071329])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:4,FValues:map[count($time):4],SValues:map[$time:1002-071922])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071238])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071306])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071917])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071447])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071736])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:10,FValues:map[count($time):10],SValues:map[$time:1002-071912])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071519])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071406])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071608])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071529])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071839])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071806])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071338])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071709])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071649])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071827])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071809])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071817])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071739])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:11,FValues:map[count($time):11],SValues:map[$time:1002-071948])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071419])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071307])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071626])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071457])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071628])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071418])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071908])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:20,FValues:map[count($time):20],SValues:map[$time:1002-071213])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071448])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071656])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071939])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071249])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071538])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071859])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071257])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071826])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071449])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071217])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071556])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071537])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071618])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071747])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071909])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071417])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071347])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071416])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071719])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071409])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071728])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071617])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071937])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071149])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071639])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071438])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071918])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071938])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071658])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071248])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071928])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071847])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071357])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071237])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071316])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071547])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071456])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071707])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:9,FValues:map[count($time):9],SValues:map[$time:1002-071921])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071648])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071446])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071437])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071657])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071609])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071629])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071458])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071919])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071308])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071546])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071209])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071258])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071158])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071946])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071426])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071518])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071356])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071359])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071856])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071837])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071607])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071319])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071858])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071726])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071526])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071636])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071527])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071229])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071326])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:20,FValues:map[count($time):20],SValues:map[$time:1002-071143])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071757])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071947])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071708])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071638])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071646])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071517])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071358])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:1,FValues:map[count($time):1],SValues:map[$time:1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071559])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071159])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:7,FValues:map[count($time):7],SValues:map[$time:1002-071920])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071157])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071327])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071148])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071907])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071549])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-163539|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-163539|TurboAggregate: After serialization|groupsRemaining|202
-INFO|0703-163539|TurboAggregate: Groups before serialization|count|202
-INFO|0703-163539|TurboAggregate: Serialization details|groupCount|202|sampleGroups|[group=1002-071849, samples=2 group=1002-071647, samples=3 group=1002-071439, samples=3 group=1002-071329, samples=3 group=1002-071926, samples=2]
-INFO|0703-163539|TurboAggregate: Calling group.Serialize
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071417])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071628])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071726])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:20,FValues:map[count($time):20],SValues:map[$time:1002-071143])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071827])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071328])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071316])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071739])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071749])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071819])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071307])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071448])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071346])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071946])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071357])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071558])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071506])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071447])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071647])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071207])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071458])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071217])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071759])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071549])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071329])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071938])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071347])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071206])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071358])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071559])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071807])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071517])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071556])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071457])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071858])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071728])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071717])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071857])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071529])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071509])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071548])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071916])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071507])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071238])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071158])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071659])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071909])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071939])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071616])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071729])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071929])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071706])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071356])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071658])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071436])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071646])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071919])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071859])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071849])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071339])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071816])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071527])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071157])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071737])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071806])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071338])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071426])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071629])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071756])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071236])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071429])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071826])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071409])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:7,FValues:map[count($time):7],SValues:map[$time:1002-071920])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071519])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071407])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071208])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071539])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:11,FValues:map[count($time):11],SValues:map[$time:1002-071948])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071847])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071216])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071617])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071609])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071218])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071428])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071538])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071419])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071257])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071518])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071626])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071747])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071359])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071446])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071528])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071319])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071716])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071427])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071828])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071537])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071408])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071516])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071809])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071757])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071818])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071808])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071707])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071439])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071736])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071246])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071229])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071708])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071619])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071508])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071638])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071326])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071416])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071648])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071237])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071719])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071438])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071336])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071159])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071746])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071627])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071608])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071239])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071148])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071637])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071636])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071947])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071607])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071248])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071317])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071838])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071738])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071718])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071459])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071928])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071209])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071256])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071309])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071318])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071848])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071406])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071547])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071649])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071829])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071557])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071918])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071927])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071906])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:9,FValues:map[count($time):9],SValues:map[$time:1002-071921])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071936])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071618])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071259])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071526])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071758])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071226])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071639])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071856])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071656])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:10,FValues:map[count($time):10],SValues:map[$time:1002-071912])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071227])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071308])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071837])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071727])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071337])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071657])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:4,FValues:map[count($time):4],SValues:map[$time:1002-071922])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071437])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071228])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071149])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071917])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071907])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071836])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071817])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071156])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071846])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:23,FValues:map[count($time):23],SValues:map[$time:1002-071147])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071418])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:10,FValues:map[count($time):10],SValues:map[$time:1002-071913])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071219])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071839])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071536])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:20,FValues:map[count($time):20],SValues:map[$time:1002-071213])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:1,FValues:map[count($time):1],SValues:map[$time:1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071258])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071908])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071926])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071709])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071937])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071306])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071546])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071606])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071456])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071349])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071449])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071348])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071327])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071249])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071748])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071247])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-163539|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-163539|TurboAggregate: After serialization|groupsRemaining|202
-INFO|0703-163539|TurboAggregate: Groups before serialization|count|202
-INFO|0703-163539|TurboAggregate: Serialization details|groupCount|202|sampleGroups|[group=1002-071849, samples=2 group=1002-071647, samples=3 group=1002-071439, samples=3 group=1002-071329, samples=3 group=1002-071926, samples=2]
-INFO|0703-163539|TurboAggregate: Calling group.Serialize
-TRACE|0703-163539|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071609])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-163539|TurboAggregate: Shutdown complete
-INFO|0703-163539|TurboAggregate: Shutdown complete
-INFO|0703-163539|TurboAggregate: Shutdown complete
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071326])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071419])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071257])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071546])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071518])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071348])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071839])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071946])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071459])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:9,FValues:map[count($time):9],SValues:map[$time:1002-071921])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071757])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:10,FValues:map[count($time):10],SValues:map[$time:1002-071913])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071747])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:10,FValues:map[count($time):10],SValues:map[$time:1002-071912])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071449])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071229])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071149])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071916])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071827])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071336])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071559])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071846])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071458])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071309])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071657])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071439])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071248])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071806])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071358])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071847])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071557])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071738])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071939])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071529])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:23,FValues:map[count($time):23],SValues:map[$time:1002-071147])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071928])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071236])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071416])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071209])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071746])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071316])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071259])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071258])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071436])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071736])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071938])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071636])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071537])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071308])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:20,FValues:map[count($time):20],SValues:map[$time:1002-071213])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071726])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071659])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:11,FValues:map[count($time):11],SValues:map[$time:1002-071948])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071547])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071639])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:20,FValues:map[count($time):20],SValues:map[$time:1002-071143])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071237])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071418])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071728])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071926])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071816])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071527])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071328])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071857])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071509])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071148])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071539])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071709])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071759])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071637])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071409])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071656])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071208])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071408])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071526])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071528])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071327])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071748])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071716])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:1,FValues:map[count($time):1],SValues:map[$time:1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071809])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071918])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071249])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071428])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071207])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071227])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071157])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071426])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071646])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071859])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071826])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071447])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071339])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:4,FValues:map[count($time):4],SValues:map[$time:1002-071922])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071246])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071909])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071856])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071407])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071917])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071247])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071319])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071357])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071606])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071739])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071349])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071947])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071619])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071457])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071507])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071737])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071708])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071346])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071549])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071318])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071818])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071729])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071758])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071908])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071919])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071216])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071508])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071627])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071556])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071829])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071356])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071727])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071256])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071626])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:7,FValues:map[count($time):7],SValues:map[$time:1002-071920])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071607])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071906])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071819])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071317])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071858])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071206])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071937])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071217])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071429])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071649])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071427])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071838])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071719])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071516])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071647])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071448])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071158])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071848])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071406])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071608])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071446])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071927])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071329])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071717])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071338])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071156])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071239])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071749])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071548])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071616])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071219])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071306])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071828])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071347])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071226])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071307])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071817])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071506])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071936])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071648])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071836])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071618])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071629])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071238])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071159])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071706])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071519])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071437])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071228])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071756])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071929])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071658])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071638])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071707])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071536])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071628])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071558])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071218])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071808])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071337])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071907])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071438])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071456])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071849])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071617])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071538])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071718])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071807])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071417])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071517])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071359])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-163544|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071837])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-163544|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-163544|TurboAggregate: After serialization|groupsRemaining|202
-INFO|0703-163544|2000147|stats.go:53|8|11|7|1.20|115h0m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-163544|TurboAggregate: Shutdown complete
-INFO|0703-163554|2000147|stats.go:53|8|10|7|1.31|115h0m32s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-163604|2000147|stats.go:53|8|10|7|1.49|115h0m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-163614|2000147|stats.go:53|8|10|7|1.26|115h0m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-163624|2000147|stats.go:53|8|10|7|1.06|115h1m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-163634|2000147|stats.go:53|8|10|7|1.13|115h1m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-163644|2000147|stats.go:53|8|10|7|1.11|115h1m22s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-163654|2000147|stats.go:53|8|10|7|1.17|115h1m32s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-163704|2000147|stats.go:53|8|10|7|1.15|115h1m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-163715|2000147|stats.go:53|8|10|7|1.35|115h1m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-163725|2000147|stats.go:53|8|10|7|1.45|115h2m2s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-163735|2000147|stats.go:53|8|10|7|1.46|115h2m12s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-163745|2000147|stats.go:53|8|10|7|1.46|115h2m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-163755|2000147|stats.go:53|8|10|7|1.55|115h2m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-163805|2000147|stats.go:53|8|10|7|1.39|115h2m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-163815|2000147|stats.go:53|8|10|7|1.40|115h2m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-163825|2000147|stats.go:53|8|10|7|1.19|115h3m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-163835|2000147|stats.go:53|8|10|7|1.00|115h3m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-163845|2000147|stats.go:53|8|10|7|0.92|115h3m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-163855|2000147|stats.go:53|8|10|7|0.86|115h3m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-163905|2000147|stats.go:53|8|10|7|0.73|115h3m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-163915|2000147|stats.go:53|8|10|7|0.86|115h3m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-163925|2000147|stats.go:53|8|10|7|0.72|115h4m3s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-163935|2000147|stats.go:53|8|10|7|0.61|115h4m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-163945|2000147|stats.go:53|8|10|7|0.52|115h4m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-163955|2000147|stats.go:53|8|10|7|0.51|115h4m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164005|2000147|stats.go:53|8|10|7|0.43|115h4m43s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-164015|2000147|stats.go:53|8|10|7|0.60|115h4m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164025|2000147|stats.go:53|8|10|7|0.74|115h5m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164035|2000147|stats.go:53|8|10|7|0.62|115h5m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164045|2000147|stats.go:53|8|10|7|0.53|115h5m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164055|2000147|stats.go:53|8|10|7|0.53|115h5m33s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-164105|2000147|stats.go:53|8|10|7|0.44|115h5m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164115|2000147|stats.go:53|8|10|7|0.68|115h5m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164125|2000147|stats.go:53|8|10|7|0.66|115h6m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164135|2000147|stats.go:53|8|10|7|0.56|115h6m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164145|2000147|stats.go:53|8|10|7|0.55|115h6m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164155|2000147|stats.go:53|8|10|7|0.47|115h6m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164205|2000147|stats.go:53|8|10|7|0.62|115h6m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164215|2000147|stats.go:53|8|10|7|0.68|115h6m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164225|2000147|stats.go:53|8|10|7|0.58|115h7m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164235|2000147|stats.go:53|8|10|7|0.89|115h7m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164245|2000147|stats.go:53|8|10|7|0.83|115h7m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164255|2000147|stats.go:53|8|10|7|0.78|115h7m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164305|2000147|stats.go:53|8|10|7|0.66|115h7m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164316|2000147|stats.go:53|8|10|7|0.63|115h7m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164326|2000147|stats.go:53|8|10|7|0.69|115h8m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164336|2000147|stats.go:53|8|10|7|0.66|115h8m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164346|2000147|stats.go:53|8|10|7|0.71|115h8m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164356|2000147|stats.go:53|8|10|7|0.60|115h8m33s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-164406|2000147|stats.go:53|8|10|7|0.51|115h8m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164416|2000147|stats.go:53|8|10|7|0.58|115h8m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164426|2000147|stats.go:53|8|10|7|0.57|115h9m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164436|2000147|stats.go:53|8|10|7|0.56|115h9m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164446|2000147|stats.go:53|8|10|7|0.55|115h9m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164456|2000147|stats.go:53|8|10|7|0.47|115h9m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164506|2000147|stats.go:53|8|10|7|0.47|115h9m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164516|2000147|stats.go:53|8|10|7|0.40|115h9m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164526|2000147|stats.go:53|8|10|7|0.48|115h10m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164535|Handling connection
-INFO|0703-164535|paul@127.0.0.1:51190|Incoming authorization
-INFO|0703-164535|paul@127.0.0.1:51190|Reading|./id_rsa.pub
-DEBUG|0703-164535|paul@127.0.0.1:51190|Authorized public key fingerprint|SHA256:6JCEoZk+DgZKsndyjIGCghIaoKMMxeswdTAYRQ7WBFE
-DEBUG|0703-164535|paul@127.0.0.1:51190|Offered public key fingerprint|SHA256:6JCEoZk+DgZKsndyjIGCghIaoKMMxeswdTAYRQ7WBFE
-INFO|0703-164535|2000147|stats.go:53|8|14|7|0.49|115h10m13s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
-INFO|0703-164535|paul@127.0.0.1:51190|Invoking channel handler
-INFO|0703-164535|paul@127.0.0.1:51190|Invoking request handler
-ERROR|0703-164535|paul@127.0.0.1:51190|ssh: parse error in message type 0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Creating new server handler
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 bWFwIGZyb20gU1RBVFMgc2VsZWN0IGNvdW50KCR0aW1lKSwkdGltZSxtYXgoJGdvcm91dGluZXMpLGF2ZygkZ29yb3V0aW5lcyksbWluKCRnb3JvdXRpbmVzKSBncm91cCBieSAkdGltZSBvcmRlciBieSBjb3VudCgkdGltZSkgZGVzYyBvdXRmaWxlIGRtYXAzX3NlcnZlci5jc3YudG1w
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|map from STATS select count($time),$time,max($goroutines),avg($goroutines),min($goroutines) group by $time order by count($time) desc outfile dmap3_server.csv.tmp|14|[map from STATS select count($time),$time,max($goroutines),avg($goroutines),min($goroutines) group by $time order by count($time) desc outfile dmap3_server.csv.tmp]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|14|[map from STATS select count($time),$time,max($goroutines),avg($goroutines),min($goroutines) group by $time order by count($time) desc outfile dmap3_server.csv.tmp]
-INFO|0703-164535|Creating turbo aggregate for MapReduce|query|from STATS select count($time),$time,max($goroutines),avg($goroutines),min($goroutines) group by $time order by count($time) desc outfile dmap3_server.csv.tmp
-INFO|0703-164535|Creating turbo log format parser|default
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|TurboAggregate: Starting|interval|5s
-INFO|0703-164535|TurboAggregate: Started, waiting for data
-DEBUG|0703-164535|paul@127.0.0.1:51190|Command finished|activeCommands|1|pendingFiles|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: Batch processor loop started
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: Serialization loop started
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|2
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|3
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|4
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|5
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m2
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|6
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|7
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071148|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m2
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|8
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|9
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|0
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|0
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|0|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|0|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Parsed fields|lineNumber|0|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:16 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071143|totalGroups|1
-INFO|0703-164535|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|1
-INFO|0703-164535|TurboAggregate: Parsed fields|lineNumber|0|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:16 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|2
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|2
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|2
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Parsed fields|lineNumber|2|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:16 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164535|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|3
-INFO|0703-164535|TurboAggregate: Parsed fields|lineNumber|3|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:12 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|4
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|4
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Parsed fields|lineNumber|4|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:17 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164535|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|5
-INFO|0703-164535|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|6
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|7
-INFO|0703-164535|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|8
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|8
-INFO|0703-164535|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|10
-INFO|0703-164535|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|11
-INFO|0703-164535|TurboAggregate: Parsed fields|lineNumber|4|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:12 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071147|totalGroups|2
-INFO|0703-164535|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|9
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071148|totalGroups|3
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071149|totalGroups|4
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: Parsed fields|lineNumber|1|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:16 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071156|totalGroups|5
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071157|totalGroups|6
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|129
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071158|totalGroups|7
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071159|totalGroups|8
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071206|totalGroups|9
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|10
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071208|totalGroups|11
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071209|totalGroups|12
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071213|totalGroups|13
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071216|totalGroups|14
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071217|totalGroups|15
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071218|totalGroups|16
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071219|totalGroups|17
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|11
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|415
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|14
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|456
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|458
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|15
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|458
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071227|totalGroups|19
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071228|totalGroups|20
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071229|totalGroups|21
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071236|totalGroups|22
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071237|totalGroups|23
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071238|totalGroups|24
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071239|totalGroups|25
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071246|totalGroups|26
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|495
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071247|totalGroups|27
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071248|totalGroups|28
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071249|totalGroups|29
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071256|totalGroups|30
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071257|totalGroups|31
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071258|totalGroups|32
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|574
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071259|totalGroups|33
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071306|totalGroups|34
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071307|totalGroups|35
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071308|totalGroups|36
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071309|totalGroups|37
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071226|totalGroups|18
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|693
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|697
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071327|totalGroups|38
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|13|totalLinesProcessed|705
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071317|totalGroups|41
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071318|totalGroups|42
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071328|totalGroups|40
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071319|totalGroups|43
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071329|totalGroups|44
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071326|totalGroups|45
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|13|errorCount|0|totalLinesProcessed|745
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071336|totalGroups|46
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071337|totalGroups|47
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071338|totalGroups|48
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071339|totalGroups|49
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071346|totalGroups|50
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|770
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071347|totalGroups|51
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071348|totalGroups|52
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071349|totalGroups|53
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071356|totalGroups|54
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071357|totalGroups|55
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071316|totalGroups|39
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071358|totalGroups|56
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|834
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|854
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071359|totalGroups|57
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071406|totalGroups|58
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071407|totalGroups|59
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071408|totalGroups|60
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|954
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071409|totalGroups|61
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071416|totalGroups|62
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071417|totalGroups|63
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071418|totalGroups|64
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|19|totalLinesProcessed|966
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071419|totalGroups|65
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|981
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071426|totalGroups|66
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071427|totalGroups|67
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|1000|linePreview|INFO|1002-071318|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071428|totalGroups|68
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071429|totalGroups|69
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071436|totalGroups|70
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|19|errorCount|0|totalLinesProcessed|1038
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|13
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|1059
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|16
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|1125
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|1146
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|1202
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071148|1|stats.go:56|8|11|7|0.21|471h0m2
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071207|totalGroups|10
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|1290
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|725
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|699
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|1415
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071438|totalGroups|72
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|1421
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071439|totalGroups|73
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|103
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|103|totalLinesProcessed|1456
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071446|totalGroups|74
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|12
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071447|totalGroups|75
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071448|totalGroups|76
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071449|totalGroups|77
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071456|totalGroups|78
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|1580
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071457|totalGroups|79
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|1604
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|1635
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|1641
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|1666
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|1700
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|1775
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|1794
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|1824
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071458|totalGroups|80
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071459|totalGroups|81
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071506|totalGroups|82
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|1910
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071508|totalGroups|84
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|1969
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|103|errorCount|0|totalLinesProcessed|1997
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|2000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071446|1|stats.go:56|8|11|7|0.21|471h0m2
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|2000|linePreview|INFO|1002-071316|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|2008
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|2089
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071509|totalGroups|85
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|2171
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|2000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071528|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071516|totalGroups|86
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071517|totalGroups|87
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|2222
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071528|totalGroups|89
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|2315
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071529|totalGroups|90
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|2320
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071518|totalGroups|88
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|2328
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071519|totalGroups|91
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071536|totalGroups|92
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071526|totalGroups|93
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071537|totalGroups|94
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071527|totalGroups|95
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|2388
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071538|totalGroups|96
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|33|totalLinesProcessed|2409
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071539|totalGroups|97
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|2463
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|2268
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071546|totalGroups|98
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071547|totalGroups|99
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071548|totalGroups|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|1241
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|33|errorCount|0|totalLinesProcessed|2552
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|2554
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|10|totalLinesProcessed|1637
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071659|totalGroups|101
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071549|totalGroups|102
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071706|totalGroups|103
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071707|totalGroups|104
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071556|totalGroups|105
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071708|totalGroups|106
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|10|errorCount|0|totalLinesProcessed|2623
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071709|totalGroups|107
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071716|totalGroups|108
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071557|totalGroups|109
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071717|totalGroups|110
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071718|totalGroups|111
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071558|totalGroups|112
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071719|totalGroups|113
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|2707
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071726|totalGroups|115
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071559|totalGroups|114
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071727|totalGroups|116
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071606|totalGroups|117
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071728|totalGroups|118
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071729|totalGroups|119
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071607|totalGroups|120
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071736|totalGroups|121
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071437|totalGroups|71
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071608|totalGroups|122
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071737|totalGroups|123
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|2792
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071738|totalGroups|124
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071609|totalGroups|125
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|2616
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071739|totalGroups|126
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071616|totalGroups|127
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071746|totalGroups|128
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071747|totalGroups|130
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071617|totalGroups|130
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071748|totalGroups|131
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071618|totalGroups|132
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071749|totalGroups|133
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|2924
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|2721
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071756|totalGroups|134
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|2945
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|2946
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071757|totalGroups|135
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|2986
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|3000|linePreview|INFO|1002-071619|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071619|totalGroups|137
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071626|totalGroups|138
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|3037
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071627|totalGroups|139
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071628|totalGroups|140
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071629|totalGroups|141
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|3099
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|826
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071636|totalGroups|142
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071637|totalGroups|143
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|3000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071618|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|25|totalLinesProcessed|3057
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071638|totalGroups|144
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071639|totalGroups|145
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|25|errorCount|0|totalLinesProcessed|3244
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071646|totalGroups|146
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|3256
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071647|totalGroups|147
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|3287
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071648|totalGroups|148
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071649|totalGroups|149
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071656|totalGroups|150
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|3352
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|3353
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071657|totalGroups|151
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071658|totalGroups|152
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|3489
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|18
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|19
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|3591
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|3605
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|44|totalLinesProcessed|3381
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|3621
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071856|totalGroups|153
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071857|totalGroups|154
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|3696
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071759|totalGroups|156
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071806|totalGroups|157
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071807|totalGroups|158
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|3734
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|3750
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|44|errorCount|0|totalLinesProcessed|3770
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|3780
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|3802
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071808|totalGroups|159
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071809|totalGroups|160
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071816|totalGroups|161
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071817|totalGroups|162
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071818|totalGroups|163
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071819|totalGroups|164
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071826|totalGroups|165
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071827|totalGroups|166
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071828|totalGroups|167
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|4000|linePreview|INFO|1002-071528|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|3668
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071829|totalGroups|168
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071836|totalGroups|169
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|4046
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|4055
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|2650
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071758|totalGroups|136
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071507|totalGroups|83
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|17
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|4078
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|2473
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|4234
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|4278
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071838|totalGroups|171
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|3471
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|4313
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|4320
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|4358
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071839|totalGroups|172
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|4501
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071846|totalGroups|173
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071847|totalGroups|174
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071848|totalGroups|175
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071849|totalGroups|176
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|4626
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|4651
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|4707
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|4753
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|4781
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|4852
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|4864
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|4865
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|4869
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|4875
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|4875
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|4863
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|4893
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071906|totalGroups|178
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071907|totalGroups|179
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|4812
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071908|totalGroups|180
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|5000|linePreview|INFO|1002-071827|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|5000|linePreview|INFO|1002-071516|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071859|totalGroups|177
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|5152
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|5159
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|5175
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071909|totalGroups|181
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071912|totalGroups|182
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|5242
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071913|totalGroups|183
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|4637
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|5314
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071916|totalGroups|184
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071917|totalGroups|185
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071918|totalGroups|186
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071919|totalGroups|187
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071920|totalGroups|188
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|5464
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071921|totalGroups|189
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071922|totalGroups|190
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|70|totalLinesProcessed|5377
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071926|totalGroups|191
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|5573
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071927|totalGroups|192
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071928|totalGroups|193
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|5655
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|20
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071929|totalGroups|194
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|5694
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071936|totalGroups|195
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071937|totalGroups|196
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|5776
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|5779
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|5818
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|70|errorCount|0|totalLinesProcessed|5830
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071938|totalGroups|197
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|5911
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071939|totalGroups|198
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|5932
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|6000|linePreview|INFO|1002-071458|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071946|totalGroups|199
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071947|totalGroups|200
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071948|totalGroups|201
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|6089
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071949|totalGroups|202
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|6103
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|6116
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|5932
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|6170
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|6098
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|79|totalLinesProcessed|6183
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|6287
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071858|totalGroups|155
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|6409
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|25|totalLinesProcessed|6435
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|79|errorCount|0|totalLinesProcessed|6467
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|78|totalLinesProcessed|6510
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|25|errorCount|0|totalLinesProcessed|6515
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|6529
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|6539
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|6544
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|6616
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|6680
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|6733
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|99|totalLinesProcessed|6569
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|6773
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|78|errorCount|0|totalLinesProcessed|6801
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|56|totalLinesProcessed|6813
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|4000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071457|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|6925
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|7000|linePreview|INFO|1002-071208|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|7016
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|20|totalLinesProcessed|7040
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|56|errorCount|0|totalLinesProcessed|7069
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|7123
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|20|errorCount|0|totalLinesProcessed|7137
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|7152
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|7162
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|7171
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|4519
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|99|errorCount|0|totalLinesProcessed|7187
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|7299
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|7313
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|7320
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|7293
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|7361
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|7382
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|7412
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|7415
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|7432
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|67|totalLinesProcessed|7457
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|15|totalLinesProcessed|7586
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|7591
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|15|errorCount|0|totalLinesProcessed|7633
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|82|totalLinesProcessed|7635
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|7674
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|7686
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|7727
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|67|errorCount|0|totalLinesProcessed|7731
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|4327
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|7753
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|7756
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|6|totalLinesProcessed|7783
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|6|errorCount|0|totalLinesProcessed|7809
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|7819
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|7823
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|7817
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|7912
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|7865
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|7974
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|8000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071216|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|8000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071937|1|stats.go:56|8|11|7|0.21|471h0m2
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|8000|linePreview|INFO|1002-071527|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|8008
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|8049
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|5000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071619|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|8112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|8142
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|8222
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|7667
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|7778
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|8475
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|8541
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|8577
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|8586
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|8584
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|6|totalLinesProcessed|8593
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|6|errorCount|0|totalLinesProcessed|8635
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|85|totalLinesProcessed|8666
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|8812
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|23|totalLinesProcessed|7827
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|8836
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|8871
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|8873
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|8971
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|8984
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|23|errorCount|0|totalLinesProcessed|9001
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|51|totalLinesProcessed|7288
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|9029
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|9058
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|82|errorCount|0|totalLinesProcessed|7817
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|9128
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|85|errorCount|0|totalLinesProcessed|9139
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|9156
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|9173
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|51|errorCount|0|totalLinesProcessed|9270
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|20|totalLinesProcessed|9281
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|9285
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|59|totalLinesProcessed|9318
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|20|errorCount|0|totalLinesProcessed|9357
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|21
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|9460
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|9475
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|22
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|9488
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|23
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|9552
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|59|errorCount|0|totalLinesProcessed|9557
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|24
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|9587
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|9597
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|9607
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|9620
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|9636
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|9649
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|9677
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|9686
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: New group created|groupKey|1002-071837|totalGroups|170
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|9753
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|9774
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|9812
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|36|totalLinesProcessed|9847
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|9907
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|9913
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|9943
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|9960
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|36|errorCount|0|totalLinesProcessed|9964
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|9968
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|26
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|25
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|10000|linePreview|INFO|1002-071807|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|10055
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|10072
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|10123
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|10131
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|10147
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|10347
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|10354
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|10426
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|10430
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|10437
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|9986
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|9991
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|10584
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|10584
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|10660
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|10708
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|10729
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|10694
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|10805
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|10858
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|9594
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|10909
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|10931
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|55|totalLinesProcessed|9927
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|27
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|11000|linePreview|INFO|1002-071319|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|10483
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|11124
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|11184
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|11131
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|11206
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|11268
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|11295
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|55|errorCount|0|totalLinesProcessed|11304
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|28
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|11362
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|11469
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|11503
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|11532
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|11547
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|11593
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|11669
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|11703
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|11766
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|11767
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|11855
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|11885
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|11911
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|11926
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|11973
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|12000|linePreview|INFO|1002-071328|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|12000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071348|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|11189
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|12218
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|12232
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|12262
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|12282
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|12303
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|12309
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|12332
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|12101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|12443
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|12571
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|12597
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|12608
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|12642
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|12653
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|29
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|12701
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|12794
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|12633
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|30
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|12847
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|12917
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|12969
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|13000|linePreview|INFO|1002-071557|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|13133
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|13132
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|31
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|13158
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|13160
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|13019
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|13119
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|103
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|13294
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|13305
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|13311
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|103|totalLinesProcessed|11603
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|13424
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|13430
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|13477
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|13547
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|28|totalLinesProcessed|11118
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|11|totalLinesProcessed|13624
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|13371
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|13652
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|11|errorCount|0|totalLinesProcessed|13687
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|28|errorCount|0|totalLinesProcessed|13723
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|13773
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|2|totalLinesProcessed|13831
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|2|errorCount|0|totalLinesProcessed|13862
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|13863
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|34|totalLinesProcessed|13890
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|13896
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|103|errorCount|0|totalLinesProcessed|13925
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|13939
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|14000|linePreview|INFO|1002-071828|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|34|errorCount|0|totalLinesProcessed|14022
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|14033
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|14038
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|72|totalLinesProcessed|13725
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|14122
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|32
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|14168
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|72|errorCount|0|totalLinesProcessed|14240
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|14249
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|33
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|14279
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|14295
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|89|totalLinesProcessed|14347
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|14400
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|14408
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|14416
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|14486
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|89|errorCount|0|totalLinesProcessed|14545
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|14558
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|14619
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|94|totalLinesProcessed|14443
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|14649
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|14674
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|14600
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|14573
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|52|totalLinesProcessed|14561
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|15000|linePreview|INFO|1002-071939|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|15036
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|15041
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|52|errorCount|0|totalLinesProcessed|15068
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|15074
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|15085
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|94|errorCount|0|totalLinesProcessed|15090
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|15098
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|11800
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|11|totalLinesProcessed|13951
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|11|errorCount|0|totalLinesProcessed|15395
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|15444
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|15453
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|15495
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|15499
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|11541
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|15528
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|15548
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|13998
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|15702
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|15759
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|15762
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|15704
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|15785
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|15924
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|15973
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|16000|linePreview|INFO|1002-071937|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|15075
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|16032
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|16070
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|16108
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|16111
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|16145
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|16193
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|16297
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|16209
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|16415
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|15464
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|16442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|16477
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|16485
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|16545
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|16811
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|16823
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|16850
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|16860
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|16867
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|16974
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|16848
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|16983
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|17000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071947|1|stats.go:56|8|11|7|0.21|471h0m2
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|17000|linePreview|INFO|1002-071459|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|17056
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|17081
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|34
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|35
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|36
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|17225
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|17231
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|17241
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|17322
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|17324
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|73|totalLinesProcessed|17336
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|17367
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|17377
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|17425
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|46|totalLinesProcessed|14251
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|59|totalLinesProcessed|17444
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|103
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|103|totalLinesProcessed|17504
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|15499
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|73|errorCount|0|totalLinesProcessed|17573
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|17613
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|46|errorCount|0|totalLinesProcessed|17616
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|16799
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|17447
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|103|errorCount|0|totalLinesProcessed|17870
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|17899
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|17905
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|17938
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|17993
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|18000|linePreview|INFO|1002-071409|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|18050
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|18130
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|18133
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|18122
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|18139
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|18204
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|4|totalLinesProcessed|17440
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|4|errorCount|0|totalLinesProcessed|18238
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|18336
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|18386
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|15499
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|18414
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|18435
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|18492
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|37
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|18649
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|18727
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|18735
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|18749
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|18758
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|38
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|18782
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|18805
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|18805
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|18806
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|18806
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|18805
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|18867
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|18744
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|19000|linePreview|INFO|1002-071626|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|39
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|19071
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|19186
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|19213
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|19246
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|103
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|19258
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|19261
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|19264
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|19277
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|19340
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|19353
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|20|totalLinesProcessed|19379
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|103|totalLinesProcessed|19253
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|20|errorCount|0|totalLinesProcessed|19439
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|19482
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|19594
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|19602
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|19628
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|19685
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|19807
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|103|errorCount|0|totalLinesProcessed|19812
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|40
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|19881
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|19885
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|19908
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|17898
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|20000|linePreview|INFO|1002-071859|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|20000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071727|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|19938
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|20102
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|20032
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|20189
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|20192
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|24|totalLinesProcessed|20203
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|24|errorCount|0|totalLinesProcessed|20273
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|20280
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|20314
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|40|totalLinesProcessed|20216
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|20330
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|41
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|40|errorCount|0|totalLinesProcessed|20430
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|20446
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|87|totalLinesProcessed|20518
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|20537
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|42
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|20710
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|20741
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|87|errorCount|0|totalLinesProcessed|20761
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|33|totalLinesProcessed|20765
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|20664
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|33|errorCount|0|totalLinesProcessed|20855
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|20861
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|20900
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|43
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|20946
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|20953
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|21000|linePreview|INFO|1002-071509|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|21036
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|21115
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|32|totalLinesProcessed|19225
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|21146
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|21167
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|32|errorCount|0|totalLinesProcessed|21217
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|21225
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|44
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|45
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|21344
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|59|errorCount|0|totalLinesProcessed|17641
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|21377
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|21429
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|21504
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|21577
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|21599
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|21627
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|21629
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|21629
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|21685
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|18804
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|21884
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|21883
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|21637
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|20123
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|19|totalLinesProcessed|20878
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|22000|linePreview|INFO|1002-071236|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|22050
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|19|errorCount|0|totalLinesProcessed|22065
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|46|totalLinesProcessed|21910
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|22088
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|22128
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|46|errorCount|0|totalLinesProcessed|22206
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|48|totalLinesProcessed|22216
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|22219
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|23|totalLinesProcessed|22244
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|22306
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|23|errorCount|0|totalLinesProcessed|22324
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|22329
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|48|errorCount|0|totalLinesProcessed|22354
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|22368
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|22463
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|22552
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|22567
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|22648
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|22718
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|22741
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|22751
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|83|totalLinesProcessed|22682
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|22794
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|22894
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|22974
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|23000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071818|1|stats.go:56|8|11|7|0.21|471h0m2
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|23000|linePreview|INFO|1002-071646|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|23020
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|23048
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|22977
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|2|totalLinesProcessed|23118
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|2|errorCount|0|totalLinesProcessed|23148
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|83|errorCount|0|totalLinesProcessed|23193
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|23204
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|23219
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|58|totalLinesProcessed|20604
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|23289
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|23355
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|22|totalLinesProcessed|20621
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|23409
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|23411
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|22|errorCount|0|totalLinesProcessed|23463
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|23492
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|23511
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|58|errorCount|0|totalLinesProcessed|23525
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|23535
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|23544
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|43|totalLinesProcessed|23556
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|23627
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|23646
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|43|errorCount|0|totalLinesProcessed|23658
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|23477
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|23711
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|23829
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|23952
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|21935
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|23969
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|24000|linePreview|INFO|1002-071148|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|24019
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|25|totalLinesProcessed|22075
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|9|totalLinesProcessed|24106
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|24149
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|9|errorCount|0|totalLinesProcessed|24183
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|27|totalLinesProcessed|24221
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|25|errorCount|0|totalLinesProcessed|24227
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|24258
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|24296
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|45|totalLinesProcessed|24305
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|24328
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|24347
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|27|errorCount|0|totalLinesProcessed|24349
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|98|totalLinesProcessed|24392
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|23361
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|24435
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|24442
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|24496
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|18|totalLinesProcessed|24364
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|46
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|45|errorCount|0|totalLinesProcessed|24640
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|95|totalLinesProcessed|24662
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|18|errorCount|0|totalLinesProcessed|24712
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|24787
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|24933
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|98|errorCount|0|totalLinesProcessed|24934
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|12|totalLinesProcessed|24966
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|24983
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|25000|linePreview|INFO|1002-071806|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|25026
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|12|errorCount|0|totalLinesProcessed|25032
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|25040
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|17|totalLinesProcessed|24475
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|25107
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|25120
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|17|errorCount|0|totalLinesProcessed|25165
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|25218
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|25288
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|25298
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|25308
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|25344
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|25444
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|25477
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|25483
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|47
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|25547
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|25585
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|54|totalLinesProcessed|25182
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|95|errorCount|0|totalLinesProcessed|25182
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|25733
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|54|errorCount|0|totalLinesProcessed|25748
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|25760
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|25768
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-DEBUG|0703-164535|Reading data from file(s)
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|48
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|49
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|25890
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|25912
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|25941
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|25958
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|26000|linePreview|INFO|1002-071227|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|26055
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|88|totalLinesProcessed|26065
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|50
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|26089
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|26179
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|26267
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|51
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|26307
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|12|totalLinesProcessed|26189
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|88|errorCount|0|totalLinesProcessed|26339
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|12|errorCount|0|totalLinesProcessed|26357
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|26323
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|26235
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|26374
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|52
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|53
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|26598
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|26625
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|26660
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|26674
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|26688
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|30|totalLinesProcessed|26710
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|29|totalLinesProcessed|26782
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|30|errorCount|0|totalLinesProcessed|26794
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|54
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|37|totalLinesProcessed|26354
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|26868
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|29|errorCount|0|totalLinesProcessed|26943
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|26990
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|27000|linePreview|INFO|1002-071248|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|37|errorCount|0|totalLinesProcessed|27004
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|27054
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|27074
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|25992
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|27158
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|27170
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|27177
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|27224
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|55
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|27337
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|27350
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|27451
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|27518
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|27556
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|27580
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|27590
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|27604
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|27616
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|27622
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|72|totalLinesProcessed|27601
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|103|totalLinesProcessed|27613
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|27701
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|20|totalLinesProcessed|27019
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|27787
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|20|errorCount|0|totalLinesProcessed|27815
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|27858
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|56
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|27873
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|72|errorCount|0|totalLinesProcessed|27929
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|27967
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|28000|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|28064
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|28103
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|27|totalLinesProcessed|28242
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|103|errorCount|0|totalLinesProcessed|28271
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|28277
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|28307
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|28315
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|27|errorCount|0|totalLinesProcessed|28338
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|47|totalLinesProcessed|28357
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|28424
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|47|errorCount|0|totalLinesProcessed|28472
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|28473
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|28509
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|28514
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|28553
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|28762
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|28778
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|13|totalLinesProcessed|28795
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|28797
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|28802
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|28817
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|103
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|103|totalLinesProcessed|28823
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|28825
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|68|totalLinesProcessed|28851
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|28920
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|27634
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|29000|linePreview|INFO|1002-071426|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|57
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|68|errorCount|0|totalLinesProcessed|29047
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|58
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|103
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|29147
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|103|errorCount|0|totalLinesProcessed|29051
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|103
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|59
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|29168
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|29240
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|10|totalLinesProcessed|29261
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|60
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|10|errorCount|0|totalLinesProcessed|29287
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|29299
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|103|totalLinesProcessed|29155
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|29319
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|66|totalLinesProcessed|29359
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|28775
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|29444
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|28787
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|103|errorCount|0|totalLinesProcessed|29582
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|66|errorCount|0|totalLinesProcessed|29592
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|28698
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|29607
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|13|errorCount|0|totalLinesProcessed|28822
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|29689
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|29845
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|58|totalLinesProcessed|29924
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|29989
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|30000|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|30000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071348|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|28825
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|30042
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|30055
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|30063
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|30097
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|103|totalLinesProcessed|30084
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|30121
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|58|errorCount|0|totalLinesProcessed|30152
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|30155
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|30224
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|29156
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|30306
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|30314
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|103|errorCount|0|totalLinesProcessed|30345
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|30357
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|29256
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|30453
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|30558
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|61
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|76|totalLinesProcessed|30640
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|30676
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|63
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|30740
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|62
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|30754
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|30758
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|30837
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|30840
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|30882
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|30903
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|30788
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|30948
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|30957
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|30993
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|31000|linePreview|INFO|1002-071913|1|stats.go:56|8|15|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|31000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071817|1|stats.go:56|8|11|7|0.21|471h0m2
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|31000|linePreview|INFO|1002-071438|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|31201
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|76|errorCount|0|totalLinesProcessed|31341
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|31372
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|31420
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|31424
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|31437
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|31447
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|31454
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|31474
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|31078
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|99|totalLinesProcessed|31488
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|31509
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|31532
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|31595
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|90|totalLinesProcessed|31026
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|31785
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|31911
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|31970
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|32000|linePreview|INFO|1002-071819|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|32000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071307|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|99|errorCount|0|totalLinesProcessed|32089
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|32097
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|32125
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|32132
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|32149
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|32167
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|90|errorCount|0|totalLinesProcessed|32175
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|103
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|32181
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|32184
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|32221
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|32227
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|32239
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|93|totalLinesProcessed|32201
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|32466
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|32474
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|103
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|32483
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|32486
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|32493
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|93|errorCount|0|totalLinesProcessed|32536
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|32540
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|32600
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|21|totalLinesProcessed|32695
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|31535
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|32713
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|32728
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|30040
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|21|errorCount|0|totalLinesProcessed|32785
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|32108
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|32830
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|32815
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|32888
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|33000|linePreview|INFO|1002-071913|1|stats.go:56|8|15|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|31|totalLinesProcessed|32165
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|32818
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|33097
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|33102
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|33118
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|33163
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|31|errorCount|0|totalLinesProcessed|33208
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|33245
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|33262
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|31000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071708|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|33294
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|33316
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|59|totalLinesProcessed|33340
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|33325
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|33461
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|103|totalLinesProcessed|32180
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|59|errorCount|0|totalLinesProcessed|33603
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|33657
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|33727
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|33785
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|33827
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|103|errorCount|0|totalLinesProcessed|33836
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|33856
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|33872
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|34000|linePreview|INFO|1002-071248|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|34000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071829|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|74|totalLinesProcessed|33861
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|34045
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|34049
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|34056
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|34080
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|34141
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|74|errorCount|0|totalLinesProcessed|34186
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|72|totalLinesProcessed|34215
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|34289
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|47|totalLinesProcessed|34234
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|34468
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|34500
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|34610
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|34633
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|58|totalLinesProcessed|34687
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|34713
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|47|errorCount|0|totalLinesProcessed|34723
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|34755
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|32751
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|64
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|34902
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|34972
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|72|errorCount|0|totalLinesProcessed|34603
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|35000|linePreview|INFO|1002-071416|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|34985
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|35102
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|35103
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|35000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|35104
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|35104
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|34982
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|35104
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|30117
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|35345
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|35372
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|35394
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|33744
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|35439
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|35449
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|99|totalLinesProcessed|35524
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|34605
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|64|totalLinesProcessed|35739
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|35812
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|35913
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|99|errorCount|0|totalLinesProcessed|35954
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|64|errorCount|0|totalLinesProcessed|35962
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|35965
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|35973
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|35973
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-DEBUG|0703-164535|Reading data from file(s)
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|65
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|36000|linePreview|INFO|1002-071339|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|Reading data from file(s)
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|58|errorCount|0|totalLinesProcessed|34980
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|66
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|35104
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|36084
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|5|totalLinesProcessed|36107
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|36090
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|5|errorCount|0|totalLinesProcessed|36119
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|36130
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|36140
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|38|totalLinesProcessed|36152
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|36201
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|74|totalLinesProcessed|35969
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|36263
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|36272
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|36312
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|36320
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|36330
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|38|errorCount|0|totalLinesProcessed|36386
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|36402
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|36404
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|15|totalLinesProcessed|36408
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|36439
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|36458
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|36467
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|36476
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|67
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|15|errorCount|0|totalLinesProcessed|36528
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|74|errorCount|0|totalLinesProcessed|36566
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|36681
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|36716
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|36800
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|36655
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|36832
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|36847
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|36918
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|23|totalLinesProcessed|36939
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|8|totalLinesProcessed|36951
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|37000|linePreview|INFO|1002-071236|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|23|errorCount|0|totalLinesProcessed|37019
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|37047
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|8|errorCount|0|totalLinesProcessed|37006
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|36391
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|37130
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|37156
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|37178
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|31|totalLinesProcessed|36062
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|37247
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|37283
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|31|errorCount|0|totalLinesProcessed|37360
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|37379
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|37388
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|37493
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|37495
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|35935
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|37573
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|37579
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|37591
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|37706
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|35943
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|37741
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|37753
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|10|totalLinesProcessed|37834
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|10|errorCount|0|totalLinesProcessed|37908
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|37927
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|37935
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|37945
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|37955
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|37987
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|38000|linePreview|INFO|1002-071516|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|38055
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|89|totalLinesProcessed|38100
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|38000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|37812
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|16|totalLinesProcessed|38125
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|16|errorCount|0|totalLinesProcessed|38238
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|38249
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|38262
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|36508
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|10|totalLinesProcessed|38277
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|36532
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|10|errorCount|0|totalLinesProcessed|38356
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|38362
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|37597
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|38453
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|38367
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|89|errorCount|0|totalLinesProcessed|38526
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|38537
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|38547
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|38550
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|38560
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|4|totalLinesProcessed|38377
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|38641
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|4|errorCount|0|totalLinesProcessed|38587
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|37000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071409|1|stats.go:56|8|11|7|0.21|471h0m2
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|38677
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|38686
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|38694
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|38670
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|38735
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|38739
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|38703
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|38759
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|55|totalLinesProcessed|38945
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|39000|linePreview|INFO|1002-071816|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|39108
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|39134
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|55|errorCount|0|totalLinesProcessed|39152
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|39000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071920|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|39175
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|95|totalLinesProcessed|39184
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|39186
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|38479
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|39225
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|69|totalLinesProcessed|39285
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|39382
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|37207
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|95|errorCount|0|totalLinesProcessed|39417
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|39462
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|10|totalLinesProcessed|38708
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|39533
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|10|errorCount|0|totalLinesProcessed|39541
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|69|errorCount|0|totalLinesProcessed|39723
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|39725
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|Reading data from file(s)
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|28|totalLinesProcessed|39749
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|68
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|39836
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|39859
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|28|errorCount|0|totalLinesProcessed|39866
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|69|totalLinesProcessed|39883
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|39898
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|39919
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|69|errorCount|0|totalLinesProcessed|39997
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|40000|linePreview|INFO|1002-071807|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|Reading data from file(s)
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|70
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|71
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|72
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|40060
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|40060
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|73
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|75
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|40153
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|40160
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|40222
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|40229
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|40251
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|40271
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|74
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|40292
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|40369
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|40460
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|40481
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|39154
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|40575
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|76
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|69
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|77
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|40717
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|40797
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|40810
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|40853
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|27|totalLinesProcessed|39165
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|40868
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|40923
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|27|errorCount|0|totalLinesProcessed|40966
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|41000|linePreview|INFO|1002-071537|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|41077
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|79
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|41088
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|80
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|41105
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|41147
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|41238
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|41257
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|82
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|81
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|41351
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|3|totalLinesProcessed|41375
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|3|errorCount|0|totalLinesProcessed|41387
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|41398
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|83
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|83|totalLinesProcessed|41398
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|41402
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|84
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|40628
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|95|totalLinesProcessed|39866
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|83|errorCount|0|totalLinesProcessed|41558
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|85
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|41589
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|86
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|41606
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|41657
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|41754
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|95|errorCount|0|totalLinesProcessed|41801
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|27|totalLinesProcessed|41845
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|41897
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|27|errorCount|0|totalLinesProcessed|41946
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|41959
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|41966
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|42000|linePreview|INFO|1002-071328|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|42020
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|42030
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|42085
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|42138
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|41564
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|42168
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|42206
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|16|totalLinesProcessed|42315
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|42327
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|42360
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|16|errorCount|0|totalLinesProcessed|42414
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|42445
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|42468
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|42481
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|42538
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|42572
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|42586
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|42593
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|42605
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|42610
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|42622
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|42682
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|99|totalLinesProcessed|42689
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|42721
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|42459
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|78
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|42839
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|42964
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|42993
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|43000|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|43000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071316|1|stats.go:56|8|11|7|0.21|471h0m2
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|61|totalLinesProcessed|43006
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|43065
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|99|errorCount|0|totalLinesProcessed|43118
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|43144
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|64|totalLinesProcessed|43185
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|43230
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|43274
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|43306
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|68|totalLinesProcessed|43369
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|61|errorCount|0|totalLinesProcessed|43371
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|43397
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|43467
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|43488
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|43620
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|43657
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|64|errorCount|0|totalLinesProcessed|43830
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|43906
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|68|errorCount|0|totalLinesProcessed|43929
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|43714
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|80|totalLinesProcessed|41562
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|44004
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|44037
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|44038
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|44044
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|43821
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|44062
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|44069
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|44080
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|44086
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|44120
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|80|errorCount|0|totalLinesProcessed|44228
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|95|totalLinesProcessed|44233
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|40943
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|44276
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|62|totalLinesProcessed|44331
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-DEBUG|0703-164535|Reading data from file(s)
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|87
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|88
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|44514
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|50|totalLinesProcessed|40978
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|95|errorCount|0|totalLinesProcessed|44536
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|62|errorCount|0|totalLinesProcessed|44548
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|44575
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|44581
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|42975
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|50|errorCount|0|totalLinesProcessed|44629
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|44628
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|44633
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|41525
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|43835
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|60|totalLinesProcessed|43979
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|44940
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|44965
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|44976
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|44977
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|45002
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|45000|linePreview|INFO|1002-071318|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|16|totalLinesProcessed|44000
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|44000|linePreview|INFO|1002-071207|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|16|errorCount|0|totalLinesProcessed|45137
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|60|errorCount|0|totalLinesProcessed|45174
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|45192
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|45307
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|45340
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|45397
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|45484
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|45503
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|45427
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|93|totalLinesProcessed|45497
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|45620
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|45655
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|42001
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|45731
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|45801
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|45817
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|45873
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|93|errorCount|0|totalLinesProcessed|45914
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|45987
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|46000|linePreview|INFO|1002-071527|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|68|totalLinesProcessed|44566
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|46219
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|46230
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|46242
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|46276
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|46297
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|46318
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|68|errorCount|0|totalLinesProcessed|46452
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|92|totalLinesProcessed|46467
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|46472
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|46484
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|46497
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|46530
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|46388
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|46577
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|46613
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|46621
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|58|totalLinesProcessed|46602
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|46650
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|58|errorCount|0|totalLinesProcessed|46816
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|46826
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|46879
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|92|errorCount|0|totalLinesProcessed|46887
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|90|totalLinesProcessed|46903
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|46939
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|44060
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|47000|linePreview|INFO|1002-071457|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|41587
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|47113
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|47244
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|47293
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|90|errorCount|0|totalLinesProcessed|47297
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|47377
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|47386
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|47456
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|45522
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|47617
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|47693
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|47707
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|47803
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|47811
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|47818
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|47896
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|47919
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|44|totalLinesProcessed|47849
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|47926
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|47911
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|48000|linePreview|INFO|1002-071149|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|44|errorCount|0|totalLinesProcessed|48006
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|48022
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|47870
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|43926
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|48148
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|48206
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|48390
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|17|totalLinesProcessed|44884
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|48496
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|17|errorCount|0|totalLinesProcessed|48536
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|48556
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|48565
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|48572
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|81|totalLinesProcessed|48537
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|48580
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|48588
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|103
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|48595
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|48603
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|48561
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|48615
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|48677
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|89
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|81|errorCount|0|totalLinesProcessed|48765
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|48809
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|47792
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|47838
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|66|totalLinesProcessed|46383
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|48957
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|48979
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|48986
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|49000|linePreview|INFO|1002-071406|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|49045
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|103|totalLinesProcessed|48592
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|49147
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|87|totalLinesProcessed|49185
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|49335
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|49363
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|49487
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|49488
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|49623
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|49629
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|87|errorCount|0|totalLinesProcessed|49675
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|49718
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|49725
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|49790
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|103|errorCount|0|totalLinesProcessed|49798
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|66|errorCount|0|totalLinesProcessed|49344
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|49950
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|49963
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|49975
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|50000|linePreview|INFO|1002-071826|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|50004
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|49857
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|50022
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|50121
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|50000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071426|1|stats.go:56|8|11|7|0.21|471h0m2
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|50174
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|50223
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|50286
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|50307
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|50319
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|50325
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|50340
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|81|totalLinesProcessed|50393
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|50478
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|50302
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|50492
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|50643
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|81|errorCount|0|totalLinesProcessed|50662
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|50739
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|50750
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|50793
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|4|totalLinesProcessed|50807
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|4|errorCount|0|totalLinesProcessed|50819
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|50685
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|76|totalLinesProcessed|50884
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|50909
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|51000|linePreview|INFO|1002-071709|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|51088
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|50958
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|76|errorCount|0|totalLinesProcessed|51097
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|51105
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|51105
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|51000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071729|1|stats.go:56|8|11|7|0.21|471h0m2
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|51162
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|51292
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|51314
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|51292
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|51456
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|48447
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|47384
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|51567
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|51575
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|49232
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|51583
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|49956
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|50000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071339|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|51814
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|51842
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|51859
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|51872
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|51914
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|52000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071927|1|stats.go:56|8|11|7|0.21|471h0m2
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|52001|linePreview|INFO|1002-071828|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|52029
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|52054
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|52061
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|56|totalLinesProcessed|51937
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|52075
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|52180
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|52063
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|52223
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|56|errorCount|0|totalLinesProcessed|52267
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|52028
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|52346
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|30|totalLinesProcessed|48944
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|41|totalLinesProcessed|52412
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|30|errorCount|0|totalLinesProcessed|52464
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|18|totalLinesProcessed|52527
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|41|errorCount|0|totalLinesProcessed|52559
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|95|totalLinesProcessed|52576
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|52587
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|93|totalLinesProcessed|52616
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|18|errorCount|0|totalLinesProcessed|52618
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|52652
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|52661
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|52681
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|52692
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|52645
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|52748
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|52768
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|18|totalLinesProcessed|52854
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|18|errorCount|0|totalLinesProcessed|52972
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|52064
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|53000|linePreview|INFO|1002-071913|1|stats.go:56|8|15|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|53010
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|53024
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|95|errorCount|0|totalLinesProcessed|53030
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|53049
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|53035
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|53060
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|93|errorCount|0|totalLinesProcessed|53087
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|53124
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|53147
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|90
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|53171
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|53188
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|53200
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|91
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|77|totalLinesProcessed|53254
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|92
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|93
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|53445
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|77|errorCount|0|totalLinesProcessed|53453
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|53453
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|26|totalLinesProcessed|53453
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|26|errorCount|0|totalLinesProcessed|53523
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|94
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|53555
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|53617
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|53641
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|53704
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|53711
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|53801
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|paul@127.0.0.1:51190|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164535|paul@127.0.0.1:51190|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|paul@127.0.0.1:51190|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|53909
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|97
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|98
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|95
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164535|Reading data from file(s)
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|81|totalLinesProcessed|53963
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|99
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|53991
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071517|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071518|1|stats.go:56|8|11|7|0.21|471h0m2
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071518|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071518|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071519|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071519|1|stats.go:56|8|11|7|0.21|471h0m2
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071526|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071526|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071526|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071527|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071527|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071527|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071148|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071148|1|stats.go:56|8|11|7|0.21|471h0m2
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|54000
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|54000|linePreview|INFO|1002-071447|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|54000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071528|1|stats.go:56|8|11|7|0.21|471h0m2
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|54049
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|54144
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|54151
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|31|totalLinesProcessed|50827
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|54180
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|31|errorCount|0|totalLinesProcessed|54260
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|98|totalLinesProcessed|54270
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|53695
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|54308
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|54324
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|54323
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|54426
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-DEBUG|0703-164535|Reading data from file(s)
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Processing files|count|1|glob|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|100
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|54609
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|54641
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|54656
-INFO|0703-164535|paul@127.0.0.1:51190|Added pending files|count|1|totalPending|96
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|54664
-DEBUG|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164535|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|98|errorCount|0|totalLinesProcessed|54719
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|54774
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|54774
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|54807
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|54889
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|54930
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|54989
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|55000|linePreview|INFO|1002-071308|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|53452
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|55105
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|55140
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|55141
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|21|totalLinesProcessed|55211
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|55229
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|55279
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|55287
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|21|errorCount|0|totalLinesProcessed|55293
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|24|totalLinesProcessed|55316
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|55355
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|24|errorCount|0|totalLinesProcessed|55430
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|48|totalLinesProcessed|55307
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|55561
-INFO|0703-164535|paul@127.0.0.1:51190|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|55572
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|48|errorCount|0|totalLinesProcessed|55596
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|26|totalLinesProcessed|55609
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|26|errorCount|0|totalLinesProcessed|55650
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|55655
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|55655
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|55682
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|55739
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|53924
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|55892
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|55899
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|55903
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|55917
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|55961
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|55965
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|55979
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|56000|linePreview|INFO|1002-071429|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|56087
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|56093
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|56128
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|56133
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|56170
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|56211
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|56284
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|56001
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|56371
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|56419
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|56241
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|56475
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|56521
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164535|paul@127.0.0.1:51190|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164535|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|54891
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|56759
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|56799
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|56829
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|72|totalLinesProcessed|51969
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|56801
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|56850
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|54000|linePreview|INFO|1002-071919|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|53934
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|56946
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|57000|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|55596
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|72|errorCount|0|totalLinesProcessed|57104
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|43|totalLinesProcessed|57131
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|57134
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|57148
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|81|errorCount|0|totalLinesProcessed|57208
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|89|totalLinesProcessed|57241
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|57341
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|43|errorCount|0|totalLinesProcessed|57345
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|57396
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|57415
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|57438
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|4|totalLinesProcessed|57447
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|57458
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|57436
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|4|errorCount|0|totalLinesProcessed|57474
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|57476
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|57486
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|57451
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|57531
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|29|totalLinesProcessed|57618
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|57624
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|103
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|103|totalLinesProcessed|57658
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|82|totalLinesProcessed|57751
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|89|errorCount|0|totalLinesProcessed|57754
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|57783
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|57801
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|29|errorCount|0|totalLinesProcessed|57816
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|57844
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|57865
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|8|totalLinesProcessed|57775
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|57943
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|8|errorCount|0|totalLinesProcessed|57967
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|58000|linePreview|INFO|1002-071716|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|58000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071829|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|58012
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|58042
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|58081
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|58082
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|58089
-INFO|0703-164535|TurboAggregate: ProcessLineDirect called|totalLinesReceived|58000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|58175
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|103|errorCount|0|totalLinesProcessed|58179
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|58194
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|58201
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|57088
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|44|totalLinesProcessed|58127
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|82|errorCount|0|totalLinesProcessed|58228
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|58346
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|44|errorCount|0|totalLinesProcessed|58422
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|58423
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|66|totalLinesProcessed|58440
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|58462
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|87|totalLinesProcessed|58586
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|58607
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|18|totalLinesProcessed|58626
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|21|totalLinesProcessed|58688
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|18|errorCount|0|totalLinesProcessed|58769
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|58775
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|58810
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|66|errorCount|0|totalLinesProcessed|58813
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|21|errorCount|0|totalLinesProcessed|58841
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|58923
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|99
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|58978
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|58851
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|58989
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|98
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|97
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|87|errorCount|0|totalLinesProcessed|59021
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|59038
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|59042
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|59079
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|58925
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|95
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|59000|linePreview|INFO|1002-071859|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|59315
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|45|totalLinesProcessed|59370
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|58877
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|38|totalLinesProcessed|59464
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|59471
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|59475
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|59549
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|59558
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|59562
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|103
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|103|totalLinesProcessed|59570
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|59575
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|45|errorCount|0|totalLinesProcessed|59593
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|38|errorCount|0|totalLinesProcessed|59615
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|59582
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|39|totalLinesProcessed|59624
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|59616
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|13|totalLinesProcessed|59728
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|96
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|39|errorCount|0|totalLinesProcessed|59790
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|13|errorCount|0|totalLinesProcessed|59797
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|103|errorCount|0|totalLinesProcessed|59822
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|83|totalLinesProcessed|59837
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|59873
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|59874
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|94
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|34|totalLinesProcessed|58873
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|56|totalLinesProcessed|59895
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|59936
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|60000|linePreview|INFO|1002-071618|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|83|errorCount|0|totalLinesProcessed|60012
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|34|errorCount|0|totalLinesProcessed|60085
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|60092
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|56|errorCount|0|totalLinesProcessed|60189
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|60250
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|60265
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|60356
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|60364
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|60373
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|91|totalLinesProcessed|60436
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|60513
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|60523
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|60204
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|60531
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|60532
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|60551
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|60599
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|60612
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|60705
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|91|errorCount|0|totalLinesProcessed|60804
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|60818
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|15|totalLinesProcessed|60831
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|93
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|60876
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|15|errorCount|0|totalLinesProcessed|60883
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|60906
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|44|totalLinesProcessed|60887
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|92
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|TurboAggregate: Processing line|lineNumber|61000|linePreview|INFO|1002-071817|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|44|errorCount|0|totalLinesProcessed|61021
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|61023
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|91
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|61044
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|61126
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|90
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|40|totalLinesProcessed|61145
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|61226
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|40|errorCount|0|totalLinesProcessed|61227
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|26|totalLinesProcessed|61227
-INFO|0703-164535|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|89
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-INFO|0703-164535|TurboAggregate: Processing batch|batchSize|47|totalLinesProcessed|61245
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|26|errorCount|0|totalLinesProcessed|61258
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164535|TurboAggregate: Batch processed|successCount|47|errorCount|0|totalLinesProcessed|61300
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164535|paul@127.0.0.1:51190|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|88
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|87
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|86
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|85
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|84
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|82
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|81
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|83
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|80
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|79
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|78
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|77
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|76
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|75
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|74
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|73
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|72
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|71
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|70
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|69
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|68
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|67
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|66
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|65
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|64
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|63
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|62
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|61
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|60
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|59
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|58
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|57
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|56
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|55
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|54
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|53
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|52
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|51
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|50
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|49
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|48
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|47
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|46
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|45
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|44
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|42
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|43
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|41
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|40
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|39
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|38
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|37
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|36
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|35
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|34
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|33
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|32
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|31
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|30
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|29
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|28
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|27
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|26
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|25
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|24
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|23
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|22
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|21
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|20
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|19
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|18
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|17
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|16
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|15
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|14
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|13
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|12
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|11
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|10
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|9
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|7
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|6
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|8
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|5
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|4
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|3
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|2
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|1
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|File processing complete|path|mapr_testdata.log|remainingPending|0
-INFO|0703-164535|paul@127.0.0.1:51190|All files processed|count|1
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-DEBUG|0703-164535|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164535|paul@127.0.0.1:51190|Turbo channel drained successfully
-DEBUG|0703-164535|paul@127.0.0.1:51190|Waiting for data transmission|duration|500ms
-INFO|0703-164536|2000147|stats.go:53|8|223|7|0.49|115h10m13s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=2
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|99|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|97|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|98|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|96|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|95|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|94|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|92|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|91|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|93|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|90|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|89|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|88|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|87|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|86|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|85|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|84|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|83|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|82|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|81|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|80|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|79|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|78|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|77|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|76|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|75|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|74|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|73|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|72|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|71|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|70|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|69|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|68|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|67|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|66|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|65|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|64|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|63|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|62|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|61|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|60|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|59|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|57|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|58|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|56|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|55|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|54|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|53|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|52|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|51|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|50|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|49|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|48|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|47|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|46|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|45|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|44|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|42|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|40|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|43|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|41|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|39|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|38|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|37|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|36|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|35|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|34|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|33|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|32|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|31|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|30|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|29|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|28|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|27|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|26|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|25|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|24|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|23|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|22|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|21|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|20|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|19|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|18|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|17|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|16|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|15|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|14|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|13|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|12|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|11|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|10|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|9|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|8|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|7|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|6|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|4|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|5|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|3|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|2|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|1|pendingFiles|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Command finished|activeCommands|0|pendingFiles|0
-INFO|0703-164536|paul@127.0.0.1:51190|shutdown() called|activeCommands|0|turboMode|true
-DEBUG|0703-164536|paul@127.0.0.1:51190|Flushing turbo data|channelLen|0
-DEBUG|0703-164536|paul@127.0.0.1:51190|Turbo channel drained successfully
-TRACE|0703-164536|paul@127.0.0.1:51190|flush()|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:368
-TRACE|0703-164536|paul@127.0.0.1:51190|flush|lines|0|server|0|mapr|0|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164536|paul@127.0.0.1:51190|ALL lines sent|0xc00022a240
-TRACE|0703-164536|paul@127.0.0.1:51190|baseHandler.Read|checking turboLines channel|channelLen|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:94
-TRACE|0703-164536|paul@127.0.0.1:51190|baseHandler.Read|EOF received and channel empty, disabling turbo mode|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:132
-TRACE|0703-164536|paul@127.0.0.1:51190|baseHandler.Read|no data in turboLines, falling through|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:139
-INFO|0703-164536|paul@127.0.0.1:51190|Shutting down turbo aggregate
-INFO|0703-164536|TurboAggregate: Shutdown called|linesProcessed|61300|currentGroups|202
-INFO|0703-164536|TurboAggregate: Processing final batch
-INFO|0703-164536|TurboAggregate: Waiting for all processing to complete
-INFO|0703-164536|TurboAggregate: Batch processor stopped by shutdown
-INFO|0703-164536|TurboAggregate: Serialization loop stopped by shutdown
-INFO|0703-164536|TurboAggregate: Serialization loop ended
-INFO|0703-164536|TurboAggregate: Batch processor loop ended
-INFO|0703-164536|2000147|stats.go:53|8|118|7|0.49|115h10m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-INFO|0703-164536|paul@127.0.0.1:51190|Good bye Mister!
-INFO|0703-164536|paul@127.0.0.1:51190|Shutting down turbo aggregate
-INFO|0703-164536|TurboAggregate: Shutdown called|linesProcessed|61300|currentGroups|202
-INFO|0703-164536|TurboAggregate: All processing complete, groups before final serialization|groupCount|202
-INFO|0703-164536|TurboAggregate: Processing final batch
-INFO|0703-164536|TurboAggregate: Waiting for all processing to complete
-INFO|0703-164536|TurboAggregate: Starting serialization|linesProcessed|61300|currentGroups|202
-INFO|0703-164536|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-164536|TurboAggregate: Waiting for batch processing to complete
-INFO|0703-164536|TurboAggregate: All processing complete, groups before final serialization|groupCount|202
-INFO|0703-164536|TurboAggregate: Starting serialization|linesProcessed|61300|currentGroups|202
-INFO|0703-164536|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-164536|TurboAggregate: Waiting for batch processing to complete
-INFO|0703-164536|TurboAggregate: Groups before serialization|count|202
-INFO|0703-164536|TurboAggregate: Serialization details|groupCount|202|sampleGroups|[group=1002-071447, samples=300 group=1002-071816, samples=300 group=1002-071757, samples=300 group=1002-071919, samples=300 group=1002-071829, samples=300]
-INFO|0703-164536|TurboAggregate: Calling group.Serialize
-TRACE|0703-164536|Serialising mapr.AggregateSet|AggregateSet(Samples:700,FValues:map[avg($goroutines):10500 count($time):700 max($goroutines):15 min($goroutines):15],SValues:map[$time:1002-071920])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164536|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071306])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164536|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071256])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164536|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071547])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164536|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071856])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164536|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071459])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164536|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071826])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164536|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071517])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164536|paul@127.0.0.1:51190|channel->handler: EOF|at /home/paul/git/dtail/internal/server/server.go:189
-INFO|0703-164536|paul@127.0.0.1:51190|Shutting down turbo aggregate
-INFO|0703-164536|TurboAggregate: Shutdown called|linesProcessed|61300|currentGroups|202
-INFO|0703-164536|TurboAggregate: Processing final batch
-INFO|0703-164536|TurboAggregate: Waiting for all processing to complete
-INFO|0703-164536|TurboAggregate: All processing complete, groups before final serialization|groupCount|202
-TRACE|0703-164536|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071357])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164536|TurboAggregate: Starting serialization|linesProcessed|61300|currentGroups|202
-INFO|0703-164536|TurboAggregate: Processing remaining batch before serialization
-TRACE|0703-164536|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071609])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164536|TurboAggregate: Waiting for batch processing to complete
-TRACE|0703-164536|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071737])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164536|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071809])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-DEBUG|0703-164541|paul@127.0.0.1:51190|Shutdown timeout reached, enforcing shutdown
-INFO|0703-164541|paul@127.0.0.1:51190|Shutting down turbo aggregate
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071239])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071839])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071456])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071937])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071818])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071848])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071919])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071736])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164541|TurboAggregate: Shutdown called|linesProcessed|61300|currentGroups|202
-INFO|0703-164541|TurboAggregate: Processing final batch
-INFO|0703-164541|TurboAggregate: Waiting for all processing to complete
-INFO|0703-164541|TurboAggregate: All processing complete, groups before final serialization|groupCount|202
-INFO|0703-164541|TurboAggregate: Starting serialization|linesProcessed|61300|currentGroups|202
-INFO|0703-164541|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-164541|TurboAggregate: Waiting for batch processing to complete
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071247])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071759])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071537])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071939])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071448])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071718])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071309])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071649])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:400,FValues:map[avg($goroutines):4900 count($time):400 max($goroutines):13 min($goroutines):12],SValues:map[$time:1002-071922])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071307])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071617])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071526])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071646])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071926])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071346])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071836])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071659])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071749])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071159])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071616])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:1000,FValues:map[avg($goroutines):15000 count($time):1000 max($goroutines):15 min($goroutines):15],SValues:map[$time:1002-071913])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071548])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071739])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071729])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071338])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071636])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071706])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071559])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071827])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071516])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071918])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071426])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071157])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071746])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071418])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071916])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071237])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:2000,FValues:map[avg($goroutines):29600 count($time):2000 max($goroutines):17 min($goroutines):12],SValues:map[$time:1002-071143])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071416])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071658])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071508])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071447])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071507])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071546])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071619])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:1100,FValues:map[avg($goroutines):14100 count($time):1100 max($goroutines):15 min($goroutines):11],SValues:map[$time:1002-071948])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071539])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071538])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071149])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071728])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071228])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071158])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:1000,FValues:map[avg($goroutines):15000 count($time):1000 max($goroutines):15 min($goroutines):15],SValues:map[$time:1002-071912])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071148])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071717])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071709])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071938])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071529])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071857])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071557])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071428])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071249])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071626])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071326])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071608])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071458])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071629])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071408])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071727])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071628])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071719])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071328])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:100,FValues:map[avg($goroutines):1500 count($time):100 max($goroutines):15 min($goroutines):15],SValues:map[$time:1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071409])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071656])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071217])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071257])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071236])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:900,FValues:map[avg($goroutines):12400 count($time):900 max($goroutines):15 min($goroutines):12],SValues:map[$time:1002-071921])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071849])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071947])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071419])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071817])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071847])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071509])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071708])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071726])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:2300,FValues:map[avg($goroutines):32700 count($time):2300 max($goroutines):16 min($goroutines):12],SValues:map[$time:1002-071147])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071506])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071406])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071347])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071627])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071859])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071748])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071528])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071359])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071757])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071208])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071929])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071429])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071206])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071806])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:2000,FValues:map[avg($goroutines):26800 count($time):2000 max($goroutines):17 min($goroutines):12],SValues:map[$time:1002-071213])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071707])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071446])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071349])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071638])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071549])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071618])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071437])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071906])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071946])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071858])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071838])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071438])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071156])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071518])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071606])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071808])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071319])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071238])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071936])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071917])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071556])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071209])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071846])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071259])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071417])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071637])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071747])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071436])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071248])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071318])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071427])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071816])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071407])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071348])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071339])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071216])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071758])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071317])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071807])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071828])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071246])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071907])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071316])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071229])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071308])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071327])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071439])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071457])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071716])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071756])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071336])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071639])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071928])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071648])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071558])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071219])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071738])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071519])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071909])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071536])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071657])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071226])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071329])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071358])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071607])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071829])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071819])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071227])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071647])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071356])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071908])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071837])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071218])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071527])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071927])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071258])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071449])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071337])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071207])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164541|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-164541|TurboAggregate: After serialization|groupsRemaining|202
-INFO|0703-164541|TurboAggregate: Groups before serialization|count|202
-INFO|0703-164541|TurboAggregate: Serialization details|groupCount|202|sampleGroups|[group=1002-071447, samples=300 group=1002-071816, samples=300 group=1002-071757, samples=300 group=1002-071919, samples=300 group=1002-071829, samples=300]
-INFO|0703-164541|TurboAggregate: Calling group.Serialize
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071846])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071757])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071219])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071319])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071658])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071607])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071848])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071537])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071538])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071946])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071837])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071447])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071316])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071759])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071328])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071539])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071718])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071307])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071758])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071348])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071638])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071259])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071916])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071257])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071649])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071327])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071456])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071917])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071947])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071229])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071559])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071908])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071248])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071326])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071449])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071819])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071726])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071247])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071636])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071428])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071828])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071927])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071529])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071407])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071336])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071748])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071408])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071827])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071318])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071519])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071617])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071747])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071208])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071306])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071818])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071427])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071337])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071659])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071227])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071728])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071707])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:1000,FValues:map[avg($goroutines):15000 count($time):1000 max($goroutines):15 min($goroutines):15],SValues:map[$time:1002-071913])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071609])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071207])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071919])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071639])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071637])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071629])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071729])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071909])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071458])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071406])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071347])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071338])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071517])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071557])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071239])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071856])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071626])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071838])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071236])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071339])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071528])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071746])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071218])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071857])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071826])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071706])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071309])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071929])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071156])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071527])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071647])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071349])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071357])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071549])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071246])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071448])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071317])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071158])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071426])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071546])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071657])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071627])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071738])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071716])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071616])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071719])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071159])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071906])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071937])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071918])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071739])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:900,FValues:map[avg($goroutines):12400 count($time):900 max($goroutines):15 min($goroutines):12],SValues:map[$time:1002-071921])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071438])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071806])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071709])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071439])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071907])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071606])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071516])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:1100,FValues:map[avg($goroutines):14100 count($time):1100 max($goroutines):15 min($goroutines):11],SValues:map[$time:1002-071948])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071346])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:2300,FValues:map[avg($goroutines):32700 count($time):2300 max($goroutines):16 min($goroutines):12],SValues:map[$time:1002-071147])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071437])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071226])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071808])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071209])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071829])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071507])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071409])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071237])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071506])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071436])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071836])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071358])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071736])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071656])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071939])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:700,FValues:map[avg($goroutines):10500 count($time):700 max($goroutines):15 min($goroutines):15],SValues:map[$time:1002-071920])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071938])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071646])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071548])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071756])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071816])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071418])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071536])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071148])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071518])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071508])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071926])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:1000,FValues:map[avg($goroutines):15000 count($time):1000 max($goroutines):15 min($goroutines):15],SValues:map[$time:1002-071912])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071249])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071206])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:2000,FValues:map[avg($goroutines):29600 count($time):2000 max($goroutines):17 min($goroutines):12],SValues:map[$time:1002-071143])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071308])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071359])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071258])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071619])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071809])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071849])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071817])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071859])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071416])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071228])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071547])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071419])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071618])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071648])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:2000,FValues:map[avg($goroutines):26800 count($time):2000 max($goroutines):17 min($goroutines):12],SValues:map[$time:1002-071213])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:400,FValues:map[avg($goroutines):4900 count($time):400 max($goroutines):13 min($goroutines):12],SValues:map[$time:1002-071922])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071858])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071807])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071459])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071839])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071256])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071628])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071446])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071608])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071737])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071526])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071708])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071217])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071429])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071717])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071847])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071216])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071457])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071329])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071238])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071936])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071417])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071157])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071749])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071928])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071558])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:100,FValues:map[avg($goroutines):1500 count($time):100 max($goroutines):15 min($goroutines):15],SValues:map[$time:1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071556])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071149])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071356])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071727])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071509])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164541|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-164541|TurboAggregate: After serialization|groupsRemaining|202
-INFO|0703-164541|TurboAggregate: Groups before serialization|count|202
-INFO|0703-164541|TurboAggregate: Serialization details|groupCount|202|sampleGroups|[group=1002-071447, samples=300 group=1002-071816, samples=300 group=1002-071757, samples=300 group=1002-071919, samples=300 group=1002-071829, samples=300]
-INFO|0703-164541|TurboAggregate: Calling group.Serialize
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071939])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071207])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071326])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071758])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071906])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071527])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071907])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071656])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071828])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071149])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071448])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071646])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071848])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071417])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071847])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071649])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071327])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071726])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071438])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071229])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071437])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071156])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071528])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071937])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071256])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071637])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071336])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071546])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071227])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071358])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071846])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071819])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071238])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071418])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071917])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071309])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071246])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071827])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071616])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071919])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071236])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071748])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071459])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071718])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071606])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071228])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071628])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071406])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071638])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071446])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071348])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071629])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071506])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:2000,FValues:map[avg($goroutines):26800 count($time):2000 max($goroutines):17 min($goroutines):12],SValues:map[$time:1002-071213])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071456])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071208])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071219])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071938])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071329])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071617])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071837])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071427])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071926])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071736])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071947])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071826])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071537])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071159])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071538])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071347])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071946])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071346])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071929])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071306])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071258])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071658])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071248])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071716])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071317])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071349])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071426])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071436])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071918])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071509])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071158])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071708])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071639])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071409])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071719])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071429])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071609])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071308])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071746])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071747])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071257])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:2000,FValues:map[avg($goroutines):29600 count($time):2000 max($goroutines):17 min($goroutines):12],SValues:map[$time:1002-071143])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071356])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071749])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071648])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071526])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071407])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071909])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:1000,FValues:map[avg($goroutines):15000 count($time):1000 max($goroutines):15 min($goroutines):15],SValues:map[$time:1002-071912])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071419])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071806])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:100,FValues:map[avg($goroutines):1500 count($time):100 max($goroutines):15 min($goroutines):15],SValues:map[$time:1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071416])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071738])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071757])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071338])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071759])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071618])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:400,FValues:map[avg($goroutines):4900 count($time):400 max($goroutines):13 min($goroutines):12],SValues:map[$time:1002-071922])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071619])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071539])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071519])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071449])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071209])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071247])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071517])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071559])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071627])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071518])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071218])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:1100,FValues:map[avg($goroutines):14100 count($time):1100 max($goroutines):15 min($goroutines):11],SValues:map[$time:1002-071948])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071259])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071359])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071529])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071226])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071756])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071829])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:900,FValues:map[avg($goroutines):12400 count($time):900 max($goroutines):15 min($goroutines):12],SValues:map[$time:1002-071921])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071556])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071239])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071626])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071457])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071737])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071516])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071816])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071307])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:1000,FValues:map[avg($goroutines):15000 count($time):1000 max($goroutines):15 min($goroutines):15],SValues:map[$time:1002-071913])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071547])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071607])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071337])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071809])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071916])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071836])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071839])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071216])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071728])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071508])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071507])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071237])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071557])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071148])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071408])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071709])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071707])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071318])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071857])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071838])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071536])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071428])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071818])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071727])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071808])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071636])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071928])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071807])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071817])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071717])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:700,FValues:map[avg($goroutines):10500 count($time):700 max($goroutines):15 min($goroutines):15],SValues:map[$time:1002-071920])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071548])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071447])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071217])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071549])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071657])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071908])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071357])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071339])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071647])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071316])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:2300,FValues:map[avg($goroutines):32700 count($time):2300 max($goroutines):16 min($goroutines):12],SValues:map[$time:1002-071147])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071859])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071927])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071739])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071856])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071328])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071659])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071157])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071706])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071558])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071858])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071936])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071608])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071458])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071206])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071729])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071439])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071849])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071249])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071319])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164541|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-164541|TurboAggregate: After serialization|groupsRemaining|202
-INFO|0703-164541|TurboAggregate: Groups before serialization|count|202
-INFO|0703-164541|TurboAggregate: Serialization details|groupCount|202|sampleGroups|[group=1002-071447, samples=300 group=1002-071816, samples=300 group=1002-071757, samples=300 group=1002-071919, samples=300 group=1002-071829, samples=300]
-INFO|0703-164541|TurboAggregate: Calling group.Serialize
-TRACE|0703-164541|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071817])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164541|TurboAggregate: Shutdown complete
-INFO|0703-164541|TurboAggregate: Shutdown complete
-INFO|0703-164541|TurboAggregate: Shutdown complete
-INFO|0703-164546|2000147|stats.go:53|8|11|7|0.81|115h10m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=2
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071938])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071316])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071349])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071426])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071858])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071818])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071756])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071458])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071428])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071246])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:400,FValues:map[avg($goroutines):4900 count($time):400 max($goroutines):13 min($goroutines):12],SValues:map[$time:1002-071922])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071348])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071638])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071249])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:2000,FValues:map[avg($goroutines):29600 count($time):2000 max($goroutines):17 min($goroutines):12],SValues:map[$time:1002-071143])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071847])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071709])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071528])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071738])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071236])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071309])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071216])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071626])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071619])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071727])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071238])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071809])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071418])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071419])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071748])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071859])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071836])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071306])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071947])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071206])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071159])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071906])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071908])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071457])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071519])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071758])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071708])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071909])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071517])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071549])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071717])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071538])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071927])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071226])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071719])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071557])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071506])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071406])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:700,FValues:map[avg($goroutines):10500 count($time):700 max($goroutines):15 min($goroutines):15],SValues:map[$time:1002-071920])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071449])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071317])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071837])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071447])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071637])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071229])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071339])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071856])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071327])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071718])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071508])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071148])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071648])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071539])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071647])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071937])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071258])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071526])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071209])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071919])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:900,FValues:map[avg($goroutines):12400 count($time):900 max($goroutines):15 min($goroutines):12],SValues:map[$time:1002-071921])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071639])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071536])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071559])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071806])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071926])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071158])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071346])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071928])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071609])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071607])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071446])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071407])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071336])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071849])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071636])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071629])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071807])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071456])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071826])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071319])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071359])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071529])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071518])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071358])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071228])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071838])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071357])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071657])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071808])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071736])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:1000,FValues:map[avg($goroutines):15000 count($time):1000 max($goroutines):15 min($goroutines):15],SValues:map[$time:1002-071912])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071546])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071157])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071509])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071218])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071929])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071439])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071918])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071739])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071438])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071917])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071156])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071227])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071347])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071757])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071936])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071429])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071828])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071307])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071516])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071556])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071839])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071326])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071737])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071256])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071646])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071427])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071628])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071857])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071726])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071259])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071247])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071558])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071658])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071547])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071829])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071436])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:100,FValues:map[avg($goroutines):1500 count($time):100 max($goroutines):15 min($goroutines):15],SValues:map[$time:1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071946])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071356])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071728])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071248])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071318])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071507])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071417])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071706])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071437])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071149])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071448])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071329])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071606])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071237])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071747])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071208])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071527])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071627])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071939])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071207])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071848])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071729])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071239])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071746])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071548])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071338])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071618])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071649])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071827])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071337])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071659])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071816])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071907])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:1000,FValues:map[avg($goroutines):15000 count($time):1000 max($goroutines):15 min($goroutines):15],SValues:map[$time:1002-071913])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071409])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071916])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071608])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071759])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071257])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071707])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071819])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071219])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:2000,FValues:map[avg($goroutines):26800 count($time):2000 max($goroutines):17 min($goroutines):12],SValues:map[$time:1002-071213])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071308])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071416])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071716])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071617])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:2300,FValues:map[avg($goroutines):32700 count($time):2300 max($goroutines):16 min($goroutines):12],SValues:map[$time:1002-071147])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071459])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071616])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071846])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:1100,FValues:map[avg($goroutines):14100 count($time):1100 max($goroutines):15 min($goroutines):11],SValues:map[$time:1002-071948])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071656])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071217])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071408])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:300,FValues:map[avg($goroutines):3300 count($time):300 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071328])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071537])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164546|Serialising mapr.AggregateSet|AggregateSet(Samples:200,FValues:map[avg($goroutines):2200 count($time):200 max($goroutines):11 min($goroutines):11],SValues:map[$time:1002-071749])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164546|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-164546|TurboAggregate: After serialization|groupsRemaining|202
-INFO|0703-164546|TurboAggregate: Shutdown complete
-INFO|0703-164556|2000147|stats.go:53|8|10|7|0.92|115h10m34s|MAPREDUCE:STATS|lifetimeConnections=2|currentConnections=0
-INFO|0703-164604|Handling connection
-INFO|0703-164604|paul@127.0.0.1:49776|Incoming authorization
-INFO|0703-164604|paul@127.0.0.1:49776|Reading|./id_rsa.pub
-DEBUG|0703-164604|paul@127.0.0.1:49776|Authorized public key fingerprint|SHA256:6JCEoZk+DgZKsndyjIGCghIaoKMMxeswdTAYRQ7WBFE
-DEBUG|0703-164604|paul@127.0.0.1:49776|Offered public key fingerprint|SHA256:6JCEoZk+DgZKsndyjIGCghIaoKMMxeswdTAYRQ7WBFE
-INFO|0703-164604|2000147|stats.go:53|8|14|7|0.85|115h10m41s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=3
-INFO|0703-164604|paul@127.0.0.1:49776|Invoking channel handler
-INFO|0703-164604|paul@127.0.0.1:49776|Invoking request handler
-ERROR|0703-164604|paul@127.0.0.1:49776|ssh: parse error in message type 0
-DEBUG|0703-164604|paul@127.0.0.1:49776|Creating new server handler
-DEBUG|0703-164604|paul@127.0.0.1:49776|protocol 4.1 base64 bWFwIGZyb20gU1RBVFMgc2VsZWN0IGNvdW50KCRsaW5lKSxsYXN0KCR0aW1lKSxhdmcoJGdvcm91dGluZXMpLG1pbihjb25jdXJyZW50Q29ubmVjdGlvbnMpLG1heChsaWZldGltZUNvbm5lY3Rpb25zKSBncm91cCBieSAkaG9zdG5hbWUgb3V0ZmlsZSBkbWFwMWEuY3N2LnRtcA==
-TRACE|0703-164604|paul@127.0.0.1:49776|Base64 decoded received command|map from STATS select count($line),last($time),avg($goroutines),min(concurrentConnections),max(lifetimeConnections) group by $hostname outfile dmap1a.csv.tmp|10|[map from STATS select count($line),last($time),avg($goroutines),min(concurrentConnections),max(lifetimeConnections) group by $hostname outfile dmap1a.csv.tmp]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164604|paul@127.0.0.1:49776|Handling user command|10|[map from STATS select count($line),last($time),avg($goroutines),min(concurrentConnections),max(lifetimeConnections) group by $hostname outfile dmap1a.csv.tmp]
-INFO|0703-164604|Creating turbo aggregate for MapReduce|query|from STATS select count($line),last($time),avg($goroutines),min(concurrentConnections),max(lifetimeConnections) group by $hostname outfile dmap1a.csv.tmp
-INFO|0703-164604|Creating turbo log format parser|default
-DEBUG|0703-164604|paul@127.0.0.1:49776|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-164604|TurboAggregate: Starting|interval|5s
-TRACE|0703-164604|paul@127.0.0.1:49776|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-164604|TurboAggregate: Started, waiting for data
-INFO|0703-164604|TurboAggregate: Batch processor loop started
-DEBUG|0703-164604|paul@127.0.0.1:49776|Command finished|activeCommands|0|pendingFiles|0
-INFO|0703-164604|TurboAggregate: Serialization loop started
-DEBUG|0703-164604|paul@127.0.0.1:49776|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164604|paul@127.0.0.1:49776|shutdown() called|activeCommands|0|turboMode|false
-TRACE|0703-164604|paul@127.0.0.1:49776|flush()|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:368
-DEBUG|0703-164604|Reading data from file(s)
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|0|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|ALL lines sent|0xc000c70b40
-INFO|0703-164604|paul@127.0.0.1:49776|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164604|paul@127.0.0.1:49776|Added pending files|count|1|totalPending|1
-DEBUG|0703-164604|paul@127.0.0.1:49776|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164604|paul@127.0.0.1:49776|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164604|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164604|paul@127.0.0.1:49776|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164604|paul@127.0.0.1:49776|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164604|paul@127.0.0.1:49776|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164604|paul@127.0.0.1:49776|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164604|paul@127.0.0.1:49776|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164604|paul@127.0.0.1:49776|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164604|paul@127.0.0.1:49776|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164604|paul@127.0.0.1:49776|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164604|paul@127.0.0.1:49776|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164604|paul@127.0.0.1:49776|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164604|paul@127.0.0.1:49776|Shutting down turbo aggregate
-INFO|0703-164604|TurboAggregate: Shutdown called|linesProcessed|0|currentGroups|0
-INFO|0703-164604|TurboAggregate: Processing final batch
-INFO|0703-164604|TurboAggregate: Waiting for all processing to complete
-INFO|0703-164604|TurboAggregate: All processing complete, groups before final serialization|groupCount|0
-INFO|0703-164604|TurboAggregate: Starting serialization|linesProcessed|0|currentGroups|0
-INFO|0703-164604|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-164604|TurboAggregate: Serialization loop stopped by shutdown
-INFO|0703-164604|TurboAggregate: Serialization loop ended
-INFO|0703-164604|TurboAggregate: Waiting for batch processing to complete
-INFO|0703-164604|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164604|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164604|TurboAggregate: Batch processor stopped by shutdown
-INFO|0703-164604|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164604|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|0
-DEBUG|0703-164604|TurboAggregate: Processing line|lineNumber|0|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164604|TurboAggregate: Parsed fields|lineNumber|0|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:16 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164604|TurboAggregate: New group created|groupKey|integrationtest|totalGroups|1
-INFO|0703-164604|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164604|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|1
-INFO|0703-164604|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164604|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|1
-INFO|0703-164604|TurboAggregate: Batch processor loop ended
-INFO|0703-164604|2000147|stats.go:53|8|21|7|0.85|115h10m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|0703-164604|paul@127.0.0.1:49776|Good bye Mister!
-INFO|0703-164604|paul@127.0.0.1:49776|Shutting down turbo aggregate
-INFO|0703-164604|TurboAggregate: Shutdown called|linesProcessed|1|currentGroups|1
-INFO|0703-164604|TurboAggregate: Processing final batch
-INFO|0703-164604|TurboAggregate: Processing batch|batchSize|39|totalLinesProcessed|1
-INFO|0703-164604|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164604|TurboAggregate: Parsed fields|lineNumber|1|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:16 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164604|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|2
-INFO|0703-164604|TurboAggregate: Parsed fields|lineNumber|2|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:12 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164604|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|3
-DEBUG|0703-164604|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164604|TurboAggregate: Parsed fields|lineNumber|3|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:17 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164604|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|3
-INFO|0703-164604|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|4
-INFO|0703-164604|TurboAggregate: Parsed fields|lineNumber|4|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:14 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164604|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|5
-INFO|0703-164604|TurboAggregate: Parsed fields|lineNumber|4|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:13 $hostname:integrationtest $line:INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071147 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164604|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|6
-INFO|0703-164604|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|7
-INFO|0703-164604|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|8
-INFO|0703-164604|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|9
-INFO|0703-164604|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|10
-INFO|0703-164604|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|11
-INFO|0703-164604|TurboAggregate: Batch processed|successCount|39|errorCount|0|totalLinesProcessed|72
-INFO|0703-164604|TurboAggregate: Waiting for all processing to complete
-INFO|0703-164604|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|140
-INFO|0703-164604|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164604|TurboAggregate: All processing complete, groups before final serialization|groupCount|1
-INFO|0703-164604|TurboAggregate: Starting serialization|linesProcessed|140|currentGroups|1
-INFO|0703-164604|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-164604|TurboAggregate: Processing batch|batchSize|24|totalLinesProcessed|140
-INFO|0703-164604|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164604|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164604|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|158
-INFO|0703-164604|TurboAggregate: Batch processed|successCount|24|errorCount|0|totalLinesProcessed|168
-INFO|0703-164604|TurboAggregate: Waiting for batch processing to complete
-INFO|0703-164604|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|264
-INFO|0703-164604|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164604|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164604|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|264
-INFO|0703-164604|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|364
-INFO|0703-164604|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164604|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164604|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|364
-INFO|0703-164604|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|464
-INFO|0703-164604|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164604|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164604|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|464
-INFO|0703-164604|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|564
-INFO|0703-164604|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164604|TurboAggregate: Processing batch|batchSize|49|totalLinesProcessed|564
-INFO|0703-164604|TurboAggregate: Batch processed|successCount|49|errorCount|0|totalLinesProcessed|613
-TRACE|0703-164604|paul@127.0.0.1:49776|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164604|paul@127.0.0.1:49776|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164604|paul@127.0.0.1:49776|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164604|paul@127.0.0.1:49776|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164604|paul@127.0.0.1:49776|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-164604|TurboAggregate: Groups before serialization|count|1
-INFO|0703-164604|TurboAggregate: Serialization details|groupCount|1|sampleGroups|[group=integrationtest, samples=613]
-INFO|0703-164604|TurboAggregate: Calling group.Serialize
-TRACE|0703-164604|Serialising mapr.AggregateSet|AggregateSet(Samples:613,FValues:map[avg($goroutines):7103 count($line):613 max(lifetimeConnections):1],SValues:map[last($time):1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164604|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-164604|TurboAggregate: After serialization|groupsRemaining|1
-TRACE|0703-164604|paul@127.0.0.1:49776|channel->handler: EOF|at /home/paul/git/dtail/internal/server/server.go:189
-INFO|0703-164604|paul@127.0.0.1:49776|Shutting down turbo aggregate
-INFO|0703-164604|TurboAggregate: Shutdown called|linesProcessed|613|currentGroups|1
-INFO|0703-164604|TurboAggregate: Processing final batch
-INFO|0703-164604|TurboAggregate: Waiting for all processing to complete
-INFO|0703-164604|TurboAggregate: All processing complete, groups before final serialization|groupCount|1
-INFO|0703-164604|TurboAggregate: Starting serialization|linesProcessed|613|currentGroups|1
-INFO|0703-164604|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-164604|TurboAggregate: Waiting for batch processing to complete
-INFO|0703-164604|TurboAggregate: Groups before serialization|count|1
-INFO|0703-164604|TurboAggregate: Serialization details|groupCount|1|sampleGroups|[group=integrationtest, samples=613]
-INFO|0703-164604|TurboAggregate: Calling group.Serialize
-TRACE|0703-164604|Serialising mapr.AggregateSet|AggregateSet(Samples:613,FValues:map[avg($goroutines):7103 count($line):613 max(lifetimeConnections):1],SValues:map[last($time):1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164604|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-164604|TurboAggregate: After serialization|groupsRemaining|1
-DEBUG|0703-164604|paul@127.0.0.1:49776|File processing complete|path|mapr_testdata.log|remainingPending|0
-INFO|0703-164604|paul@127.0.0.1:49776|All files processed|count|1
-DEBUG|0703-164604|paul@127.0.0.1:49776|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164604|paul@127.0.0.1:49776|Flushing turbo data|channelLen|0
-DEBUG|0703-164604|paul@127.0.0.1:49776|Turbo channel drained successfully
-DEBUG|0703-164604|paul@127.0.0.1:49776|Waiting for data transmission|duration|500ms
-INFO|0703-164604|TurboAggregate: Groups before serialization|count|1
-INFO|0703-164604|TurboAggregate: Serialization details|groupCount|1|sampleGroups|[group=integrationtest, samples=613]
-INFO|0703-164604|TurboAggregate: Calling group.Serialize
-TRACE|0703-164604|Serialising mapr.AggregateSet|AggregateSet(Samples:613,FValues:map[avg($goroutines):7103 count($line):613 max(lifetimeConnections):1],SValues:map[last($time):1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164604|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-164604|TurboAggregate: After serialization|groupsRemaining|1
-INFO|0703-164604|TurboAggregate: Shutdown complete
-INFO|0703-164604|paul@127.0.0.1:49776|Shutting down turbo aggregate
-INFO|0703-164604|TurboAggregate: Shutdown called|linesProcessed|613|currentGroups|1
-INFO|0703-164604|TurboAggregate: Processing final batch
-INFO|0703-164604|TurboAggregate: Waiting for all processing to complete
-INFO|0703-164604|TurboAggregate: All processing complete, groups before final serialization|groupCount|1
-INFO|0703-164604|TurboAggregate: Starting serialization|linesProcessed|613|currentGroups|1
-INFO|0703-164604|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-164604|TurboAggregate: Waiting for batch processing to complete
-INFO|0703-164604|TurboAggregate: Shutdown complete
-DEBUG|0703-164604|paul@127.0.0.1:49776|Command finished|activeCommands|0|pendingFiles|0
-INFO|0703-164604|paul@127.0.0.1:49776|shutdown() called|activeCommands|0|turboMode|true
-DEBUG|0703-164604|paul@127.0.0.1:49776|Flushing turbo data|channelLen|0
-DEBUG|0703-164604|paul@127.0.0.1:49776|Turbo channel drained successfully
-TRACE|0703-164604|paul@127.0.0.1:49776|flush()|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:368
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|2|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|2|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|0|unsent|2
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|2|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|2|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|1|unsent|2
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|2|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|2|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|2|unsent|2
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|2|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|2|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|3|unsent|2
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|2|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|2|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|4|unsent|2
-INFO|0703-164604|TurboAggregate: Shutdown complete
-INFO|0703-164604|TurboAggregate: Groups before serialization|count|1
-INFO|0703-164604|TurboAggregate: Serialization details|groupCount|1|sampleGroups|[group=integrationtest, samples=613]
-INFO|0703-164604|TurboAggregate: Calling group.Serialize
-TRACE|0703-164604|Serialising mapr.AggregateSet|AggregateSet(Samples:613,FValues:map[avg($goroutines):7103 count($line):613 max(lifetimeConnections):1],SValues:map[last($time):1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164604|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-164604|TurboAggregate: After serialization|groupsRemaining|1
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|5|unsent|3
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|6|unsent|3
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|7|unsent|3
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|8|unsent|3
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|9|unsent|3
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|10|unsent|3
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|11|unsent|3
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|12|unsent|3
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|13|unsent|3
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|14|unsent|3
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|15|unsent|3
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|16|unsent|3
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|17|unsent|3
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|18|unsent|3
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|19|unsent|3
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|20|unsent|3
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|21|unsent|3
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|22|unsent|3
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|23|unsent|3
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|24|unsent|3
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164604|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164604|paul@127.0.0.1:49776|Still lines to be sent|iteration|25|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|26|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|27|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|28|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|29|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|30|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|31|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|32|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|33|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|34|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|35|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|36|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|37|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|38|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|39|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|40|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|41|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|42|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|43|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|44|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|45|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|46|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|47|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|48|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|49|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|50|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|51|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|52|unsent|3
-INFO|0703-164605|TurboAggregate: Shutdown complete
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|53|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|54|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|55|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|56|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|57|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|58|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|59|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|60|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|61|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|62|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|63|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|64|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|65|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|66|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|67|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|68|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|69|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|70|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|71|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|72|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|73|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|74|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|75|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|76|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|77|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|78|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|79|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|80|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|81|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|82|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|83|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|84|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|85|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|86|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|87|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|88|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|89|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|90|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|91|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|92|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|93|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|94|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|95|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|96|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|97|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|98|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|99|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|100|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|101|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|102|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|103|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|104|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|105|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|106|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|107|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|108|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|109|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|110|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|111|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|112|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|113|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|114|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|115|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|116|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|117|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|118|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|119|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|120|unsent|3
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164605|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164605|paul@127.0.0.1:49776|Still lines to be sent|iteration|121|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|122|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|123|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|124|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|125|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|126|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|127|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|128|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|129|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|130|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|131|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|132|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|133|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|134|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|135|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|136|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|137|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|138|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|139|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|140|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|141|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|142|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|143|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|144|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|145|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|146|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|147|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|148|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|149|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|150|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|151|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|152|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|153|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|154|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|155|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|156|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|157|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|158|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|159|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|160|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|161|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|162|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|163|unsent|3
-INFO|0703-164606|2000147|stats.go:53|8|11|7|0.86|115h10m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|164|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|165|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|166|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|167|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|168|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|169|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|170|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|171|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|172|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|173|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|174|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|175|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|176|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|177|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|178|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|179|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|180|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|181|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|182|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|183|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|184|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|185|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|186|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|187|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|188|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|189|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|190|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|191|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|192|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|193|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|194|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|195|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|196|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|197|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|198|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|199|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|200|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|201|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|202|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|203|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|204|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|205|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|206|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|207|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|208|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|209|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|210|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|211|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|212|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|213|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|214|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|215|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|216|unsent|3
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164606|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164606|paul@127.0.0.1:49776|Still lines to be sent|iteration|217|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|218|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|219|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|220|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|221|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|222|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|223|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|224|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|225|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|226|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|227|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|228|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|229|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|230|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|231|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|232|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|233|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|234|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|235|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|236|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|237|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|238|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|239|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|240|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|241|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|242|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|243|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|244|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|245|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|246|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|247|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|248|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|249|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|250|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|251|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|252|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|253|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|254|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|255|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|256|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|257|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|258|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|259|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|260|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|261|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|262|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|263|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|264|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|265|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|266|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|267|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|268|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|269|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|270|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|271|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|272|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|273|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|274|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|275|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|276|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|277|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|278|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|279|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|280|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|281|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|282|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|283|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|284|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|285|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|286|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|287|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|288|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|289|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|290|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|291|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|292|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|293|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|294|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|295|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|296|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|297|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|298|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164607|paul@127.0.0.1:49776|Still lines to be sent|iteration|299|unsent|3
-TRACE|0703-164607|paul@127.0.0.1:49776|flush|lines|0|server|0|mapr|3|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-WARN|0703-164607|paul@127.0.0.1:49776|Some lines remain unsent|3
-INFO|0703-164616|2000147|stats.go:53|8|10|7|0.80|115h10m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|0703-164626|2000147|stats.go:53|8|10|7|0.90|115h11m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|0703-164636|2000147|stats.go:53|8|10|7|0.76|115h11m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|0703-164646|2000147|stats.go:53|8|10|7|0.80|115h11m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|0703-164656|2000147|stats.go:53|8|10|7|0.84|115h11m34s|MAPREDUCE:STATS|lifetimeConnections=3|currentConnections=0
-INFO|0703-164706|2000147|stats.go:53|8|10|7|0.71|115h11m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=3
-INFO|0703-164708|Handling connection
-INFO|0703-164708|paul@127.0.0.1:57944|Incoming authorization
-INFO|0703-164708|paul@127.0.0.1:57944|Reading|./id_rsa.pub
-DEBUG|0703-164708|paul@127.0.0.1:57944|Authorized public key fingerprint|SHA256:6JCEoZk+DgZKsndyjIGCghIaoKMMxeswdTAYRQ7WBFE
-DEBUG|0703-164708|paul@127.0.0.1:57944|Offered public key fingerprint|SHA256:6JCEoZk+DgZKsndyjIGCghIaoKMMxeswdTAYRQ7WBFE
-INFO|0703-164708|2000147|stats.go:53|8|14|7|0.71|115h11m46s|MAPREDUCE:STATS|lifetimeConnections=4|currentConnections=1
-INFO|0703-164708|paul@127.0.0.1:57944|Invoking channel handler
-INFO|0703-164708|paul@127.0.0.1:57944|Invoking request handler
-ERROR|0703-164708|paul@127.0.0.1:57944|ssh: parse error in message type 0
-DEBUG|0703-164708|paul@127.0.0.1:57944|Creating new server handler
-DEBUG|0703-164708|paul@127.0.0.1:57944|protocol 4.1 base64 bWFwIGZyb20gU1RBVFMgc2VsZWN0IGNvdW50KCRsaW5lKSxsYXN0KCR0aW1lKSxhdmcoJGdvcm91dGluZXMpLG1pbihjb25jdXJyZW50Q29ubmVjdGlvbnMpLG1heChsaWZldGltZUNvbm5lY3Rpb25zKSBncm91cCBieSAkaG9zdG5hbWUgb3V0ZmlsZSBkbWFwMWEuY3N2LnRtcA==
-TRACE|0703-164708|paul@127.0.0.1:57944|Base64 decoded received command|map from STATS select count($line),last($time),avg($goroutines),min(concurrentConnections),max(lifetimeConnections) group by $hostname outfile dmap1a.csv.tmp|10|[map from STATS select count($line),last($time),avg($goroutines),min(concurrentConnections),max(lifetimeConnections) group by $hostname outfile dmap1a.csv.tmp]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164708|paul@127.0.0.1:57944|Handling user command|10|[map from STATS select count($line),last($time),avg($goroutines),min(concurrentConnections),max(lifetimeConnections) group by $hostname outfile dmap1a.csv.tmp]
-INFO|0703-164708|Creating turbo aggregate for MapReduce|query|from STATS select count($line),last($time),avg($goroutines),min(concurrentConnections),max(lifetimeConnections) group by $hostname outfile dmap1a.csv.tmp
-INFO|0703-164708|Creating turbo log format parser|default
-DEBUG|0703-164708|paul@127.0.0.1:57944|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-164708|paul@127.0.0.1:57944|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164708|paul@127.0.0.1:57944|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164708|TurboAggregate: Starting|interval|5s
-INFO|0703-164708|TurboAggregate: Started, waiting for data
-DEBUG|0703-164708|Reading data from file(s)
-INFO|0703-164708|TurboAggregate: Serialization loop started
-INFO|0703-164708|TurboAggregate: Batch processor loop started
-INFO|0703-164708|paul@127.0.0.1:57944|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-164708|paul@127.0.0.1:57944|Added pending files|count|1|totalPending|1
-DEBUG|0703-164708|paul@127.0.0.1:57944|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-164708|paul@127.0.0.1:57944|Command finished|activeCommands|1|pendingFiles|0
-INFO|0703-164708|paul@127.0.0.1:57944|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164708|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164708|paul@127.0.0.1:57944|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164708|paul@127.0.0.1:57944|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164708|paul@127.0.0.1:57944|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164708|paul@127.0.0.1:57944|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164708|paul@127.0.0.1:57944|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-164708|paul@127.0.0.1:57944|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164708|paul@127.0.0.1:57944|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164708|paul@127.0.0.1:57944|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164708|paul@127.0.0.1:57944|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164708|paul@127.0.0.1:57944|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164708|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071148|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071148|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071149|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071149|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071149|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071156|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071156|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071157|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071157|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071158|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071158|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071158|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071159|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071159|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071206|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071206|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071206|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071207|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071207|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071208|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071208|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071209|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071209|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071209|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071216|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071216|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071217|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071217|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071217|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071218|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071218|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071218|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071219|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071219|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071219|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071226|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164708|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071226|1|stats.go:56|8|11|7|0.21|471h0m2
-DEBUG|0703-164708|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164708|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|0
-DEBUG|0703-164708|TurboAggregate: Processing line|lineNumber|0|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164708|TurboAggregate: Parsed fields|lineNumber|0|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:16 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164708|TurboAggregate: New group created|groupKey|integrationtest|totalGroups|1
-INFO|0703-164708|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|1
-INFO|0703-164708|TurboAggregate: Parsed fields|lineNumber|1|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:16 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164708|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|2
-INFO|0703-164708|TurboAggregate: Parsed fields|lineNumber|2|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:12 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164708|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|3
-INFO|0703-164708|TurboAggregate: Parsed fields|lineNumber|3|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:17 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164708|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|4
-INFO|0703-164708|TurboAggregate: Parsed fields|lineNumber|4|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:14 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164708|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|5
-INFO|0703-164708|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|6
-INFO|0703-164708|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|7
-INFO|0703-164708|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|8
-INFO|0703-164708|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|9
-INFO|0703-164708|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|10
-INFO|0703-164708|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|100
-INFO|0703-164708|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164708|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164708|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|100
-INFO|0703-164708|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|200
-INFO|0703-164708|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164708|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164708|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|200
-INFO|0703-164708|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|300
-INFO|0703-164708|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164708|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164708|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|300
-INFO|0703-164708|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|400
-INFO|0703-164708|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164708|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164708|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|400
-INFO|0703-164708|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|500
-INFO|0703-164708|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164708|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164708|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|500
-INFO|0703-164708|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|600
-INFO|0703-164708|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164708|TurboAggregate: Processing batch|batchSize|13|totalLinesProcessed|600
-INFO|0703-164708|TurboAggregate: Batch processed|successCount|13|errorCount|0|totalLinesProcessed|613
-TRACE|0703-164708|paul@127.0.0.1:57944|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164708|paul@127.0.0.1:57944|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164708|paul@127.0.0.1:57944|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164708|paul@127.0.0.1:57944|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164708|paul@127.0.0.1:57944|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164708|paul@127.0.0.1:57944|File processing complete|path|mapr_testdata.log|remainingPending|0
-INFO|0703-164708|paul@127.0.0.1:57944|All files processed|count|1
-DEBUG|0703-164708|paul@127.0.0.1:57944|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164708|paul@127.0.0.1:57944|Flushing turbo data|channelLen|0
-DEBUG|0703-164708|paul@127.0.0.1:57944|Turbo channel drained successfully
-DEBUG|0703-164708|paul@127.0.0.1:57944|Waiting for data transmission|duration|500ms
-DEBUG|0703-164709|paul@127.0.0.1:57944|Command finished|activeCommands|0|pendingFiles|0
-INFO|0703-164709|paul@127.0.0.1:57944|shutdown() called|activeCommands|0|turboMode|true
-DEBUG|0703-164709|paul@127.0.0.1:57944|Flushing turbo data|channelLen|0
-DEBUG|0703-164709|paul@127.0.0.1:57944|Turbo channel drained successfully
-TRACE|0703-164709|paul@127.0.0.1:57944|flush()|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:368
-TRACE|0703-164709|paul@127.0.0.1:57944|flush|lines|0|server|0|mapr|0|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164709|paul@127.0.0.1:57944|ALL lines sent|0xc00102f8c0
-TRACE|0703-164709|paul@127.0.0.1:57944|baseHandler.Read|checking turboLines channel|channelLen|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:94
-TRACE|0703-164709|paul@127.0.0.1:57944|baseHandler.Read|EOF received and channel empty, disabling turbo mode|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:132
-TRACE|0703-164709|paul@127.0.0.1:57944|baseHandler.Read|no data in turboLines, falling through|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:139
-INFO|0703-164709|paul@127.0.0.1:57944|Shutting down turbo aggregate
-INFO|0703-164709|TurboAggregate: Shutdown called|linesProcessed|613|currentGroups|1
-INFO|0703-164709|TurboAggregate: Processing final batch
-INFO|0703-164709|TurboAggregate: Waiting for all processing to complete
-INFO|0703-164709|TurboAggregate: All processing complete, groups before final serialization|groupCount|1
-INFO|0703-164709|TurboAggregate: Starting serialization|linesProcessed|613|currentGroups|1
-INFO|0703-164709|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-164709|TurboAggregate: Waiting for batch processing to complete
-INFO|0703-164709|TurboAggregate: Batch processor stopped by shutdown
-INFO|0703-164709|TurboAggregate: Batch processor loop ended
-INFO|0703-164709|TurboAggregate: Serialization loop stopped by shutdown
-INFO|0703-164709|2000147|stats.go:53|8|19|7|0.71|115h11m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-164709|TurboAggregate: Serialization loop ended
-INFO|0703-164709|paul@127.0.0.1:57944|Good bye Mister!
-INFO|0703-164709|paul@127.0.0.1:57944|Shutting down turbo aggregate
-INFO|0703-164709|TurboAggregate: Shutdown called|linesProcessed|613|currentGroups|1
-INFO|0703-164709|TurboAggregate: Processing final batch
-INFO|0703-164709|TurboAggregate: Waiting for all processing to complete
-INFO|0703-164709|TurboAggregate: All processing complete, groups before final serialization|groupCount|1
-INFO|0703-164709|TurboAggregate: Starting serialization|linesProcessed|613|currentGroups|1
-INFO|0703-164709|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-164709|TurboAggregate: Waiting for batch processing to complete
-INFO|0703-164709|TurboAggregate: Groups before serialization|count|1
-INFO|0703-164709|TurboAggregate: Serialization details|groupCount|1|sampleGroups|[group=integrationtest, samples=613]
-INFO|0703-164709|TurboAggregate: Calling group.Serialize
-TRACE|0703-164709|Serialising mapr.AggregateSet|AggregateSet(Samples:613,FValues:map[avg($goroutines):7103 count($line):613 max(lifetimeConnections):1],SValues:map[last($time):1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164709|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-164709|TurboAggregate: After serialization|groupsRemaining|1
-INFO|0703-164709|TurboAggregate: Groups before serialization|count|1
-INFO|0703-164709|TurboAggregate: Serialization details|groupCount|1|sampleGroups|[group=integrationtest, samples=613]
-INFO|0703-164709|TurboAggregate: Calling group.Serialize
-TRACE|0703-164709|paul@127.0.0.1:57944|channel->handler: EOF|at /home/paul/git/dtail/internal/server/server.go:189
-TRACE|0703-164709|Serialising mapr.AggregateSet|AggregateSet(Samples:613,FValues:map[avg($goroutines):7103 count($line):613 max(lifetimeConnections):1],SValues:map[last($time):1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164709|paul@127.0.0.1:57944|Shutting down turbo aggregate
-INFO|0703-164709|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-164709|TurboAggregate: Shutdown called|linesProcessed|613|currentGroups|1
-INFO|0703-164709|TurboAggregate: After serialization|groupsRemaining|1
-INFO|0703-164709|TurboAggregate: Processing final batch
-INFO|0703-164709|TurboAggregate: Waiting for all processing to complete
-INFO|0703-164709|TurboAggregate: All processing complete, groups before final serialization|groupCount|1
-INFO|0703-164709|TurboAggregate: Starting serialization|linesProcessed|613|currentGroups|1
-INFO|0703-164709|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-164709|TurboAggregate: Waiting for batch processing to complete
-INFO|0703-164709|TurboAggregate: Groups before serialization|count|1
-INFO|0703-164709|TurboAggregate: Serialization details|groupCount|1|sampleGroups|[group=integrationtest, samples=613]
-INFO|0703-164709|TurboAggregate: Calling group.Serialize
-TRACE|0703-164709|Serialising mapr.AggregateSet|AggregateSet(Samples:613,FValues:map[avg($goroutines):7103 count($line):613 max(lifetimeConnections):1],SValues:map[last($time):1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164709|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-164709|TurboAggregate: After serialization|groupsRemaining|1
-INFO|0703-164709|TurboAggregate: Shutdown complete
-INFO|0703-164709|TurboAggregate: Shutdown complete
-INFO|0703-164709|paul@127.0.0.1:57944|Shutting down turbo aggregate
-INFO|0703-164709|TurboAggregate: Shutdown called|linesProcessed|613|currentGroups|1
-INFO|0703-164709|TurboAggregate: Processing final batch
-INFO|0703-164709|TurboAggregate: Waiting for all processing to complete
-INFO|0703-164709|TurboAggregate: All processing complete, groups before final serialization|groupCount|1
-INFO|0703-164709|TurboAggregate: Starting serialization|linesProcessed|613|currentGroups|1
-INFO|0703-164709|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-164709|TurboAggregate: Waiting for batch processing to complete
-INFO|0703-164709|TurboAggregate: Shutdown complete
-INFO|0703-164709|TurboAggregate: Groups before serialization|count|1
-INFO|0703-164709|TurboAggregate: Serialization details|groupCount|1|sampleGroups|[group=integrationtest, samples=613]
-INFO|0703-164709|TurboAggregate: Calling group.Serialize
-TRACE|0703-164709|Serialising mapr.AggregateSet|AggregateSet(Samples:613,FValues:map[avg($goroutines):7103 count($line):613 max(lifetimeConnections):1],SValues:map[last($time):1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164709|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-164709|TurboAggregate: After serialization|groupsRemaining|1
-INFO|0703-164710|TurboAggregate: Shutdown complete
-INFO|0703-164716|2000147|stats.go:53|8|10|7|0.76|115h11m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-164726|2000147|stats.go:53|8|10|7|0.80|115h12m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-164736|2000147|stats.go:53|8|10|7|1.05|115h12m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-164746|2000147|stats.go:53|8|10|7|0.89|115h12m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-164756|2000147|stats.go:53|8|10|7|0.90|115h12m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-164806|2000147|stats.go:53|8|10|7|0.92|115h12m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-164816|2000147|stats.go:53|8|10|7|1.07|115h12m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-164826|2000147|stats.go:53|8|10|7|1.06|115h13m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-164836|2000147|stats.go:53|8|10|7|1.20|115h13m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-164846|2000147|stats.go:53|8|10|7|1.09|115h13m24s|MAPREDUCE:STATS|lifetimeConnections=4|currentConnections=0
-INFO|0703-164856|2000147|stats.go:53|8|10|7|1.16|115h13m34s|MAPREDUCE:STATS|lifetimeConnections=4|currentConnections=0
-INFO|0703-164906|2000147|stats.go:53|8|10|7|1.22|115h13m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-164916|2000147|stats.go:53|8|10|7|1.03|115h13m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-164926|2000147|stats.go:53|8|10|7|0.87|115h14m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-164936|2000147|stats.go:53|8|10|7|0.74|115h14m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-164946|2000147|stats.go:53|8|10|7|0.70|115h14m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-164957|2000147|stats.go:53|8|10|7|0.74|115h14m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-165007|2000147|stats.go:53|8|10|7|0.85|115h14m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-165017|2000147|stats.go:53|8|10|7|0.95|115h14m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-165027|2000147|stats.go:53|8|10|7|0.97|115h15m4s|MAPREDUCE:STATS|lifetimeConnections=4|currentConnections=0
-INFO|0703-165037|2000147|stats.go:53|8|10|7|1.28|115h15m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-165047|2000147|stats.go:53|8|10|7|1.39|115h15m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-165057|2000147|stats.go:53|8|10|7|1.63|115h15m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-165107|2000147|stats.go:53|8|10|7|1.61|115h15m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-165117|2000147|stats.go:53|8|10|7|1.52|115h15m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-165127|2000147|stats.go:53|8|10|7|1.36|115h16m4s|MAPREDUCE:STATS|lifetimeConnections=4|currentConnections=0
-INFO|0703-165137|2000147|stats.go:53|8|10|7|1.15|115h16m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-165147|2000147|stats.go:53|8|10|7|1.05|115h16m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=4
-INFO|0703-165152|Handling connection
-INFO|0703-165152|paul@127.0.0.1:48852|Incoming authorization
-INFO|0703-165152|paul@127.0.0.1:48852|Reading|./id_rsa.pub
-DEBUG|0703-165152|paul@127.0.0.1:48852|Authorized public key fingerprint|SHA256:6JCEoZk+DgZKsndyjIGCghIaoKMMxeswdTAYRQ7WBFE
-DEBUG|0703-165152|paul@127.0.0.1:48852|Offered public key fingerprint|SHA256:6JCEoZk+DgZKsndyjIGCghIaoKMMxeswdTAYRQ7WBFE
-INFO|0703-165152|2000147|stats.go:53|8|14|7|1.05|115h16m30s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=5
-INFO|0703-165152|paul@127.0.0.1:48852|Invoking channel handler
-INFO|0703-165152|paul@127.0.0.1:48852|Invoking request handler
-ERROR|0703-165152|paul@127.0.0.1:48852|ssh: parse error in message type 0
-DEBUG|0703-165152|paul@127.0.0.1:48852|Creating new server handler
-DEBUG|0703-165152|paul@127.0.0.1:48852|protocol 4.1 base64 bWFwIGZyb20gU1RBVFMgc2VsZWN0IGNvdW50KCRsaW5lKSxsYXN0KCR0aW1lKSxhdmcoJGdvcm91dGluZXMpLG1pbihjb25jdXJyZW50Q29ubmVjdGlvbnMpLG1heChsaWZldGltZUNvbm5lY3Rpb25zKSBncm91cCBieSAkaG9zdG5hbWUgb3V0ZmlsZSBkbWFwMWEuY3N2LnRtcA==
-TRACE|0703-165152|paul@127.0.0.1:48852|Base64 decoded received command|map from STATS select count($line),last($time),avg($goroutines),min(concurrentConnections),max(lifetimeConnections) group by $hostname outfile dmap1a.csv.tmp|10|[map from STATS select count($line),last($time),avg($goroutines),min(concurrentConnections),max(lifetimeConnections) group by $hostname outfile dmap1a.csv.tmp]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-165152|paul@127.0.0.1:48852|Handling user command|10|[map from STATS select count($line),last($time),avg($goroutines),min(concurrentConnections),max(lifetimeConnections) group by $hostname outfile dmap1a.csv.tmp]
-INFO|0703-165152|Creating turbo aggregate for MapReduce|query|from STATS select count($line),last($time),avg($goroutines),min(concurrentConnections),max(lifetimeConnections) group by $hostname outfile dmap1a.csv.tmp
-INFO|0703-165152|Creating turbo log format parser|default
-DEBUG|0703-165152|paul@127.0.0.1:48852|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-165152|paul@127.0.0.1:48852|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-165152|paul@127.0.0.1:48852|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-165152|Reading data from file(s)
-INFO|0703-165152|paul@127.0.0.1:48852|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165152|paul@127.0.0.1:48852|Added pending files|count|1|totalPending|1
-INFO|0703-165152|TurboAggregate: Starting|interval|5s
-DEBUG|0703-165152|paul@127.0.0.1:48852|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-165152|TurboAggregate: Started, waiting for data
-INFO|0703-165152|paul@127.0.0.1:48852|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-165152|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165152|paul@127.0.0.1:48852|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-165152|paul@127.0.0.1:48852|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-165152|TurboAggregate: Batch processor loop started
-INFO|0703-165152|TurboAggregate: Serialization loop started
-INFO|0703-165152|paul@127.0.0.1:48852|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165152|paul@127.0.0.1:48852|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165152|paul@127.0.0.1:48852|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165152|paul@127.0.0.1:48852|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-165152|paul@127.0.0.1:48852|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165152|paul@127.0.0.1:48852|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165152|paul@127.0.0.1:48852|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165152|paul@127.0.0.1:48852|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-165152|paul@127.0.0.1:48852|Command finished|activeCommands|1|pendingFiles|1
-INFO|0703-165152|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071148|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071148|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071149|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071149|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071149|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071156|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071156|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071157|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071157|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071158|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071158|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071158|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071159|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071159|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071206|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071206|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071206|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071207|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071207|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071208|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071208|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071209|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071209|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071209|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071216|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071216|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071217|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071217|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071217|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071218|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071218|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071218|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071219|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071219|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071219|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071226|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165152|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071226|1|stats.go:56|8|11|7|0.21|471h0m2
-DEBUG|0703-165152|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165152|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|0
-DEBUG|0703-165152|TurboAggregate: Processing line|lineNumber|0|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-165152|TurboAggregate: Parsed fields|lineNumber|0|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:16 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-165152|TurboAggregate: New group created|groupKey|integrationtest|totalGroups|1
-INFO|0703-165152|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|1
-INFO|0703-165152|TurboAggregate: Parsed fields|lineNumber|1|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:16 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-165152|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|2
-INFO|0703-165152|TurboAggregate: Parsed fields|lineNumber|2|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:12 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-165152|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|3
-INFO|0703-165152|TurboAggregate: Parsed fields|lineNumber|3|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:17 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-165152|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|4
-INFO|0703-165152|TurboAggregate: Parsed fields|lineNumber|4|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:14 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-165152|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|5
-INFO|0703-165152|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|6
-INFO|0703-165152|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|7
-INFO|0703-165152|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|8
-INFO|0703-165152|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|9
-INFO|0703-165152|TurboAggregate: Aggregated sample|groupKey|integrationtest|aggregatedFields|[$line $time $goroutines lifetimeConnections]|sampleCount|10
-INFO|0703-165152|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|100
-INFO|0703-165152|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165152|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165152|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|100
-INFO|0703-165152|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|200
-INFO|0703-165152|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165152|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165152|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|200
-INFO|0703-165152|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|300
-INFO|0703-165152|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165152|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165152|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|300
-INFO|0703-165152|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|400
-INFO|0703-165152|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165152|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165152|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|400
-INFO|0703-165152|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|500
-INFO|0703-165152|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165152|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165152|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|500
-INFO|0703-165152|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|600
-INFO|0703-165152|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165152|TurboAggregate: Processing batch|batchSize|13|totalLinesProcessed|600
-INFO|0703-165152|TurboAggregate: Batch processed|successCount|13|errorCount|0|totalLinesProcessed|613
-TRACE|0703-165152|paul@127.0.0.1:48852|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-165152|paul@127.0.0.1:48852|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-165152|paul@127.0.0.1:48852|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-165152|paul@127.0.0.1:48852|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-165152|paul@127.0.0.1:48852|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-165152|paul@127.0.0.1:48852|File processing complete|path|mapr_testdata.log|remainingPending|0
-INFO|0703-165152|paul@127.0.0.1:48852|All files processed|count|1
-DEBUG|0703-165152|paul@127.0.0.1:48852|Turbo mode: flushing data before EOF signal
-DEBUG|0703-165152|paul@127.0.0.1:48852|Flushing turbo data|channelLen|0
-DEBUG|0703-165152|paul@127.0.0.1:48852|Turbo channel drained successfully
-DEBUG|0703-165152|paul@127.0.0.1:48852|Waiting for data transmission|duration|500ms
-DEBUG|0703-165153|paul@127.0.0.1:48852|Command finished|activeCommands|0|pendingFiles|0
-INFO|0703-165153|paul@127.0.0.1:48852|shutdown() called|activeCommands|0|turboMode|true
-DEBUG|0703-165153|paul@127.0.0.1:48852|Flushing turbo data|channelLen|0
-DEBUG|0703-165153|paul@127.0.0.1:48852|Turbo channel drained successfully
-TRACE|0703-165153|paul@127.0.0.1:48852|flush()|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:368
-TRACE|0703-165153|paul@127.0.0.1:48852|flush|lines|0|server|0|mapr|0|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-165153|paul@127.0.0.1:48852|ALL lines sent|0xc0000e27e0
-TRACE|0703-165153|paul@127.0.0.1:48852|baseHandler.Read|checking turboLines channel|channelLen|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:94
-TRACE|0703-165153|paul@127.0.0.1:48852|baseHandler.Read|EOF received and channel empty, disabling turbo mode|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:132
-TRACE|0703-165153|paul@127.0.0.1:48852|baseHandler.Read|no data in turboLines, falling through|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:139
-INFO|0703-165153|paul@127.0.0.1:48852|Shutting down turbo aggregate
-INFO|0703-165153|TurboAggregate: Shutdown called|linesProcessed|613|currentGroups|1
-INFO|0703-165153|TurboAggregate: Processing final batch
-INFO|0703-165153|TurboAggregate: Waiting for all processing to complete
-INFO|0703-165153|TurboAggregate: All processing complete, groups before final serialization|groupCount|1
-INFO|0703-165153|TurboAggregate: Starting serialization|linesProcessed|613|currentGroups|1
-INFO|0703-165153|TurboAggregate: Batch processor stopped by shutdown
-INFO|0703-165153|TurboAggregate: Batch processor loop ended
-INFO|0703-165153|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-165153|TurboAggregate: Waiting for batch processing to complete
-INFO|0703-165153|TurboAggregate: Serialization loop stopped by shutdown
-INFO|0703-165153|TurboAggregate: Serialization loop ended
-INFO|0703-165153|2000147|stats.go:53|8|17|7|1.05|115h16m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165153|paul@127.0.0.1:48852|Good bye Mister!
-INFO|0703-165153|paul@127.0.0.1:48852|Shutting down turbo aggregate
-INFO|0703-165153|TurboAggregate: Shutdown called|linesProcessed|613|currentGroups|1
-INFO|0703-165153|TurboAggregate: Processing final batch
-INFO|0703-165153|TurboAggregate: Waiting for all processing to complete
-INFO|0703-165153|TurboAggregate: All processing complete, groups before final serialization|groupCount|1
-INFO|0703-165153|TurboAggregate: Starting serialization|linesProcessed|613|currentGroups|1
-INFO|0703-165153|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-165153|TurboAggregate: Waiting for batch processing to complete
-INFO|0703-165153|TurboAggregate: Groups before serialization|count|1
-INFO|0703-165153|TurboAggregate: Serialization details|groupCount|1|sampleGroups|[group=integrationtest, samples=613]
-INFO|0703-165153|TurboAggregate: Calling group.Serialize
-TRACE|0703-165153|Serialising mapr.AggregateSet|AggregateSet(Samples:613,FValues:map[avg($goroutines):7103 count($line):613 max(lifetimeConnections):1],SValues:map[last($time):1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-165153|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-165153|TurboAggregate: After serialization|groupsRemaining|1
-INFO|0703-165153|TurboAggregate: Groups before serialization|count|1
-INFO|0703-165153|TurboAggregate: Serialization details|groupCount|1|sampleGroups|[group=integrationtest, samples=613]
-INFO|0703-165153|TurboAggregate: Calling group.Serialize
-TRACE|0703-165153|paul@127.0.0.1:48852|channel->handler: EOF|at /home/paul/git/dtail/internal/server/server.go:189
-TRACE|0703-165153|Serialising mapr.AggregateSet|AggregateSet(Samples:613,FValues:map[avg($goroutines):7103 count($line):613 max(lifetimeConnections):1],SValues:map[last($time):1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-165153|paul@127.0.0.1:48852|Shutting down turbo aggregate
-INFO|0703-165153|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-165153|TurboAggregate: Shutdown called|linesProcessed|613|currentGroups|1
-INFO|0703-165153|TurboAggregate: Processing final batch
-INFO|0703-165153|TurboAggregate: Waiting for all processing to complete
-INFO|0703-165153|TurboAggregate: All processing complete, groups before final serialization|groupCount|1
-INFO|0703-165153|TurboAggregate: Starting serialization|linesProcessed|613|currentGroups|1
-INFO|0703-165153|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-165153|TurboAggregate: Waiting for batch processing to complete
-INFO|0703-165153|TurboAggregate: After serialization|groupsRemaining|1
-INFO|0703-165153|TurboAggregate: Groups before serialization|count|1
-INFO|0703-165153|TurboAggregate: Serialization details|groupCount|1|sampleGroups|[group=integrationtest, samples=613]
-INFO|0703-165153|TurboAggregate: Calling group.Serialize
-TRACE|0703-165153|Serialising mapr.AggregateSet|AggregateSet(Samples:613,FValues:map[avg($goroutines):7103 count($line):613 max(lifetimeConnections):1],SValues:map[last($time):1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-165153|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-165153|TurboAggregate: After serialization|groupsRemaining|1
-INFO|0703-165153|TurboAggregate: Shutdown complete
-INFO|0703-165153|TurboAggregate: Shutdown complete
-INFO|0703-165153|paul@127.0.0.1:48852|Shutting down turbo aggregate
-INFO|0703-165153|TurboAggregate: Shutdown called|linesProcessed|613|currentGroups|1
-INFO|0703-165153|TurboAggregate: Processing final batch
-INFO|0703-165153|TurboAggregate: Waiting for all processing to complete
-INFO|0703-165153|TurboAggregate: All processing complete, groups before final serialization|groupCount|1
-INFO|0703-165153|TurboAggregate: Starting serialization|linesProcessed|613|currentGroups|1
-INFO|0703-165153|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-165153|TurboAggregate: Waiting for batch processing to complete
-INFO|0703-165153|TurboAggregate: Groups before serialization|count|1
-INFO|0703-165153|TurboAggregate: Serialization details|groupCount|1|sampleGroups|[group=integrationtest, samples=613]
-INFO|0703-165153|TurboAggregate: Calling group.Serialize
-INFO|0703-165153|TurboAggregate: Shutdown complete
-TRACE|0703-165153|Serialising mapr.AggregateSet|AggregateSet(Samples:613,FValues:map[avg($goroutines):7103 count($line):613 max(lifetimeConnections):1],SValues:map[last($time):1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-165153|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-165153|TurboAggregate: After serialization|groupsRemaining|1
-INFO|0703-165154|TurboAggregate: Shutdown complete
-INFO|0703-165157|2000147|stats.go:53|8|10|7|1.04|115h16m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165207|2000147|stats.go:53|8|10|7|0.88|115h16m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165217|2000147|stats.go:53|8|10|7|0.82|115h16m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165227|2000147|stats.go:53|8|10|7|1.02|115h17m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165237|2000147|stats.go:53|8|10|7|0.86|115h17m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165247|2000147|stats.go:53|8|10|7|0.80|115h17m25s|MAPREDUCE:STATS|lifetimeConnections=5|currentConnections=0
-INFO|0703-165257|2000147|stats.go:53|8|10|7|0.92|115h17m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165307|2000147|stats.go:53|8|10|7|1.25|115h17m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165317|2000147|stats.go:53|8|10|7|1.13|115h17m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165327|2000147|stats.go:53|8|10|7|1.11|115h18m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165337|2000147|stats.go:53|8|10|7|1.10|115h18m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165347|2000147|stats.go:53|8|10|7|1.08|115h18m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165357|2000147|stats.go:53|8|10|7|1.07|115h18m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165407|2000147|stats.go:53|8|10|7|0.98|115h18m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165417|2000147|stats.go:53|8|10|7|0.83|115h18m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165427|2000147|stats.go:53|8|10|7|0.70|115h19m5s|MAPREDUCE:STATS|lifetimeConnections=5|currentConnections=0
-INFO|0703-165437|2000147|stats.go:53|8|10|7|0.90|115h19m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165447|2000147|stats.go:53|8|10|7|0.83|115h19m25s|MAPREDUCE:STATS|lifetimeConnections=5|currentConnections=0
-INFO|0703-165457|2000147|stats.go:53|8|10|7|0.78|115h19m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165507|2000147|stats.go:53|8|10|7|0.66|115h19m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165517|2000147|stats.go:53|8|10|7|0.71|115h19m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165527|2000147|stats.go:53|8|10|7|0.68|115h20m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165537|2000147|stats.go:53|8|10|7|0.81|115h20m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165547|2000147|stats.go:53|8|10|7|0.91|115h20m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=5
-INFO|0703-165550|Handling connection
-INFO|0703-165550|paul@127.0.0.1:47726|Incoming authorization
-INFO|0703-165550|paul@127.0.0.1:47726|Reading|./id_rsa.pub
-DEBUG|0703-165550|paul@127.0.0.1:47726|Authorized public key fingerprint|SHA256:6JCEoZk+DgZKsndyjIGCghIaoKMMxeswdTAYRQ7WBFE
-DEBUG|0703-165550|paul@127.0.0.1:47726|Offered public key fingerprint|SHA256:6JCEoZk+DgZKsndyjIGCghIaoKMMxeswdTAYRQ7WBFE
-INFO|0703-165550|2000147|stats.go:53|8|14|7|0.84|115h20m28s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=6
-INFO|0703-165550|paul@127.0.0.1:47726|Invoking channel handler
-INFO|0703-165550|paul@127.0.0.1:47726|Invoking request handler
-ERROR|0703-165550|paul@127.0.0.1:47726|ssh: parse error in message type 0
-DEBUG|0703-165550|paul@127.0.0.1:47726|Creating new server handler
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 bWFwIGZyb20gU1RBVFMgc2VsZWN0IGNvdW50KCR0aW1lKSwkdGltZSxtYXgoJGdvcm91dGluZXMpLGF2ZygkZ29yb3V0aW5lcyksbWluKCRnb3JvdXRpbmVzKSBncm91cCBieSAkdGltZSBvcmRlciBieSBjb3VudCgkdGltZSkgZGVzYyBvdXRmaWxlIGRtYXAzX3NlcnZlci5jc3YudG1w
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|map from STATS select count($time),$time,max($goroutines),avg($goroutines),min($goroutines) group by $time order by count($time) desc outfile dmap3_server.csv.tmp|14|[map from STATS select count($time),$time,max($goroutines),avg($goroutines),min($goroutines) group by $time order by count($time) desc outfile dmap3_server.csv.tmp]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|14|[map from STATS select count($time),$time,max($goroutines),avg($goroutines),min($goroutines) group by $time order by count($time) desc outfile dmap3_server.csv.tmp]
-INFO|0703-165550|Creating turbo aggregate for MapReduce|query|from STATS select count($time),$time,max($goroutines),avg($goroutines),min($goroutines) group by $time order by count($time) desc outfile dmap3_server.csv.tmp
-INFO|0703-165550|Creating turbo log format parser|default
-INFO|0703-165550|TurboAggregate: Starting|interval|5s
-INFO|0703-165550|TurboAggregate: Started, waiting for data
-DEBUG|0703-165550|paul@127.0.0.1:47726|Command finished|activeCommands|0|pendingFiles|0
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-165550|TurboAggregate: Batch processor loop started
-INFO|0703-165550|paul@127.0.0.1:47726|shutdown() called|activeCommands|0|turboMode|false
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-165550|TurboAggregate: Serialization loop started
-TRACE|0703-165550|paul@127.0.0.1:47726|flush()|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:368
-TRACE|0703-165550|paul@127.0.0.1:47726|flush|lines|0|server|0|mapr|0|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-165550|paul@127.0.0.1:47726|ALL lines sent|0xc00022a120
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-DEBUG|0703-165550|Reading data from file(s)
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-DEBUG|0703-165550|Reading data from file(s)
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|1
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|2
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-165550|Reading data from file(s)
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|3
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-165550|2000147|stats.go:53|8|29|7|0.84|115h20m28s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=6
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-165550|paul@127.0.0.1:47726|Good bye Mister!
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-165550|paul@127.0.0.1:47726|Shutting down turbo aggregate
-INFO|0703-165550|TurboAggregate: Shutdown called|linesProcessed|0|currentGroups|0
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-165550|TurboAggregate: Serialization loop stopped by shutdown
-INFO|0703-165550|TurboAggregate: Serialization loop ended
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-165550|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-165550|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-165550|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-165550|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-165550|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-165550|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-165550|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-165550|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-DEBUG|0703-165550|Reading data from file(s)
-INFO|0703-165550|TurboAggregate: Batch processor stopped by shutdown
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-165550|TurboAggregate: Processing final batch
-INFO|0703-165550|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|4
-DEBUG|0703-165550|Reading data from file(s)
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|5
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|9|totalLinesProcessed|0
-DEBUG|0703-165550|TurboAggregate: Processing line|lineNumber|0|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-165550|TurboAggregate: Waiting for all processing to complete
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-165550|TurboAggregate: Parsed fields|lineNumber|0|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:16 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071143|totalGroups|1
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|1
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165550|TurboAggregate: Parsed fields|lineNumber|1|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:16 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|2
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-165550|TurboAggregate: Parsed fields|lineNumber|2|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:12 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-165550|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|3
-INFO|0703-165550|TurboAggregate: Parsed fields|lineNumber|3|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:17 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-165550|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|4
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|TurboAggregate: Parsed fields|lineNumber|4|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:14 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-165550|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|5
-INFO|0703-165550|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|6
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|6
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|8
-INFO|0703-165550|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|9
-INFO|0703-165550|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|10
-INFO|0703-165550|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|7
-INFO|0703-165550|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time $goroutines $goroutines $goroutines]|sampleCount|11
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|9|errorCount|0|totalLinesProcessed|14
-INFO|0703-165550|TurboAggregate: Batch processor loop ended
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071147|totalGroups|2
-DEBUG|0703-165550|Reading data from file(s)
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|6
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-165550|Reading data from file(s)
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071148|totalGroups|3
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071149|totalGroups|4
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071156|totalGroups|5
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071157|totalGroups|6
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071158|totalGroups|7
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071159|totalGroups|8
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|7
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071206|totalGroups|9
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|18
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071207|totalGroups|10
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071208|totalGroups|11
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071209|totalGroups|12
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071213|totalGroups|13
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|61
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071216|totalGroups|14
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071217|totalGroups|15
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071218|totalGroups|16
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-165550|Reading data from file(s)
-DEBUG|0703-165550|Reading data from file(s)
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|8
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071226|totalGroups|18
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071227|totalGroups|19
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|296
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|9
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-DEBUG|0703-165550|Reading data from file(s)
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-165550|Reading data from file(s)
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|10
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071219|totalGroups|17
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071228|totalGroups|20
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|287
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071229|totalGroups|21
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|364
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|371
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071236|totalGroups|22
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071237|totalGroups|23
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071238|totalGroups|24
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071239|totalGroups|25
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071246|totalGroups|26
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071247|totalGroups|27
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071248|totalGroups|28
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071249|totalGroups|29
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071256|totalGroups|30
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071257|totalGroups|31
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071258|totalGroups|32
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|444
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071259|totalGroups|33
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071306|totalGroups|34
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071307|totalGroups|35
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|464
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071308|totalGroups|36
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071309|totalGroups|37
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071316|totalGroups|38
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071317|totalGroups|39
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071318|totalGroups|40
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|296
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071319|totalGroups|41
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|530
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-DEBUG|0703-165550|Reading data from file(s)
-DEBUG|0703-165550|Reading data from file(s)
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|350
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|538
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|543
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071326|totalGroups|43
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|41|totalLinesProcessed|538
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|569
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|575
-DEBUG|0703-165550|Reading data from file(s)
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|12
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071329|totalGroups|42
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|677
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071336|totalGroups|45
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071337|totalGroups|46
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|41|errorCount|0|totalLinesProcessed|708
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071338|totalGroups|47
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071339|totalGroups|48
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|725
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071346|totalGroups|49
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071347|totalGroups|50
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071348|totalGroups|51
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071349|totalGroups|52
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|653
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071356|totalGroups|53
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071357|totalGroups|54
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071358|totalGroups|55
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071359|totalGroups|56
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|811
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071406|totalGroups|57
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|816
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071407|totalGroups|59
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071528|totalGroups|58
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|13
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071408|totalGroups|60
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071529|totalGroups|61
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071409|totalGroups|62
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071416|totalGroups|63
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071536|totalGroups|64
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|858
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071537|totalGroups|67
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071328|totalGroups|68
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071418|totalGroups|70
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071419|totalGroups|71
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071426|totalGroups|72
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|11
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071427|totalGroups|73
-DEBUG|0703-165550|TurboAggregate: Processing line|lineNumber|1000|linePreview|INFO|1002-071329|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071428|totalGroups|74
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071429|totalGroups|75
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071436|totalGroups|76
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071437|totalGroups|77
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071438|totalGroups|78
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|1027
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|1042
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|1042
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071439|totalGroups|79
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071446|totalGroups|80
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071447|totalGroups|81
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071448|totalGroups|82
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071449|totalGroups|83
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|1059
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071456|totalGroups|84
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071457|totalGroups|85
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071458|totalGroups|86
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071459|totalGroups|87
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071506|totalGroups|88
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071508|totalGroups|89
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071509|totalGroups|90
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071516|totalGroups|91
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071517|totalGroups|92
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071507|totalGroups|65
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071518|totalGroups|93
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071519|totalGroups|94
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071526|totalGroups|95
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071527|totalGroups|96
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|14
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071539|totalGroups|97
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071546|totalGroups|98
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071547|totalGroups|99
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|1243
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071548|totalGroups|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|1259
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|1274
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|1281
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|1178
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|1313
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071559|totalGroups|102
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071549|totalGroups|101
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071606|totalGroups|103
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071607|totalGroups|104
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071556|totalGroups|105
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071557|totalGroups|107
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071608|totalGroups|107
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071558|totalGroups|108
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071609|totalGroups|109
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|1401
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071616|totalGroups|110
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071617|totalGroups|111
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071618|totalGroups|112
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071619|totalGroups|113
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|1468
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|1487
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071626|totalGroups|114
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071627|totalGroups|115
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071628|totalGroups|116
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071629|totalGroups|117
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071636|totalGroups|118
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071637|totalGroups|119
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071638|totalGroups|120
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|1711
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071639|totalGroups|121
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071646|totalGroups|122
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|1737
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|1745
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071647|totalGroups|123
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071648|totalGroups|124
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071649|totalGroups|125
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071327|totalGroups|44
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|1854
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|1870
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|1874
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|1896
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|1907
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|1927
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|1972
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Processing line|lineNumber|2000|linePreview|INFO|1002-071307|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|2012
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|2032
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|567
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|2090
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|2139
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|1786
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|2184
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071657|totalGroups|127
-DEBUG|0703-165550|Reading data from file(s)
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071658|totalGroups|128
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|15
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071659|totalGroups|129
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071706|totalGroups|130
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071656|totalGroups|126
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|Reading data from file(s)
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071708|totalGroups|132
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|16
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|2467
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|33|totalLinesProcessed|1781
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|2472
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071709|totalGroups|133
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|33|errorCount|0|totalLinesProcessed|2560
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071716|totalGroups|134
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071717|totalGroups|135
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|2585
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|2590
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071718|totalGroups|136
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071719|totalGroups|137
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071726|totalGroups|138
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071727|totalGroups|139
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071728|totalGroups|140
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071729|totalGroups|141
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071736|totalGroups|142
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071737|totalGroups|143
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|2724
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|2752
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|2765
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071819|totalGroups|144
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|2741
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071826|totalGroups|145
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071827|totalGroups|146
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|2792
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071828|totalGroups|147
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071829|totalGroups|148
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|18|totalLinesProcessed|2803
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071836|totalGroups|149
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071837|totalGroups|150
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071838|totalGroups|151
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|18|errorCount|0|totalLinesProcessed|2842
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071738|totalGroups|152
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|2846
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071839|totalGroups|153
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071739|totalGroups|154
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071846|totalGroups|155
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071847|totalGroups|156
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071746|totalGroups|157
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071848|totalGroups|158
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071849|totalGroups|159
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071856|totalGroups|161
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071747|totalGroups|161
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071857|totalGroups|162
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|98|totalLinesProcessed|2905
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071858|totalGroups|164
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071748|totalGroups|164
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071859|totalGroups|165
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071749|totalGroups|166
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071906|totalGroups|167
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071907|totalGroups|168
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071756|totalGroups|169
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071908|totalGroups|170
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071757|totalGroups|171
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|2999
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071917|totalGroups|173
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071758|totalGroups|174
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071918|totalGroups|175
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|3044
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071919|totalGroups|177
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071759|totalGroups|177
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071538|totalGroups|69
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071806|totalGroups|179
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071920|totalGroups|179
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071807|totalGroups|180
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071808|totalGroups|181
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071809|totalGroups|182
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071816|totalGroups|183
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071817|totalGroups|184
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071818|totalGroups|185
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|3177
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|3121
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|3216
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071707|totalGroups|131
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|13|totalLinesProcessed|3378
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071912|totalGroups|186
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071947|totalGroups|188
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071921|totalGroups|188
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|3399
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071948|totalGroups|189
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|Reading data from file(s)
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|3427
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|17
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|2433
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|3463
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071949|totalGroups|190
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071922|totalGroups|191
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|13|errorCount|0|totalLinesProcessed|3472
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|3479
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071926|totalGroups|192
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|3502
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|3503
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071927|totalGroups|193
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|3509
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|3516
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|3524
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071928|totalGroups|194
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|2436
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071913|totalGroups|195
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071929|totalGroups|196
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071417|totalGroups|66
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|3574
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071936|totalGroups|197
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071937|totalGroups|198
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071938|totalGroups|199
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|3666
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071916|totalGroups|200
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071939|totalGroups|201
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|3702
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071909|totalGroups|172
-INFO|0703-165550|TurboAggregate: New group created|groupKey|1002-071946|totalGroups|202
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|3787
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|97|totalLinesProcessed|3884
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|3888
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|3945
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|3990
-DEBUG|0703-165550|TurboAggregate: Processing line|lineNumber|4000|linePreview|INFO|1002-071816|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|4003
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|4040
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|4056
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|4065
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|4049
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|4168
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|97|errorCount|0|totalLinesProcessed|4277
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|Reading data from file(s)
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|18
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|4353
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|4363
-DEBUG|0703-165550|Reading data from file(s)
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|4365
-DEBUG|0703-165550|Reading data from file(s)
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|19
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|4379
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|4390
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|4416
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|4506
-DEBUG|0703-165550|Reading data from file(s)
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|4093
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|4584
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|4600
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|21
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|4533
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|4709
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|4051
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|64|totalLinesProcessed|4755
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|4764
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|Reading data from file(s)
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|4783
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|22
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-165550|paul@127.0.0.1:47726|protocol 4.1 base64 Y2F0OiBtYXByX3Rlc3RkYXRhLmxvZyByZWdleDpkZWZhdWx0IFx8TUFQUkVEVUNFOlNUQVRTXHw=
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-TRACE|0703-165550|paul@127.0.0.1:47726|Base64 decoded received command|cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-DEBUG|0703-165550|paul@127.0.0.1:47726|Handling user command|4|[cat: mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-DEBUG|0703-165550|TurboAggregate: Processing line|lineNumber|3000|linePreview|INFO|1002-071629|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-165550|paul@127.0.0.1:47726|Shutting down turbo aggregate
-INFO|0703-165550|TurboAggregate: Shutdown called|linesProcessed|4805|currentGroups|202
-INFO|0703-165550|TurboAggregate: Processing final batch
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|87|totalLinesProcessed|4811
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|4482
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|5175
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|5200
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|5220
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|98|errorCount|0|totalLinesProcessed|5324
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|5356
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|5392
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|87|errorCount|0|totalLinesProcessed|5422
-INFO|0703-165550|TurboAggregate: Waiting for all processing to complete
-DEBUG|0703-165550|Reading data from file(s)
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|5453
-INFO|0703-165550|paul@127.0.0.1:47726|Processing files|count|1|glob|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|23
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|64|errorCount|0|totalLinesProcessed|5473
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|17|totalLinesProcessed|4861
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|5646
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|5650
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|5657
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|5681
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|5684
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|5780
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|5826
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|17|errorCount|0|totalLinesProcessed|5580
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|5889
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|5969
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Processing line|lineNumber|6000|linePreview|INFO|1002-071336|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-165550|TurboAggregate: ProcessLineDirect called|totalLinesReceived|6000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071928|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|6005
-INFO|0703-165550|paul@127.0.0.1:47726|Added pending files|count|1|totalPending|20
-DEBUG|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-DEBUG|0703-165550|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|6144
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|6163
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|6056
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|6166
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|6175
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|6183
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|6191
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|30|totalLinesProcessed|6213
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|6264
-INFO|0703-165550|paul@127.0.0.1:47726|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-165550|paul@127.0.0.1:47726|Start reading|mapr_testdata.log|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-DEBUG|0703-165550|paul@127.0.0.1:47726|Got limiter slot immediately|path|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo mode for reading|mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|2237
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo channel-less implementation|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|30|errorCount|0|totalLinesProcessed|6350
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|6497
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|6506
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|6560
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|6507
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|6626
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|6671
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|6528
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|6685
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|82|totalLinesProcessed|6744
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|86|totalLinesProcessed|6827
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|6892
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|6918
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|6938
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|6950
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Processing line|lineNumber|7000|linePreview|INFO|1002-071809|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|39|totalLinesProcessed|7043
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|7102
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|82|errorCount|0|totalLinesProcessed|7155
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|31|totalLinesProcessed|7174
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|7215
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|7228
-INFO|0703-165550|TurboAggregate: ProcessLineDirect called|totalLinesReceived|7000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071908|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|5488
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|39|errorCount|0|totalLinesProcessed|7311
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|7315
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|7338
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|7345
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|7354
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|31|errorCount|0|totalLinesProcessed|7353
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|3|totalLinesProcessed|7423
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|3|errorCount|0|totalLinesProcessed|7448
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|57|totalLinesProcessed|7388
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|7462
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|7476
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|7480
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|6165
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|7649
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|57|errorCount|0|totalLinesProcessed|7707
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|7728
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|7736
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|7738
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|7760
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|7763
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|7774
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|51|totalLinesProcessed|7828
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|67|totalLinesProcessed|7697
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|7775
-DEBUG|0703-165550|TurboAggregate: Processing line|lineNumber|8000|linePreview|INFO|1002-071219|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-165550|TurboAggregate: Processing line|lineNumber|8000|linePreview|INFO|1002-071646|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|8008
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|51|errorCount|0|totalLinesProcessed|8020
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|8023
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|8084
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|8087
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|67|errorCount|0|totalLinesProcessed|8129
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|61|totalLinesProcessed|8134
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|8202
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|8212
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Processing line|lineNumber|5000|linePreview|INFO|1002-071158|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|8301
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|8376
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|8388
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|5130
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|61|errorCount|0|totalLinesProcessed|8422
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|8249
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|34|totalLinesProcessed|8397
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|8500
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|8616
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|34|errorCount|0|totalLinesProcessed|8633
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|8665
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|8425
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|8738
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|8742
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|86|errorCount|0|totalLinesProcessed|7332
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|8763
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|8771
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|8821
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|8852
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|8888
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Processing line|lineNumber|9000|linePreview|INFO|1002-071348|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|45|totalLinesProcessed|6110
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|9010
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|9022
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|7572
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|9237
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|33|totalLinesProcessed|7718
-INFO|0703-165550|paul@127.0.0.1:47726|Using turbo aggregate processor for MapReduce|mapr_testdata.log|mapr_testdata.log
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|51|totalLinesProcessed|8045
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|9308
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|45|errorCount|0|totalLinesProcessed|9341
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|40|totalLinesProcessed|9373
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|9476
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|9482
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|97|totalLinesProcessed|9573
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|9589
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|33|errorCount|0|totalLinesProcessed|9595
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|51|errorCount|0|totalLinesProcessed|9615
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|50|totalLinesProcessed|9622
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|9706
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|8681
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|9746
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|9803
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|50|errorCount|0|totalLinesProcessed|9858
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Processing line|lineNumber|10000|linePreview|INFO|1002-071317|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|10000
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|97|errorCount|0|totalLinesProcessed|10003
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|10100
-INFO|0703-165550|TurboAggregate: ProcessLineDirect called|totalLinesReceived|9000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071919|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|102
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|10118
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|10128
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|10135
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|10135
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|10139
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|10158
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|10112
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|9621
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|40|errorCount|0|totalLinesProcessed|9625
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|9655
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|10221
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|8898
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|10274
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|10318
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|10323
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|10328
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|10341
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|10311
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|10364
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|10433
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|10558
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|10579
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|10620
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|83|totalLinesProcessed|10677
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|10735
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|10757
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|10771
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|10776
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|10828
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|10855
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|10923
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|10948
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Processing line|lineNumber|11000|linePreview|INFO|1002-071458|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|83|errorCount|0|totalLinesProcessed|11089
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-165550|TurboAggregate: ProcessLineDirect called|totalLinesReceived|11000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071847|1|stats.go:56|8|11|7|0.21|471h0m2
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|11159
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|11172
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|23|totalLinesProcessed|11109
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|11178
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|102
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|11187
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|11198
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|23|errorCount|0|totalLinesProcessed|11233
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|11253
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|11295
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|102|totalLinesProcessed|10896
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|28|totalLinesProcessed|10975
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|81|totalLinesProcessed|11425
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|28|errorCount|0|totalLinesProcessed|11493
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|11495
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|6|totalLinesProcessed|11504
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|6|errorCount|0|totalLinesProcessed|11526
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|11538
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|11554
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|11613
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|11621
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|6|totalLinesProcessed|11631
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|6|errorCount|0|totalLinesProcessed|11662
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|102|errorCount|0|totalLinesProcessed|11669
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|11695
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|11795
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|11340
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|11822
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|81|errorCount|0|totalLinesProcessed|11841
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|45|totalLinesProcessed|11867
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|11914
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|10141
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|11930
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|11936
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|1|errorCount|0|totalLinesProcessed|11948
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|11993
-DEBUG|0703-165550|TurboAggregate: Processing line|lineNumber|12000|linePreview|INFO|1002-071808|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|45|errorCount|0|totalLinesProcessed|12117
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|12208
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|12243
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|12257
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|12260
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|12224
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|26|totalLinesProcessed|12269
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|10367
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|91|totalLinesProcessed|12337
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|26|errorCount|0|totalLinesProcessed|12382
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|12455
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|11|totalLinesProcessed|12562
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|11|errorCount|0|totalLinesProcessed|12633
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|12650
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|46|totalLinesProcessed|12500
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|12703
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|39|totalLinesProcessed|12707
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|12749
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|12825
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|91|errorCount|0|totalLinesProcessed|12827
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|39|errorCount|0|totalLinesProcessed|12838
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|46|errorCount|0|totalLinesProcessed|12857
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|35|totalLinesProcessed|12861
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|15|totalLinesProcessed|12870
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|15|errorCount|0|totalLinesProcessed|12919
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|12927
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|35|errorCount|0|totalLinesProcessed|12971
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|12996
-INFO|0703-165550|TurboAggregate: ProcessLineDirect called|totalLinesReceived|13000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071826|1|stats.go:56|8|11|7|0.21|471h0m2
-DEBUG|0703-165550|TurboAggregate: Processing line|lineNumber|13000|linePreview|INFO|1002-071606|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-165550|TurboAggregate: ProcessLineDirect called|totalLinesReceived|13000|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071826|1|stats.go:56|8|11|7|0.21|471h0m2
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|13021
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|13106
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|13131
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|25|totalLinesProcessed|13145
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|13205
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|57|totalLinesProcessed|11596
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|25|errorCount|0|totalLinesProcessed|13238
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|13286
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|60|totalLinesProcessed|13375
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|13401
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|57|errorCount|0|totalLinesProcessed|13454
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|13462
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|13517
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|101
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|101|totalLinesProcessed|13523
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|60|errorCount|0|totalLinesProcessed|13562
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|88|totalLinesProcessed|13579
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|13748
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-165550|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|13784
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|101|errorCount|0|totalLinesProcessed|13807
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|88|errorCount|0|totalLinesProcessed|13819
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|42|totalLinesProcessed|13823
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|56|totalLinesProcessed|13872
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|42|errorCount|0|totalLinesProcessed|13924
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-165550|TurboAggregate: Processing line|lineNumber|14000|linePreview|INFO|1002-071907|1|stats.go:56|8|11|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|56|errorCount|0|totalLinesProcessed|14001
-INFO|0703-165550|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|14005
-INFO|0703-165550|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-165550|paul@127.0.0.1:47726|mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|22|totalLinesProcessed|14005
-INFO|0703-165550|TurboAggregate: All processing complete, groups before final serialization|groupCount|202
-INFO|0703-165550|TurboAggregate: Starting serialization|linesProcessed|14008|currentGroups|202
-INFO|0703-165550|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-165550|TurboAggregate: Processing batch|batchSize|1|totalLinesProcessed|14013
-panic: sync: WaitGroup is reused before previous Wait has returned
-
-goroutine 489 [running]:
-sync.(*WaitGroup).Wait(0xc00022c040?)
- /usr/lib/golang/src/sync/waitgroup.go:120 +0x74
-github.com/mimecast/dtail/internal/mapr/server.(*TurboAggregate).Shutdown(0xc000268c30)
- /home/paul/git/dtail/internal/mapr/server/turbo_aggregate.go:144 +0x205
-github.com/mimecast/dtail/internal/server/handlers.(*baseHandler).Shutdown(0xc00022a120)
- /home/paul/git/dtail/internal/server/handlers/basehandler.go:63 +0x86
-github.com/mimecast/dtail/internal/server.(*Server).handleRequests.func1()
- /home/paul/git/dtail/internal/server/server.go:181 +0x2e
-github.com/mimecast/dtail/internal/server.(*Server).handleRequests.func5()
- /home/paul/git/dtail/internal/server/server.go:212 +0x147
-created by github.com/mimecast/dtail/internal/server.(*Server).handleRequests in goroutine 485
- /home/paul/git/dtail/internal/server/server.go:206 +0x4ac
diff --git a/integrationtests/server_manual.log b/integrationtests/server_manual.log
deleted file mode 100644
index 44e79f3..0000000
--- a/integrationtests/server_manual.log
+++ /dev/null
@@ -1,2 +0,0 @@
-DTail 4.3.2 Protocol 4.1 Have a lot of fun!
-ERROR|0703-164629|paul@127.0.0.1:39380|ssh: parse error in message type 0
diff --git a/server_test2.log b/server_test2.log
deleted file mode 100644
index beb46ed..0000000
--- a/server_test2.log
+++ /dev/null
@@ -1,2645 +0,0 @@
-DTail 4.3.2 Protocol 4.1 Have a lot of fun!
-INFO|0703-163950|Starting server|DTail 4.3.2 Protocol 4.1 Have a lot of fun!
-INFO|0703-163950|Reading private server RSA host key from file|./ssh_host_key
-INFO|0703-163950|Starting server
-INFO|0703-163950|Binding server|localhost:4243
-DEBUG|0703-163950|Starting listener loop
-INFO|0703-163950|Starting continuous job runner after 2s
-INFO|0703-163950|Starting scheduled job runner after 2s
-INFO|0703-164000|2001016|stats.go:53|8|10|7|0.47|115h4m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=0
-INFO|0703-164010|2001016|stats.go:53|8|10|7|0.48|115h4m48s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=0
-INFO|0703-164015|Handling connection
-INFO|0703-164017|paul@127.0.0.1:53240|Incoming authorization
-INFO|0703-164017|paul@127.0.0.1:53240|Reading|./id_rsa.pub
-DEBUG|0703-164017|paul@127.0.0.1:53240|Authorized public key fingerprint|SHA256:mtFWn8dya06cuBHB5E7ApHXXnZgtr1r/hoVGpv0cY2w
-DEBUG|0703-164017|paul@127.0.0.1:53240|Offered public key fingerprint|SHA256:mtFWn8dya06cuBHB5E7ApHXXnZgtr1r/hoVGpv0cY2w
-INFO|0703-164017|2001016|stats.go:53|8|14|7|0.60|115h4m54s|MAPREDUCE:STATS|currentConnections=1|lifetimeConnections=1
-INFO|0703-164017|paul@127.0.0.1:53240|Invoking channel handler
-INFO|0703-164017|paul@127.0.0.1:53240|Invoking request handler
-ERROR|0703-164017|paul@127.0.0.1:53240|ssh: parse error in message type 0
-DEBUG|0703-164017|paul@127.0.0.1:53240|Creating new server handler
-DEBUG|0703-164017|paul@127.0.0.1:53240|protocol 4.1 base64 bWFwIGZyb20gU1RBVFMgc2VsZWN0IGNvdW50KCR0aW1lKSwkdGltZSBncm91cCBieSAkdGltZQ==
-TRACE|0703-164017|paul@127.0.0.1:53240|Base64 decoded received command|map from STATS select count($time),$time group by $time|8|[map from STATS select count($time),$time group by $time]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164017|paul@127.0.0.1:53240|Handling user command|8|[map from STATS select count($time),$time group by $time]
-INFO|0703-164017|Creating turbo aggregate for MapReduce|query|from STATS select count($time),$time group by $time
-INFO|0703-164017|Creating turbo log format parser|default
-DEBUG|0703-164017|paul@127.0.0.1:53240|protocol 4.1 base64 Y2F0OiBpbnRlZ3JhdGlvbnRlc3RzL21hcHJfdGVzdGRhdGEubG9nIHJlZ2V4OmRlZmF1bHQgXHxNQVBSRURVQ0U6U1RBVFNcfA==
-TRACE|0703-164017|paul@127.0.0.1:53240|Base64 decoded received command|cat: integrationtests/mapr_testdata.log regex:default \|MAPREDUCE:STATS\||4|[cat: integrationtests/mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:311
-DEBUG|0703-164017|paul@127.0.0.1:53240|Handling user command|4|[cat: integrationtests/mapr_testdata.log regex:default \|MAPREDUCE:STATS\|]
-INFO|0703-164017|TurboAggregate: Starting|interval|5s
-INFO|0703-164017|TurboAggregate: Started, waiting for data
-DEBUG|0703-164017|paul@127.0.0.1:53240|Command finished|activeCommands|1|pendingFiles|0
-DEBUG|0703-164017|Reading data from file(s)
-INFO|0703-164017|TurboAggregate: Batch processor loop started
-INFO|0703-164017|TurboAggregate: Serialization loop started
-INFO|0703-164017|paul@127.0.0.1:53240|Processing files|count|1|glob|integrationtests/mapr_testdata.log
-INFO|0703-164017|paul@127.0.0.1:53240|Added pending files|count|1|totalPending|1
-DEBUG|0703-164017|paul@127.0.0.1:53240|integrationtests/mapr_testdata.log|readfiles|Checking config permissions
-INFO|0703-164017|paul@127.0.0.1:53240|integrationtests/mapr_testdata.log|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|Calculated new clean path from original file path (possibly symlink)
-DEBUG|0703-164017|paul|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Not performing ACL check as not compiled in
-INFO|0703-164017|paul@127.0.0.1:53240|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|User with OS file system permissions to path
-DEBUG|0703-164017|paul@127.0.0.1:53240|/home/paul/git/dtail/integrationtests/mapr_testdata.log|readfiles|^/.*
-INFO|0703-164017|paul@127.0.0.1:53240|/home/paul/git/dtail/integrationtests/mapr_testdata.log|Permission test passed partially, matching positive pattern|^/.*
-INFO|0703-164017|paul@127.0.0.1:53240|Start reading|integrationtests/mapr_testdata.log|mapr_testdata.log
-DEBUG|0703-164017|paul@127.0.0.1:53240|Got limiter slot immediately|path|integrationtests/mapr_testdata.log
-INFO|0703-164017|paul@127.0.0.1:53240|Using turbo mode for reading|integrationtests/mapr_testdata.log|mode|cat|hasTurboAggregate|true
-INFO|0703-164017|paul@127.0.0.1:53240|Using turbo channel-less implementation|integrationtests/mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164017|paul@127.0.0.1:53240|integrationtests/mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> starting read loop iteration|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:402
-INFO|0703-164017|paul@127.0.0.1:53240|Using turbo aggregate processor for MapReduce|integrationtests/mapr_testdata.log|mapr_testdata.log
-TRACE|0703-164017|paul@127.0.0.1:53240|integrationtests/mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> about to start|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:421
-INFO|0703-164017|TurboAggregateProcessor: ProcessLine called|lineNum|1|sourceID|mapr_testdata.log|contentLen|112
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071143|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|14|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071147|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071148|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071148|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071149|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071149|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071149|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071156|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071156|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071157|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071157|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071158|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071158|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071158|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071159|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071159|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071206|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071206|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071206|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071207|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071207|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071208|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071208|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071209|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071209|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071209|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|16|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|17|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|13|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|15|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071213|1|stats.go:56|8|12|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071216|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071216|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071217|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071217|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071217|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071218|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071218|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071218|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071219|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071219|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071219|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071226|1|stats.go:56|8|11|7|0.21|471h0m2
-INFO|0703-164017|TurboAggregate: ProcessLineDirect called|totalLinesReceived|0|sourceID|mapr_testdata.log|lineLength|112|linePreview|INFO|1002-071226|1|stats.go:56|8|11|7|0.21|471h0m2
-DEBUG|0703-164017|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164017|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|0
-DEBUG|0703-164017|TurboAggregate: Processing line|lineNumber|0|linePreview|INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeCo
-INFO|0703-164017|TurboAggregate: Parsed fields|lineNumber|0|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:16 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071143|totalGroups|1
-INFO|0703-164017|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time]|sampleCount|1
-INFO|0703-164017|TurboAggregate: Parsed fields|lineNumber|1|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:16 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|16|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164017|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time]|sampleCount|2
-INFO|0703-164017|TurboAggregate: Parsed fields|lineNumber|2|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:12 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|12|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164017|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time]|sampleCount|3
-INFO|0703-164017|TurboAggregate: Parsed fields|lineNumber|3|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:17 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|17|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164017|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time]|sampleCount|4
-INFO|0703-164017|TurboAggregate: Parsed fields|lineNumber|4|fieldCount|19|fields|map[$caller:stats.go:56 $cgocalls:7 $cpus:8 $empty: $goroutines:14 $hostname:integrationtest $line:INFO|1002-071143|1|stats.go:56|8|14|7|0.21|471h0m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1 $loadavg:0.21 $loglevel:INFO $pid:1 $server:integrationtest $severity:INFO $time:1002-071143 $timeoffset:10800 $timezone:EEST $uptime:471h0m21s *:* currentConnections:0 lifetimeConnections:1]
-INFO|0703-164017|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time]|sampleCount|5
-INFO|0703-164017|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time]|sampleCount|6
-INFO|0703-164017|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time]|sampleCount|7
-INFO|0703-164017|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time]|sampleCount|8
-INFO|0703-164017|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time]|sampleCount|9
-INFO|0703-164017|TurboAggregate: Aggregated sample|groupKey|1002-071143|aggregatedFields|[$time $time]|sampleCount|10
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071147|totalGroups|2
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071148|totalGroups|3
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071149|totalGroups|4
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071156|totalGroups|5
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071157|totalGroups|6
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071158|totalGroups|7
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071159|totalGroups|8
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071206|totalGroups|9
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071207|totalGroups|10
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071208|totalGroups|11
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071209|totalGroups|12
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071213|totalGroups|13
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071216|totalGroups|14
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071217|totalGroups|15
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071218|totalGroups|16
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071219|totalGroups|17
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071226|totalGroups|18
-INFO|0703-164017|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|100
-INFO|0703-164017|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164017|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164017|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|100
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071227|totalGroups|19
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071228|totalGroups|20
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071229|totalGroups|21
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071236|totalGroups|22
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071237|totalGroups|23
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071238|totalGroups|24
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071239|totalGroups|25
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071246|totalGroups|26
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071247|totalGroups|27
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071248|totalGroups|28
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071249|totalGroups|29
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071256|totalGroups|30
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071257|totalGroups|31
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071258|totalGroups|32
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071259|totalGroups|33
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071306|totalGroups|34
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071307|totalGroups|35
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071308|totalGroups|36
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071309|totalGroups|37
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071316|totalGroups|38
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071317|totalGroups|39
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071318|totalGroups|40
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071319|totalGroups|41
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071326|totalGroups|42
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071327|totalGroups|43
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071328|totalGroups|44
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071329|totalGroups|45
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071336|totalGroups|46
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071337|totalGroups|47
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071338|totalGroups|48
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071339|totalGroups|49
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071346|totalGroups|50
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071347|totalGroups|51
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071348|totalGroups|52
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071349|totalGroups|53
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071356|totalGroups|54
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071357|totalGroups|55
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071358|totalGroups|56
-INFO|0703-164017|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|200
-INFO|0703-164017|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164017|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164017|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|200
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071359|totalGroups|57
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071406|totalGroups|58
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071407|totalGroups|59
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071408|totalGroups|60
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071409|totalGroups|61
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071416|totalGroups|62
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071417|totalGroups|63
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071418|totalGroups|64
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071419|totalGroups|65
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071426|totalGroups|66
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071427|totalGroups|67
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071428|totalGroups|68
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071429|totalGroups|69
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071436|totalGroups|70
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071437|totalGroups|71
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071438|totalGroups|72
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071439|totalGroups|73
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071446|totalGroups|74
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071447|totalGroups|75
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071448|totalGroups|76
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071449|totalGroups|77
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071456|totalGroups|78
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071457|totalGroups|79
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071458|totalGroups|80
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071459|totalGroups|81
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071506|totalGroups|82
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071507|totalGroups|83
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071508|totalGroups|84
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071509|totalGroups|85
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071516|totalGroups|86
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071517|totalGroups|87
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071518|totalGroups|88
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071519|totalGroups|89
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071526|totalGroups|90
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071527|totalGroups|91
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071528|totalGroups|92
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071529|totalGroups|93
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071536|totalGroups|94
-INFO|0703-164017|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|300
-INFO|0703-164017|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164017|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164017|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|300
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071537|totalGroups|95
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071538|totalGroups|96
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071539|totalGroups|97
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071546|totalGroups|98
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071547|totalGroups|99
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071548|totalGroups|100
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071549|totalGroups|101
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071556|totalGroups|102
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071557|totalGroups|103
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071558|totalGroups|104
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071559|totalGroups|105
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071606|totalGroups|106
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071607|totalGroups|107
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071608|totalGroups|108
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071609|totalGroups|109
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071616|totalGroups|110
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071617|totalGroups|111
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071618|totalGroups|112
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071619|totalGroups|113
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071626|totalGroups|114
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071627|totalGroups|115
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071628|totalGroups|116
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071629|totalGroups|117
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071636|totalGroups|118
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071637|totalGroups|119
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071638|totalGroups|120
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071639|totalGroups|121
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071646|totalGroups|122
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071647|totalGroups|123
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071648|totalGroups|124
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071649|totalGroups|125
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071656|totalGroups|126
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071657|totalGroups|127
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071658|totalGroups|128
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071659|totalGroups|129
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071706|totalGroups|130
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071707|totalGroups|131
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071708|totalGroups|132
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071709|totalGroups|133
-INFO|0703-164017|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|400
-INFO|0703-164017|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164017|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164017|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|400
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071716|totalGroups|134
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071717|totalGroups|135
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071718|totalGroups|136
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071719|totalGroups|137
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071726|totalGroups|138
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071727|totalGroups|139
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071728|totalGroups|140
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071729|totalGroups|141
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071736|totalGroups|142
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071737|totalGroups|143
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071738|totalGroups|144
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071739|totalGroups|145
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071746|totalGroups|146
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071747|totalGroups|147
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071748|totalGroups|148
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071749|totalGroups|149
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071756|totalGroups|150
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071757|totalGroups|151
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071758|totalGroups|152
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071759|totalGroups|153
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071806|totalGroups|154
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071807|totalGroups|155
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071808|totalGroups|156
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071809|totalGroups|157
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071816|totalGroups|158
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071817|totalGroups|159
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071818|totalGroups|160
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071819|totalGroups|161
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071826|totalGroups|162
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071827|totalGroups|163
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071828|totalGroups|164
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071829|totalGroups|165
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071836|totalGroups|166
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071837|totalGroups|167
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071838|totalGroups|168
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071839|totalGroups|169
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071846|totalGroups|170
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071847|totalGroups|171
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071848|totalGroups|172
-INFO|0703-164017|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|500
-INFO|0703-164017|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-DEBUG|0703-164017|TurboAggregate: Batch full, processing|batchLen|100
-INFO|0703-164017|TurboAggregate: Processing batch|batchSize|100|totalLinesProcessed|500
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071849|totalGroups|173
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071856|totalGroups|174
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071857|totalGroups|175
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071858|totalGroups|176
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071859|totalGroups|177
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071906|totalGroups|178
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071907|totalGroups|179
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071908|totalGroups|180
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071909|totalGroups|181
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071912|totalGroups|182
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071913|totalGroups|183
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071916|totalGroups|184
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071917|totalGroups|185
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071918|totalGroups|186
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071919|totalGroups|187
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071920|totalGroups|188
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071921|totalGroups|189
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071922|totalGroups|190
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071926|totalGroups|191
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071927|totalGroups|192
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071928|totalGroups|193
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071929|totalGroups|194
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071936|totalGroups|195
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071937|totalGroups|196
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071938|totalGroups|197
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071939|totalGroups|198
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071946|totalGroups|199
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071947|totalGroups|200
-INFO|0703-164017|TurboAggregate: Batch processed|successCount|100|errorCount|0|totalLinesProcessed|600
-INFO|0703-164017|TurboAggregate: First line received in batch|sourceID|mapr_testdata.log|batchSize|100
-INFO|0703-164017|TurboAggregate: Processing batch|batchSize|13|totalLinesProcessed|600
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071948|totalGroups|201
-INFO|0703-164017|TurboAggregate: New group created|groupKey|1002-071949|totalGroups|202
-INFO|0703-164017|TurboAggregate: Batch processed|successCount|13|errorCount|0|totalLinesProcessed|613
-TRACE|0703-164017|paul@127.0.0.1:53240|integrationtests/mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> reader.StartWithPocessorOptimized -> completed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:423
-TRACE|0703-164017|paul@127.0.0.1:53240|integrationtests/mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> flushing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:429
-TRACE|0703-164017|paul@127.0.0.1:53240|integrationtests/mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> closing processor|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:435
-TRACE|0703-164017|paul@127.0.0.1:53240|integrationtests/mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> processor closed|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:437
-TRACE|0703-164017|paul@127.0.0.1:53240|integrationtests/mapr_testdata.log|mapr_testdata.log|readWithTurboProcessor -> waiting for data transmission|at /home/paul/git/dtail/internal/server/handlers/readcommand.go:442
-DEBUG|0703-164017|paul@127.0.0.1:53240|File processing complete|path|integrationtests/mapr_testdata.log|remainingPending|0
-INFO|0703-164017|paul@127.0.0.1:53240|All files processed|count|1
-DEBUG|0703-164017|paul@127.0.0.1:53240|Turbo mode: flushing data before EOF signal
-DEBUG|0703-164017|paul@127.0.0.1:53240|Flushing turbo data|channelLen|0
-DEBUG|0703-164017|paul@127.0.0.1:53240|Turbo channel drained successfully
-DEBUG|0703-164017|paul@127.0.0.1:53240|Waiting for data transmission|duration|500ms
-DEBUG|0703-164017|paul@127.0.0.1:53240|Command finished|activeCommands|0|pendingFiles|0
-INFO|0703-164017|paul@127.0.0.1:53240|shutdown() called|activeCommands|0|turboMode|true
-DEBUG|0703-164017|paul@127.0.0.1:53240|Flushing turbo data|channelLen|0
-DEBUG|0703-164017|paul@127.0.0.1:53240|Turbo channel drained successfully
-TRACE|0703-164017|paul@127.0.0.1:53240|flush()|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:368
-TRACE|0703-164017|paul@127.0.0.1:53240|flush|lines|0|server|0|mapr|0|turbo|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:377
-DEBUG|0703-164017|paul@127.0.0.1:53240|ALL lines sent|0xc0002a8000
-TRACE|0703-164017|paul@127.0.0.1:53240|baseHandler.Read|checking turboLines channel|channelLen|0|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:94
-TRACE|0703-164017|paul@127.0.0.1:53240|baseHandler.Read|EOF received and channel empty, disabling turbo mode|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:132
-TRACE|0703-164017|paul@127.0.0.1:53240|baseHandler.Read|no data in turboLines, falling through|at /home/paul/git/dtail/internal/server/handlers/basehandler.go:139
-INFO|0703-164017|paul@127.0.0.1:53240|Shutting down turbo aggregate
-INFO|0703-164017|TurboAggregate: Shutdown called|linesProcessed|613|currentGroups|202
-INFO|0703-164017|TurboAggregate: Processing final batch
-INFO|0703-164017|TurboAggregate: Waiting for all processing to complete
-INFO|0703-164017|TurboAggregate: Batch processor stopped by shutdown
-INFO|0703-164017|TurboAggregate: Batch processor loop ended
-INFO|0703-164017|TurboAggregate: All processing complete, groups before final serialization|groupCount|202
-INFO|0703-164017|TurboAggregate: Serialization loop stopped by shutdown
-INFO|0703-164017|TurboAggregate: Serialization loop ended
-INFO|0703-164017|2001016|stats.go:53|8|18|7|0.60|115h4m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164017|TurboAggregate: Starting serialization|linesProcessed|613|currentGroups|202
-INFO|0703-164017|paul@127.0.0.1:53240|Good bye Mister!
-INFO|0703-164017|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-164017|paul@127.0.0.1:53240|Shutting down turbo aggregate
-INFO|0703-164017|TurboAggregate: Waiting for batch processing to complete
-INFO|0703-164017|TurboAggregate: Shutdown called|linesProcessed|613|currentGroups|202
-INFO|0703-164017|TurboAggregate: Processing final batch
-INFO|0703-164017|TurboAggregate: Waiting for all processing to complete
-INFO|0703-164017|TurboAggregate: All processing complete, groups before final serialization|groupCount|202
-INFO|0703-164017|TurboAggregate: Starting serialization|linesProcessed|613|currentGroups|202
-INFO|0703-164017|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-164017|TurboAggregate: Waiting for batch processing to complete
-INFO|0703-164017|TurboAggregate: Groups before serialization|count|202
-INFO|0703-164017|TurboAggregate: Serialization details|groupCount|202|sampleGroups|[group=1002-071548, samples=2 group=1002-071726, samples=2 group=1002-071729, samples=3 group=1002-071917, samples=3 group=1002-071946, samples=3]
-INFO|0703-164017|TurboAggregate: Calling group.Serialize
-TRACE|0703-164017|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071828])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164017|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071307])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164017|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071757])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164017|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071758])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164017|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071448])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164017|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071337])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164017|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071328])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164017|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071738])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164017|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071629])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164017|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071359])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164017|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071336])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164017|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071246])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164017|paul@127.0.0.1:53240|channel->handler: EOF|at /home/paul/git/dtail/internal/server/server.go:189
-INFO|0703-164017|paul@127.0.0.1:53240|Shutting down turbo aggregate
-INFO|0703-164017|TurboAggregate: Shutdown called|linesProcessed|613|currentGroups|202
-INFO|0703-164017|TurboAggregate: Processing final batch
-INFO|0703-164017|TurboAggregate: Waiting for all processing to complete
-INFO|0703-164017|TurboAggregate: All processing complete, groups before final serialization|groupCount|202
-INFO|0703-164017|TurboAggregate: Starting serialization|linesProcessed|613|currentGroups|202
-INFO|0703-164017|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-164017|TurboAggregate: Waiting for batch processing to complete
-INFO|0703-164020|2001016|stats.go:53|8|17|7|0.71|115h4m58s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-DEBUG|0703-164022|paul@127.0.0.1:53240|Shutdown timeout reached, enforcing shutdown
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071648])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071916])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164022|paul@127.0.0.1:53240|Shutting down turbo aggregate
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071736])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071618])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164022|TurboAggregate: Shutdown called|linesProcessed|613|currentGroups|202
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071326])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164022|TurboAggregate: Processing final batch
-INFO|0703-164022|TurboAggregate: Waiting for all processing to complete
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071529])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071938])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164022|TurboAggregate: All processing complete, groups before final serialization|groupCount|202
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071209])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164022|TurboAggregate: Starting serialization|linesProcessed|613|currentGroups|202
-INFO|0703-164022|TurboAggregate: Processing remaining batch before serialization
-INFO|0703-164022|TurboAggregate: Waiting for batch processing to complete
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071756])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:4,FValues:map[count($time):4],SValues:map[$time:1002-071922])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071417])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071719])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071706])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071606])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071508])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071937])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071226])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071808])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071817])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071357])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071747])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071346])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071506])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071526])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071406])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071806])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071609])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:10,FValues:map[count($time):10],SValues:map[$time:1002-071913])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071456])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071516])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071807])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071656])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071438])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:1,FValues:map[count($time):1],SValues:map[$time:1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071659])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071826])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071427])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071257])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071716])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071929])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071249])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071319])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071709])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071829])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071746])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071317])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071349])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071809])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:20,FValues:map[count($time):20],SValues:map[$time:1002-071213])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071327])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:10,FValues:map[count($time):10],SValues:map[$time:1002-071912])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071928])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071909])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071458])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071729])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071836])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071159])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071447])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071418])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071536])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071437])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071717])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071838])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071918])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071428])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071238])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071858])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071329])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071556])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071407])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071548])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071436])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071316])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071846])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071907])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071416])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:23,FValues:map[count($time):23],SValues:map[$time:1002-071147])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071639])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071219])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071637])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071446])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071439])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071149])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071848])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071749])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071759])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071619])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071507])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071608])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071537])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071557])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071236])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071658])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071818])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071859])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071206])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071256])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071208])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071258])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071306])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071356])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071528])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071646])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071946])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071816])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071559])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071216])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071519])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071308])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071408])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071926])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071626])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:7,FValues:map[count($time):7],SValues:map[$time:1002-071920])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071217])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071849])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071727])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071538])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071627])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071906])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071726])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071917])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071827])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071837])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071908])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071707])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071728])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071259])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071546])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071348])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071218])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071539])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071638])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071429])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071239])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071227])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071358])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071647])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071737])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071237])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071927])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:11,FValues:map[count($time):11],SValues:map[$time:1002-071948])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071856])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071847])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071857])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071338])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071419])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071157])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071449])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071527])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071947])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071708])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071657])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071936])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071547])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071247])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071939])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:20,FValues:map[count($time):20],SValues:map[$time:1002-071143])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071148])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071457])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071229])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071339])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071607])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071649])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071309])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071517])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071919])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071318])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071748])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071426])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071739])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:9,FValues:map[count($time):9],SValues:map[$time:1002-071921])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071518])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071347])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071718])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071156])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071616])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071509])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071819])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071628])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071839])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071207])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071459])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071558])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071409])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071248])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071617])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071158])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071636])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071549])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071228])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164022|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-164022|TurboAggregate: After serialization|groupsRemaining|202
-INFO|0703-164022|TurboAggregate: Groups before serialization|count|202
-INFO|0703-164022|TurboAggregate: Serialization details|groupCount|202|sampleGroups|[group=1002-071548, samples=2 group=1002-071726, samples=2 group=1002-071729, samples=3 group=1002-071917, samples=3 group=1002-071946, samples=3]
-INFO|0703-164022|TurboAggregate: Calling group.Serialize
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071947])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071336])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071258])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071227])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071538])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071708])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071858])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071658])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071736])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071826])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071806])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071337])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071747])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071549])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071229])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071406])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071307])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071939])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071857])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071608])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071649])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071547])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071516])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:20,FValues:map[count($time):20],SValues:map[$time:1002-071143])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071408])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071728])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071748])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:10,FValues:map[count($time):10],SValues:map[$time:1002-071913])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071916])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071156])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071616])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071638])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071447])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071216])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:4,FValues:map[count($time):4],SValues:map[$time:1002-071922])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071657])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071209])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071536])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071206])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071848])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071646])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071838])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071706])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071846])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071816])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071418])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071518])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071256])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071238])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071257])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071326])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071926])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:7,FValues:map[count($time):7],SValues:map[$time:1002-071920])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071519])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071716])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071809])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071439])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071228])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071528])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071606])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071609])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071459])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071356])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071628])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071937])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071208])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071917])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071859])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071507])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071357])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071909])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071419])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071759])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071827])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071458])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071437])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071929])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071738])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071456])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071226])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071837])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071508])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071819])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071717])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071607])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071548])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071436])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071428])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:9,FValues:map[count($time):9],SValues:map[$time:1002-071921])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071836])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071149])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071319])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071739])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071849])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071316])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071158])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071559])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071236])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071718])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071627])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071749])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071659])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071928])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071308])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071707])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071239])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071148])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071527])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071936])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071416])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071346])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071327])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071157])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071757])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071808])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071318])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071217])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071828])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071839])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071407])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071246])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071636])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071457])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071526])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:10,FValues:map[count($time):10],SValues:map[$time:1002-071912])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071546])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071159])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071907])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071446])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071438])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071259])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071946])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071218])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071329])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071727])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071248])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071309])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071938])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071709])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071426])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071449])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071918])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071618])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071539])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071207])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071807])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071506])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071557])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071637])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071758])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071237])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071448])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071529])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071558])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071509])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071726])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071358])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071737])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071349])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071856])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071639])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:20,FValues:map[count($time):20],SValues:map[$time:1002-071213])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071729])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071847])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071629])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071359])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071338])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071656])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071556])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071626])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071348])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071219])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071409])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071927])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071328])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071429])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071517])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:23,FValues:map[count($time):23],SValues:map[$time:1002-071147])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071908])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071906])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071919])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071648])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071347])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071339])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:1,FValues:map[count($time):1],SValues:map[$time:1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071647])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071306])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:11,FValues:map[count($time):11],SValues:map[$time:1002-071948])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071756])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071249])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071746])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071818])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071317])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071719])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071817])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071617])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071537])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071829])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071247])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071417])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071427])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071619])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164022|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-164022|TurboAggregate: After serialization|groupsRemaining|202
-INFO|0703-164022|TurboAggregate: Groups before serialization|count|202
-INFO|0703-164022|TurboAggregate: Serialization details|groupCount|202|sampleGroups|[group=1002-071548, samples=2 group=1002-071726, samples=2 group=1002-071729, samples=3 group=1002-071917, samples=3 group=1002-071946, samples=3]
-INFO|0703-164022|TurboAggregate: Calling group.Serialize
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071357])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071437])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071718])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071849])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071317])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071519])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071907])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071806])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071628])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071558])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071939])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071619])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071627])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071906])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071716])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071326])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071416])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071508])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071509])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071447])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071209])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071419])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071738])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071506])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071217])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071449])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071527])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071448])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071207])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071927])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071909])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071149])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071937])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071546])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071836])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071237])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071336])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071218])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071658])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071258])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071417])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:23,FValues:map[count($time):23],SValues:map[$time:1002-071147])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:7,FValues:map[count($time):7],SValues:map[$time:1002-071920])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071749])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071329])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071347])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071228])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071818])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071226])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071847])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071436])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071637])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071826])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071427])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071857])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071839])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071809])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071838])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071559])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071429])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071926])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071208])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071516])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071358])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071617])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071816])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071158])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071938])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071536])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071756])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071647])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071409])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071359])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071908])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071517])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071239])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071249])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071456])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071828])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071308])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071348])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071928])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071846])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071819])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071736])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071616])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071719])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071306])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071747])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071438])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071717])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071256])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071428])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071758])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071708])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071338])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071919])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071639])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071229])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071607])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:9,FValues:map[count($time):9],SValues:map[$time:1002-071921])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071618])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071807])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071608])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071159])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:11,FValues:map[count($time):11],SValues:map[$time:1002-071948])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071318])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071246])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071859])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071529])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071319])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071739])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071726])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071946])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071659])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071248])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071606])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071858])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071337])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071346])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071649])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071636])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071929])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071206])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071848])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071526])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:4,FValues:map[count($time):4],SValues:map[$time:1002-071922])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071548])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071947])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071356])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071648])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:10,FValues:map[count($time):10],SValues:map[$time:1002-071912])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071219])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071638])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071459])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071707])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071446])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071339])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071406])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071238])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:20,FValues:map[count($time):20],SValues:map[$time:1002-071143])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071507])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071309])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071936])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071236])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071856])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071407])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071307])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071808])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071557])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071418])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071626])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071457])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071259])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:20,FValues:map[count($time):20],SValues:map[$time:1002-071213])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071918])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071439])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:10,FValues:map[count($time):10],SValues:map[$time:1002-071913])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071746])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071157])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071528])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071646])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071727])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071538])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071657])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071656])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071458])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071748])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071247])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071916])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071537])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071728])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071327])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071759])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071917])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071227])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071408])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071549])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071629])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071837])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071709])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071216])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:1,FValues:map[count($time):1],SValues:map[$time:1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071156])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071737])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071349])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071609])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071547])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071518])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071757])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071706])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071257])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071539])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071328])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071829])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071426])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071729])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071827])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071316])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071556])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071148])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071817])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164022|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-164022|TurboAggregate: After serialization|groupsRemaining|202
-INFO|0703-164022|TurboAggregate: Groups before serialization|count|202
-INFO|0703-164022|TurboAggregate: Serialization details|groupCount|202|sampleGroups|[group=1002-071548, samples=2 group=1002-071726, samples=2 group=1002-071729, samples=3 group=1002-071917, samples=3 group=1002-071946, samples=3]
-INFO|0703-164022|TurboAggregate: Calling group.Serialize
-TRACE|0703-164022|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071456])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164023|TurboAggregate: Shutdown complete
-INFO|0703-164023|TurboAggregate: Shutdown complete
-INFO|0703-164023|TurboAggregate: Shutdown complete
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071307])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071337])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071609])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071328])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071247])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071549])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071157])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071916])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071736])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071846])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071158])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071349])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071919])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:20,FValues:map[count($time):20],SValues:map[$time:1002-071213])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071156])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071227])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071448])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071306])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071459])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071657])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071149])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071528])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071757])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071857])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071706])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071827])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071936])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071728])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071229])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071526])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071727])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071737])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071836])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071517])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071628])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071536])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071639])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071249])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071507])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071816])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071518])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071339])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071739])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071729])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071656])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071148])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071259])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:4,FValues:map[count($time):4],SValues:map[$time:1002-071922])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071548])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071629])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071559])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071346])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071759])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071946])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071659])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071828])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071238])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071317])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071808])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071619])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071357])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071336])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071716])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071438])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071717])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071439])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071738])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:7,FValues:map[count($time):7],SValues:map[$time:1002-071920])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:10,FValues:map[count($time):10],SValues:map[$time:1002-071913])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071436])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071348])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071428])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071218])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071529])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071437])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071216])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071417])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071236])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071819])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071709])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071636])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071937])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071618])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071947])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071606])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071447])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071239])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071258])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071359])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071308])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071539])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071858])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071809])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071338])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071209])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071929])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071918])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071237])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071419])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071658])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071319])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071607])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071226])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071646])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071516])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071519])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071316])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071356])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071838])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071637])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071616])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071427])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071248])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071807])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071908])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071938])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071407])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071547])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071256])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071406])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071617])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071806])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:11,FValues:map[count($time):11],SValues:map[$time:1002-071948])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071429])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071508])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:23,FValues:map[count($time):23],SValues:map[$time:1002-071147])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071648])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071558])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071538])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071719])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071708])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071506])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:10,FValues:map[count($time):10],SValues:map[$time:1002-071912])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071749])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071726])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071917])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:9,FValues:map[count($time):9],SValues:map[$time:1002-071921])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071758])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071906])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071537])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071649])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071927])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071847])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071859])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071837])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071207])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071627])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071626])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071246])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071426])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071527])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071318])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071748])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071327])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071746])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071818])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071217])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071939])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071907])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071329])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071446])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071718])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071449])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071849])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071257])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071326])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071747])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071206])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071358])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071856])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071546])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071826])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:20,FValues:map[count($time):20],SValues:map[$time:1002-071143])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071638])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071707])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071556])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071817])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071909])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071509])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071416])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071756])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071347])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071647])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071928])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071839])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071159])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071309])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071557])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071926])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071409])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071408])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071458])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071829])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071848])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:2,FValues:map[count($time):2],SValues:map[$time:1002-071208])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:1,FValues:map[count($time):1],SValues:map[$time:1002-071949])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071219])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071608])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071418])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071457])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-TRACE|0703-164027|Serialising mapr.AggregateSet|AggregateSet(Samples:3,FValues:map[count($time):3],SValues:map[$time:1002-071228])|at /home/paul/git/dtail/internal/mapr/aggregateset.go:72
-INFO|0703-164027|TurboAggregate: Keeping groupSets during shutdown
-INFO|0703-164027|TurboAggregate: After serialization|groupsRemaining|202
-INFO|0703-164028|TurboAggregate: Shutdown complete
-INFO|0703-164030|2001016|stats.go:53|8|10|7|0.68|115h5m8s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-164040|2001016|stats.go:53|8|10|7|0.57|115h5m18s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164050|2001016|stats.go:53|8|10|7|0.48|115h5m28s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164100|2001016|stats.go:53|8|10|7|0.48|115h5m38s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164110|2001016|stats.go:53|8|10|7|0.57|115h5m48s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164120|2001016|stats.go:53|8|10|7|0.63|115h5m58s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-164130|2001016|stats.go:53|8|10|7|0.61|115h6m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164140|2001016|stats.go:53|8|10|7|0.51|115h6m18s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164150|2001016|stats.go:53|8|10|7|0.51|115h6m28s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-164200|2001016|stats.go:53|8|10|7|0.59|115h6m38s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164210|2001016|stats.go:53|8|10|7|0.65|115h6m48s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164220|2001016|stats.go:53|8|10|7|0.63|115h6m58s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-164230|2001016|stats.go:53|8|10|7|0.53|115h7m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164240|2001016|stats.go:53|8|10|7|0.82|115h7m18s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164250|2001016|stats.go:53|8|10|7|0.85|115h7m28s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164300|2001016|stats.go:53|8|10|7|0.71|115h7m38s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164310|2001016|stats.go:53|8|10|7|0.68|115h7m48s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164320|2001016|stats.go:53|8|10|7|0.66|115h7m58s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164330|2001016|stats.go:53|8|10|7|0.63|115h8m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164341|2001016|stats.go:53|8|10|7|0.77|115h8m18s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164351|2001016|stats.go:53|8|10|7|0.65|115h8m28s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164401|2001016|stats.go:53|8|10|7|0.55|115h8m38s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164411|2001016|stats.go:53|8|10|7|0.55|115h8m48s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164421|2001016|stats.go:53|8|10|7|0.62|115h8m58s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-164431|2001016|stats.go:53|8|10|7|0.52|115h9m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164441|2001016|stats.go:53|8|10|7|0.51|115h9m18s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164451|2001016|stats.go:53|8|10|7|0.51|115h9m28s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-164501|2001016|stats.go:53|8|10|7|0.51|115h9m38s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164511|2001016|stats.go:53|8|10|7|0.43|115h9m48s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-164521|2001016|stats.go:53|8|10|7|0.53|115h9m58s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164531|2001016|stats.go:53|8|10|7|0.44|115h10m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164541|2001016|stats.go:53|8|10|7|0.53|115h10m18s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-164551|2001016|stats.go:53|8|10|7|0.74|115h10m29s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164601|2001016|stats.go:53|8|10|7|0.85|115h10m39s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164604|Handling connection
-INFO|0703-164606|paul@127.0.0.1:35052|Incoming authorization
-INFO|0703-164606|paul@127.0.0.1:35052|Reading|./id_rsa.pub
-DEBUG|0703-164606|paul@127.0.0.1:35052|Authorized public key fingerprint|SHA256:mtFWn8dya06cuBHB5E7ApHXXnZgtr1r/hoVGpv0cY2w
-DEBUG|0703-164606|paul@127.0.0.1:35052|Offered public key fingerprint|SHA256:6JCEoZk+DgZKsndyjIGCghIaoKMMxeswdTAYRQ7WBFE
-ERROR|0703-164606|Something just happened|[ssh: no auth passed yet, paul@127.0.0.1:35052|public key of user not authorized]
-INFO|0703-164611|2001016|stats.go:53|8|10|7|0.87|115h10m49s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164621|2001016|stats.go:53|8|10|7|0.98|115h10m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164631|2001016|stats.go:53|8|10|7|0.83|115h11m9s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164641|2001016|stats.go:53|8|10|7|0.78|115h11m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164651|2001016|stats.go:53|8|10|7|0.73|115h11m29s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164701|2001016|stats.go:53|8|10|7|0.77|115h11m39s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164711|2001016|stats.go:53|8|10|7|0.65|115h11m49s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164721|2001016|stats.go:53|8|10|7|0.70|115h11m59s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-164731|2001016|stats.go:53|8|10|7|1.14|115h12m9s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164741|2001016|stats.go:53|8|10|7|0.96|115h12m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164751|2001016|stats.go:53|8|10|7|0.98|115h12m29s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164801|2001016|stats.go:53|8|10|7|0.83|115h12m39s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164811|2001016|stats.go:53|8|10|7|1.17|115h12m49s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164821|2001016|stats.go:53|8|10|7|1.07|115h12m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164831|2001016|stats.go:53|8|10|7|1.22|115h13m9s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164841|2001016|stats.go:53|8|10|7|1.10|115h13m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164851|2001016|stats.go:53|8|10|7|1.09|115h13m29s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-164901|2001016|stats.go:53|8|10|7|1.07|115h13m39s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164911|2001016|stats.go:53|8|10|7|1.12|115h13m49s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164921|2001016|stats.go:53|8|10|7|0.95|115h13m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164931|2001016|stats.go:53|8|10|7|0.80|115h14m9s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164942|2001016|stats.go:53|8|10|7|0.76|115h14m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-164952|2001016|stats.go:53|8|10|7|0.80|115h14m29s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165002|2001016|stats.go:53|8|10|7|0.92|115h14m39s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165012|2001016|stats.go:53|8|10|7|0.86|115h14m49s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165022|2001016|stats.go:53|8|10|7|0.87|115h14m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165032|2001016|stats.go:53|8|10|7|1.13|115h15m9s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165042|2001016|stats.go:53|8|10|7|1.34|115h15m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165052|2001016|stats.go:53|8|10|7|1.60|115h15m29s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165102|2001016|stats.go:53|8|10|7|1.66|115h15m39s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-165112|2001016|stats.go:53|8|10|7|1.48|115h15m49s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165122|2001016|stats.go:53|8|10|7|1.48|115h15m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165132|2001016|stats.go:53|8|10|7|1.25|115h16m10s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165142|2001016|stats.go:53|8|10|7|1.06|115h16m20s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165152|2001016|stats.go:53|8|10|7|1.05|115h16m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165153|Handling connection
-INFO|0703-165153|paul@127.0.0.1:50514|Incoming authorization
-INFO|0703-165153|paul@127.0.0.1:50514|Reading|./id_rsa.pub
-DEBUG|0703-165153|paul@127.0.0.1:50514|Authorized public key fingerprint|SHA256:mtFWn8dya06cuBHB5E7ApHXXnZgtr1r/hoVGpv0cY2w
-DEBUG|0703-165153|paul@127.0.0.1:50514|Offered public key fingerprint|SHA256:6JCEoZk+DgZKsndyjIGCghIaoKMMxeswdTAYRQ7WBFE
-ERROR|0703-165153|Something just happened|[ssh: no auth passed yet, paul@127.0.0.1:50514|public key of user not authorized]
-INFO|0703-165202|2001016|stats.go:53|8|10|7|0.96|115h16m40s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165212|2001016|stats.go:53|8|10|7|0.89|115h16m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165222|2001016|stats.go:53|8|10|7|0.76|115h17m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165232|2001016|stats.go:53|8|10|7|0.93|115h17m10s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-165242|2001016|stats.go:53|8|10|7|0.87|115h17m20s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165252|2001016|stats.go:53|8|10|7|0.74|115h17m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165302|2001016|stats.go:53|8|10|7|0.92|115h17m40s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-165312|2001016|stats.go:53|8|10|7|1.23|115h17m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165322|2001016|stats.go:53|8|10|7|1.20|115h18m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165332|2001016|stats.go:53|8|10|7|1.02|115h18m10s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165342|2001016|stats.go:53|8|10|7|1.09|115h18m20s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165352|2001016|stats.go:53|8|10|7|0.99|115h18m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165402|2001016|stats.go:53|8|10|7|1.07|115h18m40s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165412|2001016|stats.go:53|8|10|7|0.90|115h18m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165422|2001016|stats.go:53|8|10|7|0.76|115h19m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165432|2001016|stats.go:53|8|10|7|0.89|115h19m10s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165442|2001016|stats.go:53|8|10|7|0.90|115h19m20s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165452|2001016|stats.go:53|8|10|7|0.76|115h19m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165502|2001016|stats.go:53|8|10|7|0.72|115h19m40s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165512|2001016|stats.go:53|8|10|7|0.77|115h19m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165523|2001016|stats.go:53|8|10|7|0.65|115h20m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165533|2001016|stats.go:53|8|10|7|0.70|115h20m10s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165543|2001016|stats.go:53|8|10|7|0.90|115h20m20s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165553|2001016|stats.go:53|8|10|7|0.84|115h20m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165603|2001016|stats.go:53|8|10|7|0.79|115h20m40s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165613|2001016|stats.go:53|8|10|7|0.82|115h20m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165623|2001016|stats.go:53|8|10|7|0.94|115h21m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165633|2001016|stats.go:53|8|10|7|1.03|115h21m10s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165643|2001016|stats.go:53|8|10|7|0.87|115h21m20s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165653|2001016|stats.go:53|8|10|7|0.88|115h21m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165703|2001016|stats.go:53|8|10|7|0.75|115h21m40s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165713|2001016|stats.go:53|8|10|7|0.63|115h21m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165723|2001016|stats.go:53|8|10|7|0.69|115h22m0s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-165733|2001016|stats.go:53|8|10|7|0.58|115h22m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165743|2001016|stats.go:53|8|10|7|0.57|115h22m21s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-165753|2001016|stats.go:53|8|10|7|0.48|115h22m31s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165803|2001016|stats.go:53|8|10|7|0.48|115h22m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165813|2001016|stats.go:53|8|10|7|0.41|115h22m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165823|2001016|stats.go:53|8|10|7|0.42|115h23m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165833|2001016|stats.go:53|8|10|7|0.60|115h23m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165843|2001016|stats.go:53|8|10|7|0.50|115h23m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165853|2001016|stats.go:53|8|10|7|0.43|115h23m31s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165903|2001016|stats.go:53|8|10|7|0.44|115h23m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165913|2001016|stats.go:53|8|10|7|0.45|115h23m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165923|2001016|stats.go:53|8|10|7|0.46|115h24m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165933|2001016|stats.go:53|8|10|7|0.47|115h24m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165943|2001016|stats.go:53|8|10|7|0.39|115h24m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-165953|2001016|stats.go:53|8|10|7|0.41|115h24m31s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170003|2001016|stats.go:53|8|10|7|0.35|115h24m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170013|2001016|stats.go:53|8|10|7|0.37|115h24m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170023|2001016|stats.go:53|8|10|7|0.31|115h25m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170033|2001016|stats.go:53|8|10|7|0.26|115h25m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170043|2001016|stats.go:53|8|10|7|0.30|115h25m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170053|2001016|stats.go:53|8|10|7|0.25|115h25m31s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170103|2001016|stats.go:53|8|10|7|0.21|115h25m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170113|2001016|stats.go:53|8|10|7|0.26|115h25m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170123|2001016|stats.go:53|8|10|7|0.30|115h26m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170133|2001016|stats.go:53|8|10|7|0.25|115h26m11s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-170143|2001016|stats.go:53|8|10|7|0.37|115h26m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170153|2001016|stats.go:53|8|10|7|0.31|115h26m31s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170204|2001016|stats.go:53|8|10|7|0.27|115h26m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170214|2001016|stats.go:53|8|10|7|0.22|115h26m51s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-170224|2001016|stats.go:53|8|10|7|0.48|115h27m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170234|2001016|stats.go:53|8|10|7|0.41|115h27m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170244|2001016|stats.go:53|8|10|7|0.35|115h27m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170254|2001016|stats.go:53|8|10|7|0.37|115h27m31s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170304|2001016|stats.go:53|8|10|7|0.70|115h27m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170314|2001016|stats.go:53|8|10|7|0.82|115h27m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170324|2001016|stats.go:53|8|10|7|0.92|115h28m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170334|2001016|stats.go:53|8|10|7|1.16|115h28m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170344|2001016|stats.go:53|8|10|7|1.13|115h28m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170354|2001016|stats.go:53|8|10|7|1.04|115h28m31s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170404|2001016|stats.go:53|8|10|7|1.04|115h28m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170414|2001016|stats.go:53|8|10|7|1.03|115h28m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170424|2001016|stats.go:53|8|10|7|0.95|115h29m2s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-170434|2001016|stats.go:53|8|10|7|1.03|115h29m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170444|2001016|stats.go:53|8|10|7|0.94|115h29m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170454|2001016|stats.go:53|8|10|7|0.87|115h29m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170504|2001016|stats.go:53|8|10|7|0.97|115h29m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170514|2001016|stats.go:53|8|10|7|0.90|115h29m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170524|2001016|stats.go:53|8|10|7|0.83|115h30m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170534|2001016|stats.go:53|8|10|7|0.70|115h30m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170544|2001016|stats.go:53|8|10|7|0.67|115h30m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170554|2001016|stats.go:53|8|10|7|0.64|115h30m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170604|2001016|stats.go:53|8|10|7|0.86|115h30m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170614|2001016|stats.go:53|8|10|7|0.80|115h30m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170624|2001016|stats.go:53|8|10|7|0.76|115h31m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170634|2001016|stats.go:53|8|10|7|0.64|115h31m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170644|2001016|stats.go:53|8|10|7|0.70|115h31m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170654|2001016|stats.go:53|8|10|7|0.67|115h31m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170704|2001016|stats.go:53|8|10|7|0.65|115h31m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170714|2001016|stats.go:53|8|10|7|0.78|115h31m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170724|2001016|stats.go:53|8|10|7|0.66|115h32m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170734|2001016|stats.go:53|8|10|7|0.79|115h32m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170744|2001016|stats.go:53|8|10|7|0.82|115h32m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170754|2001016|stats.go:53|8|10|7|0.92|115h32m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170804|2001016|stats.go:53|8|10|7|0.85|115h32m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170815|2001016|stats.go:53|8|10|7|0.80|115h32m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170825|2001016|stats.go:53|8|10|7|0.83|115h33m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170835|2001016|stats.go:53|8|10|7|0.78|115h33m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170845|2001016|stats.go:53|8|10|7|0.66|115h33m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170855|2001016|stats.go:53|8|10|7|0.71|115h33m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170905|2001016|stats.go:53|8|10|7|1.08|115h33m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170915|2001016|stats.go:53|8|10|7|1.21|115h33m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170925|2001016|stats.go:53|8|10|7|1.34|115h34m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170935|2001016|stats.go:53|8|10|7|1.50|115h34m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170945|2001016|stats.go:53|8|10|7|1.35|115h34m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-170955|2001016|stats.go:53|8|10|7|1.30|115h34m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171005|2001016|stats.go:53|8|10|7|1.49|115h34m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171015|2001016|stats.go:53|8|10|7|1.34|115h34m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171025|2001016|stats.go:53|8|10|7|1.28|115h35m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171035|2001016|stats.go:53|8|10|7|1.23|115h35m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171045|2001016|stats.go:53|8|10|7|1.04|115h35m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171055|2001016|stats.go:53|8|10|7|0.88|115h35m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171105|2001016|stats.go:53|8|10|7|0.91|115h35m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171115|2001016|stats.go:53|8|10|7|0.93|115h35m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171125|2001016|stats.go:53|8|10|7|0.79|115h36m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171135|2001016|stats.go:53|8|10|7|0.66|115h36m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171145|2001016|stats.go:53|8|10|7|0.71|115h36m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171155|2001016|stats.go:53|8|10|7|0.83|115h36m33s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-171205|2001016|stats.go:53|8|10|7|0.94|115h36m43s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-171215|2001016|stats.go:53|8|10|7|0.96|115h36m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171225|2001016|stats.go:53|8|10|7|0.96|115h37m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171235|2001016|stats.go:53|8|10|7|0.81|115h37m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171245|2001016|stats.go:53|8|10|7|0.84|115h37m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171255|2001016|stats.go:53|8|10|7|0.71|115h37m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171305|2001016|stats.go:53|8|10|7|0.67|115h37m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171315|2001016|stats.go:53|8|10|7|0.65|115h37m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171325|2001016|stats.go:53|8|10|7|0.55|115h38m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171335|2001016|stats.go:53|8|10|7|0.46|115h38m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171345|2001016|stats.go:53|8|10|7|0.47|115h38m23s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-171355|2001016|stats.go:53|8|10|7|0.63|115h38m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171405|2001016|stats.go:53|8|10|7|0.91|115h38m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171415|2001016|stats.go:53|8|10|7|1.00|115h38m53s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-171425|2001016|stats.go:53|8|10|7|0.85|115h39m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171435|2001016|stats.go:53|8|10|7|0.72|115h39m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171445|2001016|stats.go:53|8|10|7|0.61|115h39m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171455|2001016|stats.go:53|8|10|7|0.59|115h39m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171505|2001016|stats.go:53|8|10|7|0.57|115h39m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171515|2001016|stats.go:53|8|10|7|0.48|115h39m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171525|2001016|stats.go:53|8|10|7|0.49|115h40m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171535|2001016|stats.go:53|8|10|7|0.49|115h40m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171546|2001016|stats.go:53|8|10|7|0.41|115h40m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171556|2001016|stats.go:53|8|10|7|0.35|115h40m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171606|2001016|stats.go:53|8|10|7|0.44|115h40m43s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-171616|2001016|stats.go:53|8|10|7|0.37|115h40m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171626|2001016|stats.go:53|8|10|7|0.31|115h41m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171636|2001016|stats.go:53|8|10|7|0.42|115h41m13s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-171646|2001016|stats.go:53|8|10|7|0.36|115h41m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171656|2001016|stats.go:53|8|10|7|0.30|115h41m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171706|2001016|stats.go:53|8|10|7|0.62|115h41m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171716|2001016|stats.go:53|8|10|7|0.53|115h41m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171726|2001016|stats.go:53|8|10|7|0.44|115h42m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171736|2001016|stats.go:53|8|10|7|0.54|115h42m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171746|2001016|stats.go:53|8|10|7|0.45|115h42m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171756|2001016|stats.go:53|8|10|7|0.38|115h42m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171806|2001016|stats.go:53|8|10|7|0.40|115h42m43s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-171816|2001016|stats.go:53|8|10|7|0.41|115h42m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171826|2001016|stats.go:53|8|10|7|0.42|115h43m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171836|2001016|stats.go:53|8|10|7|0.36|115h43m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171846|2001016|stats.go:53|8|10|7|0.62|115h43m24s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-171856|2001016|stats.go:53|8|10|7|0.52|115h43m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171906|2001016|stats.go:53|8|10|7|0.51|115h43m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171916|2001016|stats.go:53|8|10|7|0.58|115h43m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171926|2001016|stats.go:53|8|10|7|0.49|115h44m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171936|2001016|stats.go:53|8|10|7|0.42|115h44m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171946|2001016|stats.go:53|8|10|7|0.43|115h44m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-171956|2001016|stats.go:53|8|10|7|0.37|115h44m34s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-172006|2001016|stats.go:53|8|10|7|0.38|115h44m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172016|2001016|stats.go:53|8|10|7|0.32|115h44m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172026|2001016|stats.go:53|8|10|7|0.58|115h45m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172036|2001016|stats.go:53|8|10|7|0.49|115h45m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172046|2001016|stats.go:53|8|10|7|0.42|115h45m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172056|2001016|stats.go:53|8|10|7|0.51|115h45m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172106|2001016|stats.go:53|8|10|7|0.59|115h45m44s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-172116|2001016|stats.go:53|8|10|7|0.50|115h45m54s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-172126|2001016|stats.go:53|8|10|7|0.42|115h46m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172136|2001016|stats.go:53|8|10|7|0.43|115h46m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172146|2001016|stats.go:53|8|10|7|0.36|115h46m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172156|2001016|stats.go:53|8|10|7|0.39|115h46m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172206|2001016|stats.go:53|8|10|7|0.70|115h46m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172217|2001016|stats.go:53|8|10|7|0.67|115h46m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172227|2001016|stats.go:53|8|10|7|0.57|115h47m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172237|2001016|stats.go:53|8|10|7|0.55|115h47m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172247|2001016|stats.go:53|8|10|7|0.54|115h47m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172257|2001016|stats.go:53|8|10|7|0.46|115h47m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172307|2001016|stats.go:53|8|10|7|0.54|115h47m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172317|2001016|stats.go:53|8|10|7|0.46|115h47m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172327|2001016|stats.go:53|8|10|7|0.53|115h48m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172337|2001016|stats.go:53|8|10|7|0.45|115h48m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172347|2001016|stats.go:53|8|10|7|0.46|115h48m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172357|2001016|stats.go:53|8|10|7|0.39|115h48m34s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-172407|2001016|stats.go:53|8|10|7|0.70|115h48m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172417|2001016|stats.go:53|8|10|7|0.59|115h48m54s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-172427|2001016|stats.go:53|8|10|7|0.50|115h49m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172437|2001016|stats.go:53|8|10|7|0.42|115h49m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172447|2001016|stats.go:53|8|10|7|0.51|115h49m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172457|2001016|stats.go:53|8|10|7|0.43|115h49m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172507|2001016|stats.go:53|8|10|7|0.81|115h49m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172517|2001016|stats.go:53|8|10|7|0.77|115h49m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172527|2001016|stats.go:53|8|10|7|0.65|115h50m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172537|2001016|stats.go:53|8|10|7|0.55|115h50m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172547|2001016|stats.go:53|8|10|7|0.54|115h50m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172557|2001016|stats.go:53|8|10|7|0.53|115h50m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172607|2001016|stats.go:53|8|10|7|0.74|115h50m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172617|2001016|stats.go:53|8|10|7|0.71|115h50m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172627|2001016|stats.go:53|8|10|7|0.60|115h51m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172637|2001016|stats.go:53|8|10|7|0.51|115h51m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172647|2001016|stats.go:53|8|10|7|0.66|115h51m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172657|2001016|stats.go:53|8|10|7|0.86|115h51m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172707|2001016|stats.go:53|8|10|7|1.25|115h51m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172717|2001016|stats.go:53|8|10|7|1.13|115h51m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172727|2001016|stats.go:53|8|10|7|1.03|115h52m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172737|2001016|stats.go:53|8|10|7|0.87|115h52m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172747|2001016|stats.go:53|8|10|7|0.81|115h52m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172757|2001016|stats.go:53|8|10|7|0.69|115h52m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172807|2001016|stats.go:53|8|10|7|1.02|115h52m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172817|2001016|stats.go:53|8|10|7|0.87|115h52m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172827|2001016|stats.go:53|8|10|7|0.81|115h53m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172837|2001016|stats.go:53|8|10|7|0.76|115h53m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172847|2001016|stats.go:53|8|10|7|0.64|115h53m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172857|2001016|stats.go:53|8|10|7|0.55|115h53m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172907|2001016|stats.go:53|8|10|7|0.90|115h53m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172917|2001016|stats.go:53|8|10|7|0.76|115h53m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172927|2001016|stats.go:53|8|10|7|0.65|115h54m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172937|2001016|stats.go:53|8|10|7|0.87|115h54m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172948|2001016|stats.go:53|8|10|7|0.81|115h54m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-172958|2001016|stats.go:53|8|10|7|0.68|115h54m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173008|2001016|stats.go:53|8|10|7|0.87|115h54m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173018|2001016|stats.go:53|8|10|7|0.81|115h54m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173028|2001016|stats.go:53|8|10|7|0.77|115h55m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173038|2001016|stats.go:53|8|10|7|0.73|115h55m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173048|2001016|stats.go:53|8|10|7|0.78|115h55m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173058|2001016|stats.go:53|8|10|7|0.66|115h55m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173108|2001016|stats.go:53|8|10|7|0.92|115h55m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173118|2001016|stats.go:53|8|10|7|1.00|115h55m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173128|2001016|stats.go:53|8|10|7|0.85|115h56m5s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-173138|2001016|stats.go:53|8|10|7|0.72|115h56m15s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-173148|2001016|stats.go:53|8|10|7|0.77|115h56m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173158|2001016|stats.go:53|8|10|7|0.81|115h56m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173208|2001016|stats.go:53|8|10|7|1.13|115h56m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173218|2001016|stats.go:53|8|10|7|0.96|115h56m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173228|2001016|stats.go:53|8|10|7|0.89|115h57m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173238|2001016|stats.go:53|8|10|7|0.82|115h57m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173248|2001016|stats.go:53|8|10|7|0.84|115h57m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173258|2001016|stats.go:53|8|10|7|0.79|115h57m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173308|2001016|stats.go:53|8|10|7|1.04|115h57m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173318|2001016|stats.go:53|8|10|7|0.88|115h57m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173328|2001016|stats.go:53|8|10|7|0.97|115h58m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173338|2001016|stats.go:53|8|10|7|0.90|115h58m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173348|2001016|stats.go:53|8|10|7|0.76|115h58m26s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-173358|2001016|stats.go:53|8|10|7|0.80|115h58m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173408|2001016|stats.go:53|8|10|7|1.05|115h58m46s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-173418|2001016|stats.go:53|8|10|7|0.89|115h58m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173428|2001016|stats.go:53|8|10|7|0.82|115h59m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173438|2001016|stats.go:53|8|10|7|1.14|115h59m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173448|2001016|stats.go:53|8|10|7|1.05|115h59m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173458|2001016|stats.go:53|8|10|7|0.89|115h59m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173508|2001016|stats.go:53|8|10|7|1.28|115h59m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173518|2001016|stats.go:53|8|10|7|1.16|115h59m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173528|2001016|stats.go:53|8|10|7|0.98|116h0m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173538|2001016|stats.go:53|8|10|7|0.91|116h0m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173548|2001016|stats.go:53|8|10|7|0.77|116h0m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173558|2001016|stats.go:53|8|10|7|0.65|116h0m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173608|2001016|stats.go:53|8|10|7|1.00|116h0m46s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-173619|2001016|stats.go:53|8|10|7|1.01|116h0m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173629|2001016|stats.go:53|8|10|7|0.85|116h1m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173639|2001016|stats.go:53|8|10|7|0.72|116h1m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173649|2001016|stats.go:53|8|10|7|0.68|116h1m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173659|2001016|stats.go:53|8|10|7|0.65|116h1m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173709|2001016|stats.go:53|8|10|7|0.92|116h1m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173719|2001016|stats.go:53|8|10|7|0.94|116h1m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173729|2001016|stats.go:53|8|10|7|0.95|116h2m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173739|2001016|stats.go:53|8|10|7|0.80|116h2m16s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-173749|2001016|stats.go:53|8|10|7|0.83|116h2m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173759|2001016|stats.go:53|8|10|7|0.70|116h2m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173809|2001016|stats.go:53|8|10|7|1.04|116h2m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173819|2001016|stats.go:53|8|10|7|1.04|116h2m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173829|2001016|stats.go:53|8|10|7|0.95|116h3m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173839|2001016|stats.go:53|8|10|7|1.03|116h3m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173849|2001016|stats.go:53|8|10|7|0.87|116h3m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173859|2001016|stats.go:53|8|10|7|0.81|116h3m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173909|2001016|stats.go:53|8|10|7|1.06|116h3m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173919|2001016|stats.go:53|8|10|7|0.89|116h3m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173929|2001016|stats.go:53|8|10|7|1.24|116h4m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173939|2001016|stats.go:53|8|10|7|1.05|116h4m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173949|2001016|stats.go:53|8|10|7|0.89|116h4m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-173959|2001016|stats.go:53|8|10|7|0.75|116h4m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174009|2001016|stats.go:53|8|10|7|1.00|116h4m47s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-174019|2001016|stats.go:53|8|10|7|0.85|116h4m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174029|2001016|stats.go:53|8|10|7|0.87|116h5m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174039|2001016|stats.go:53|8|10|7|0.81|116h5m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174049|2001016|stats.go:53|8|10|7|0.69|116h5m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174059|2001016|stats.go:53|8|10|7|0.58|116h5m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174109|2001016|stats.go:53|8|10|7|0.93|116h5m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174119|2001016|stats.go:53|8|10|7|1.10|116h5m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174129|2001016|stats.go:53|8|10|7|0.93|116h6m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174139|2001016|stats.go:53|8|10|7|0.95|116h6m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174149|2001016|stats.go:53|8|10|7|1.03|116h6m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174159|2001016|stats.go:53|8|10|7|0.87|116h6m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174209|2001016|stats.go:53|8|10|7|1.19|116h6m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174219|2001016|stats.go:53|8|10|7|1.08|116h6m57s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-174229|2001016|stats.go:53|8|10|7|0.91|116h7m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174239|2001016|stats.go:53|8|10|7|0.85|116h7m17s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-174249|2001016|stats.go:53|8|10|7|0.72|116h7m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174300|2001016|stats.go:53|8|10|7|0.61|116h7m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174310|2001016|stats.go:53|8|10|7|0.89|116h7m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174320|2001016|stats.go:53|8|10|7|0.83|116h7m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174330|2001016|stats.go:53|8|10|7|0.77|116h8m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174340|2001016|stats.go:53|8|10|7|0.65|116h8m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174350|2001016|stats.go:53|8|10|7|0.63|116h8m27s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-174400|2001016|stats.go:53|8|10|7|0.61|116h8m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174410|2001016|stats.go:53|8|10|7|0.81|116h8m47s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-174420|2001016|stats.go:53|8|10|7|0.69|116h8m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174430|2001016|stats.go:53|8|10|7|0.65|116h9m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174440|2001016|stats.go:53|8|10|7|0.55|116h9m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174450|2001016|stats.go:53|8|10|7|0.62|116h9m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174500|2001016|stats.go:53|8|10|7|0.67|116h9m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174510|2001016|stats.go:53|8|10|7|1.02|116h9m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174520|2001016|stats.go:53|8|10|7|0.86|116h9m58s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174530|2001016|stats.go:53|8|10|7|0.95|116h10m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174540|2001016|stats.go:53|8|10|7|1.04|116h10m18s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174550|2001016|stats.go:53|8|10|7|0.95|116h10m28s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174600|2001016|stats.go:53|8|10|7|0.96|116h10m38s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174610|2001016|stats.go:53|8|10|7|1.11|116h10m48s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174620|2001016|stats.go:53|8|10|7|1.09|116h10m58s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-174630|2001016|stats.go:53|8|10|7|0.92|116h11m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174640|2001016|stats.go:53|8|10|7|1.09|116h11m18s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174650|2001016|stats.go:53|8|10|7|0.92|116h11m28s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174700|2001016|stats.go:53|8|10|7|0.85|116h11m38s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174710|2001016|stats.go:53|8|10|7|1.10|116h11m48s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174720|2001016|stats.go:53|8|10|7|0.93|116h11m58s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174730|2001016|stats.go:53|8|10|7|0.88|116h12m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174740|2001016|stats.go:53|8|10|7|0.90|116h12m18s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174750|2001016|stats.go:53|8|10|7|1.00|116h12m28s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174800|2001016|stats.go:53|8|10|7|1.16|116h12m38s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-174810|2001016|stats.go:53|8|10|7|1.13|116h12m48s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-174821|2001016|stats.go:53|8|10|7|1.19|116h12m58s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174831|2001016|stats.go:53|8|10|7|1.16|116h13m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174841|2001016|stats.go:53|8|10|7|1.29|116h13m18s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174851|2001016|stats.go:53|8|10|7|1.17|116h13m28s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174901|2001016|stats.go:53|8|10|7|1.47|116h13m38s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174911|2001016|stats.go:53|8|10|7|1.49|116h13m48s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174921|2001016|stats.go:53|8|10|7|1.77|116h13m58s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174931|2001016|stats.go:53|8|10|7|1.50|116h14m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174941|2001016|stats.go:53|8|10|7|1.27|116h14m18s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-174951|2001016|stats.go:53|8|10|7|1.07|116h14m28s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175001|2001016|stats.go:53|8|10|7|1.78|116h14m38s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175011|2001016|stats.go:53|8|10|7|1.51|116h14m49s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-175021|2001016|stats.go:53|8|10|7|1.35|116h14m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175031|2001016|stats.go:53|8|10|7|1.30|116h15m9s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175041|2001016|stats.go:53|8|10|7|1.41|116h15m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175051|2001016|stats.go:53|8|10|7|1.72|116h15m29s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-175101|2001016|stats.go:53|8|10|7|1.78|116h15m39s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175111|2001016|stats.go:53|8|10|7|1.58|116h15m49s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175121|2001016|stats.go:53|8|10|7|1.73|116h15m59s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-175131|2001016|stats.go:53|8|10|7|1.99|116h16m9s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175141|2001016|stats.go:53|8|10|7|1.99|116h16m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175151|2001016|stats.go:53|8|10|7|1.77|116h16m29s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175201|2001016|stats.go:53|8|10|7|1.73|116h16m39s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175211|2001016|stats.go:53|8|10|7|1.62|116h16m49s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175221|2001016|stats.go:53|8|10|7|1.45|116h16m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175231|2001016|stats.go:53|8|10|7|1.30|116h17m9s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175241|2001016|stats.go:53|8|10|7|1.18|116h17m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175251|2001016|stats.go:53|8|10|7|1.07|116h17m29s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175301|2001016|stats.go:53|8|10|7|1.06|116h17m39s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175311|2001016|stats.go:53|8|10|7|0.97|116h17m49s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-175321|2001016|stats.go:53|8|10|7|1.05|116h17m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175331|2001016|stats.go:53|8|10|7|0.89|116h18m9s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-175342|2001016|stats.go:53|8|10|7|0.98|116h18m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175352|2001016|stats.go:53|8|10|7|0.83|116h18m29s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175402|2001016|stats.go:53|8|10|7|1.10|116h18m39s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175412|2001016|stats.go:53|8|10|7|1.57|116h18m49s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175422|2001016|stats.go:53|8|10|7|2.06|116h18m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175432|2001016|stats.go:53|8|10|7|1.75|116h19m9s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175442|2001016|stats.go:53|8|10|7|1.56|116h19m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175452|2001016|stats.go:53|8|10|7|1.46|116h19m29s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-175502|2001016|stats.go:53|8|10|7|1.32|116h19m39s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175512|2001016|stats.go:53|8|10|7|1.19|116h19m49s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175522|2001016|stats.go:53|8|10|7|1.09|116h19m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175532|2001016|stats.go:53|8|10|7|1.00|116h20m9s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175542|2001016|stats.go:53|8|10|7|1.21|116h20m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175552|2001016|stats.go:53|8|10|7|1.17|116h20m30s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-175602|2001016|stats.go:53|8|10|7|1.47|116h20m40s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175612|2001016|stats.go:53|8|10|7|1.24|116h20m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175622|2001016|stats.go:53|8|10|7|1.43|116h21m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175632|2001016|stats.go:53|8|10|7|1.21|116h21m10s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175642|2001016|stats.go:53|8|10|7|1.18|116h21m20s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175652|2001016|stats.go:53|8|10|7|1.08|116h21m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175702|2001016|stats.go:53|8|10|7|1.30|116h21m40s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175712|2001016|stats.go:53|8|10|7|1.10|116h21m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175722|2001016|stats.go:53|8|10|7|0.93|116h22m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175732|2001016|stats.go:53|8|10|7|0.95|116h22m10s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175742|2001016|stats.go:53|8|10|7|0.96|116h22m20s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175752|2001016|stats.go:53|8|10|7|0.89|116h22m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175802|2001016|stats.go:53|8|10|7|0.83|116h22m40s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175812|2001016|stats.go:53|8|10|7|0.70|116h22m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175822|2001016|stats.go:53|8|10|7|1.07|116h23m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175832|2001016|stats.go:53|8|10|7|1.06|116h23m10s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175842|2001016|stats.go:53|8|10|7|0.90|116h23m20s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-175852|2001016|stats.go:53|8|10|7|0.76|116h23m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175902|2001016|stats.go:53|8|10|7|1.05|116h23m40s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-175912|2001016|stats.go:53|8|10|7|1.11|116h23m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175923|2001016|stats.go:53|8|10|7|0.93|116h24m0s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-175933|2001016|stats.go:53|8|10|7|1.03|116h24m10s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175943|2001016|stats.go:53|8|10|7|0.95|116h24m20s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-175953|2001016|stats.go:53|8|10|7|0.80|116h24m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180003|2001016|stats.go:53|8|10|7|1.39|116h24m40s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180013|2001016|stats.go:53|8|10|7|1.41|116h24m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180023|2001016|stats.go:53|8|10|7|1.35|116h25m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180033|2001016|stats.go:53|8|10|7|1.45|116h25m10s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180043|2001016|stats.go:53|8|10|7|1.55|116h25m20s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180053|2001016|stats.go:53|8|10|7|1.31|116h25m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180103|2001016|stats.go:53|8|10|7|1.51|116h25m40s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180113|2001016|stats.go:53|8|10|7|1.27|116h25m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180123|2001016|stats.go:53|8|10|7|1.23|116h26m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180133|2001016|stats.go:53|8|10|7|1.04|116h26m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180143|2001016|stats.go:53|8|10|7|0.88|116h26m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180153|2001016|stats.go:53|8|10|7|0.82|116h26m31s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180203|2001016|stats.go:53|8|10|7|1.02|116h26m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180213|2001016|stats.go:53|8|10|7|1.10|116h26m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180223|2001016|stats.go:53|8|10|7|0.93|116h27m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180233|2001016|stats.go:53|8|10|7|0.93|116h27m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180243|2001016|stats.go:53|8|10|7|0.86|116h27m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180253|2001016|stats.go:53|8|10|7|0.81|116h27m31s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180303|2001016|stats.go:53|8|10|7|1.24|116h27m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180313|2001016|stats.go:53|8|10|7|1.05|116h27m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180323|2001016|stats.go:53|8|10|7|0.89|116h28m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180333|2001016|stats.go:53|8|10|7|0.90|116h28m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180343|2001016|stats.go:53|8|10|7|0.76|116h28m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180353|2001016|stats.go:53|8|10|7|0.64|116h28m31s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-180403|2001016|stats.go:53|8|10|7|1.35|116h28m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180413|2001016|stats.go:53|8|10|7|1.21|116h28m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180424|2001016|stats.go:53|8|10|7|1.10|116h29m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180434|2001016|stats.go:53|8|10|7|1.00|116h29m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180444|2001016|stats.go:53|8|10|7|1.00|116h29m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180454|2001016|stats.go:53|8|10|7|0.92|116h29m31s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180504|2001016|stats.go:53|8|10|7|1.42|116h29m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180514|2001016|stats.go:53|8|10|7|1.35|116h29m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180524|2001016|stats.go:53|8|10|7|1.22|116h30m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180534|2001016|stats.go:53|8|10|7|1.04|116h30m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180544|2001016|stats.go:53|8|10|7|0.95|116h30m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180554|2001016|stats.go:53|8|10|7|0.80|116h30m31s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180604|2001016|stats.go:53|8|10|7|1.23|116h30m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180614|2001016|stats.go:53|8|10|7|1.12|116h30m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180624|2001016|stats.go:53|8|10|7|0.95|116h31m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180634|2001016|stats.go:53|8|10|7|0.80|116h31m12s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-180644|2001016|stats.go:53|8|10|7|0.84|116h31m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180654|2001016|stats.go:53|8|10|7|0.86|116h31m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180704|2001016|stats.go:53|8|10|7|1.12|116h31m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180714|2001016|stats.go:53|8|10|7|1.03|116h31m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180724|2001016|stats.go:53|8|10|7|0.87|116h32m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180734|2001016|stats.go:53|8|10|7|0.89|116h32m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180744|2001016|stats.go:53|8|10|7|0.75|116h32m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180754|2001016|stats.go:53|8|10|7|0.71|116h32m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180804|2001016|stats.go:53|8|10|7|0.92|116h32m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180814|2001016|stats.go:53|8|10|7|1.01|116h32m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180824|2001016|stats.go:53|8|10|7|1.10|116h33m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180834|2001016|stats.go:53|8|10|7|1.00|116h33m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180844|2001016|stats.go:53|8|10|7|0.85|116h33m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180854|2001016|stats.go:53|8|10|7|0.88|116h33m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180904|2001016|stats.go:53|8|10|7|1.43|116h33m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180914|2001016|stats.go:53|8|10|7|1.21|116h33m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180924|2001016|stats.go:53|8|10|7|1.10|116h34m2s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-180934|2001016|stats.go:53|8|10|7|1.00|116h34m12s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-180944|2001016|stats.go:53|8|10|7|0.85|116h34m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-180954|2001016|stats.go:53|8|10|7|0.79|116h34m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181004|2001016|stats.go:53|8|10|7|1.14|116h34m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181015|2001016|stats.go:53|8|10|7|0.97|116h34m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181025|2001016|stats.go:53|8|10|7|0.82|116h35m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181035|2001016|stats.go:53|8|10|7|0.85|116h35m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181045|2001016|stats.go:53|8|10|7|0.72|116h35m22s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-181055|2001016|stats.go:53|8|10|7|0.61|116h35m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181105|2001016|stats.go:53|8|10|7|0.92|116h35m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181115|2001016|stats.go:53|8|10|7|0.85|116h35m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181125|2001016|stats.go:53|8|10|7|0.72|116h36m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181135|2001016|stats.go:53|8|10|7|0.61|116h36m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181145|2001016|stats.go:53|8|10|7|0.51|116h36m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181155|2001016|stats.go:53|8|10|7|0.67|116h36m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181205|2001016|stats.go:53|8|10|7|0.72|116h36m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181215|2001016|stats.go:53|8|10|7|0.83|116h36m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181225|2001016|stats.go:53|8|10|7|0.70|116h37m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181235|2001016|stats.go:53|8|10|7|0.59|116h37m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181245|2001016|stats.go:53|8|10|7|0.58|116h37m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181255|2001016|stats.go:53|8|10|7|0.49|116h37m33s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-181305|2001016|stats.go:53|8|10|7|0.50|116h37m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181315|2001016|stats.go:53|8|10|7|0.57|116h37m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181325|2001016|stats.go:53|8|10|7|0.63|116h38m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181335|2001016|stats.go:53|8|10|7|0.54|116h38m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181345|2001016|stats.go:53|8|10|7|0.45|116h38m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181355|2001016|stats.go:53|8|10|7|0.46|116h38m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181405|2001016|stats.go:53|8|10|7|0.47|116h38m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181415|2001016|stats.go:53|8|10|7|0.48|116h38m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181425|2001016|stats.go:53|8|10|7|0.63|116h39m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181435|2001016|stats.go:53|8|10|7|0.70|116h39m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181445|2001016|stats.go:53|8|10|7|0.59|116h39m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181455|2001016|stats.go:53|8|10|7|0.73|116h39m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181505|2001016|stats.go:53|8|10|7|0.70|116h39m43s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-181515|2001016|stats.go:53|8|10|7|0.59|116h39m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181525|2001016|stats.go:53|8|10|7|0.50|116h40m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181535|2001016|stats.go:53|8|10|7|0.50|116h40m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181545|2001016|stats.go:53|8|10|7|0.50|116h40m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181555|2001016|stats.go:53|8|10|7|0.58|116h40m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181605|2001016|stats.go:53|8|10|7|0.88|116h40m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181615|2001016|stats.go:53|8|10|7|0.90|116h40m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181626|2001016|stats.go:53|8|10|7|0.84|116h41m3s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-181636|2001016|stats.go:53|8|10|7|0.78|116h41m13s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-181646|2001016|stats.go:53|8|10|7|0.74|116h41m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181656|2001016|stats.go:53|8|10|7|0.63|116h41m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181706|2001016|stats.go:53|8|10|7|1.08|116h41m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181716|2001016|stats.go:53|8|10|7|0.91|116h41m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181726|2001016|stats.go:53|8|10|7|0.77|116h42m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181736|2001016|stats.go:53|8|10|7|0.76|116h42m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181746|2001016|stats.go:53|8|10|7|0.79|116h42m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181756|2001016|stats.go:53|8|10|7|0.75|116h42m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181806|2001016|stats.go:53|8|10|7|0.63|116h42m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181816|2001016|stats.go:53|8|10|7|0.83|116h42m53s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-181826|2001016|stats.go:53|8|10|7|0.78|116h43m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181836|2001016|stats.go:53|8|10|7|0.89|116h43m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181846|2001016|stats.go:53|8|10|7|0.83|116h43m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181856|2001016|stats.go:53|8|10|7|0.70|116h43m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181906|2001016|stats.go:53|8|10|7|0.67|116h43m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181916|2001016|stats.go:53|8|10|7|0.64|116h43m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181926|2001016|stats.go:53|8|10|7|0.54|116h44m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181936|2001016|stats.go:53|8|10|7|0.46|116h44m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181946|2001016|stats.go:53|8|10|7|0.47|116h44m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-181956|2001016|stats.go:53|8|10|7|0.39|116h44m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182006|2001016|stats.go:53|8|10|7|0.33|116h44m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182016|2001016|stats.go:53|8|10|7|0.28|116h44m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182026|2001016|stats.go:53|8|10|7|0.31|116h45m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182036|2001016|stats.go:53|8|10|7|0.26|116h45m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182046|2001016|stats.go:53|8|10|7|0.30|116h45m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182056|2001016|stats.go:53|8|10|7|0.25|116h45m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182106|2001016|stats.go:53|8|10|7|0.21|116h45m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182116|2001016|stats.go:53|8|10|7|0.18|116h45m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182126|2001016|stats.go:53|8|10|7|0.30|116h46m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182136|2001016|stats.go:53|8|10|7|0.25|116h46m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182146|2001016|stats.go:53|8|10|7|0.29|116h46m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182156|2001016|stats.go:53|8|10|7|0.56|116h46m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182206|2001016|stats.go:53|8|10|7|0.48|116h46m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182216|2001016|stats.go:53|8|10|7|0.48|116h46m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182226|2001016|stats.go:53|8|10|7|0.41|116h47m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182236|2001016|stats.go:53|8|10|7|0.42|116h47m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182246|2001016|stats.go:53|8|10|7|0.35|116h47m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182256|2001016|stats.go:53|8|10|7|0.30|116h47m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182307|2001016|stats.go:53|8|10|7|0.33|116h47m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182317|2001016|stats.go:53|8|10|7|0.28|116h47m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182327|2001016|stats.go:53|8|10|7|0.24|116h48m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182337|2001016|stats.go:53|8|10|7|0.20|116h48m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182347|2001016|stats.go:53|8|10|7|0.17|116h48m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182357|2001016|stats.go:53|8|10|7|0.36|116h48m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182407|2001016|stats.go:53|8|10|7|0.39|116h48m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182417|2001016|stats.go:53|8|10|7|0.33|116h48m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182427|2001016|stats.go:53|8|10|7|0.28|116h49m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182437|2001016|stats.go:53|8|10|7|0.23|116h49m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182447|2001016|stats.go:53|8|10|7|0.35|116h49m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182457|2001016|stats.go:53|8|10|7|0.30|116h49m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182507|2001016|stats.go:53|8|10|7|0.55|116h49m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182517|2001016|stats.go:53|8|10|7|0.62|116h49m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182527|2001016|stats.go:53|8|10|7|0.53|116h50m5s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-182537|2001016|stats.go:53|8|10|7|0.45|116h50m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182547|2001016|stats.go:53|8|10|7|0.38|116h50m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182557|2001016|stats.go:53|8|10|7|0.32|116h50m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182607|2001016|stats.go:53|8|10|7|0.34|116h50m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182617|2001016|stats.go:53|8|10|7|0.45|116h50m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182627|2001016|stats.go:53|8|10|7|0.38|116h51m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182637|2001016|stats.go:53|8|10|7|0.32|116h51m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182647|2001016|stats.go:53|8|10|7|0.35|116h51m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182657|2001016|stats.go:53|8|10|7|0.51|116h51m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182707|2001016|stats.go:53|8|10|7|0.43|116h51m45s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-182717|2001016|stats.go:53|8|10|7|0.37|116h51m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182727|2001016|stats.go:53|8|10|7|0.39|116h52m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182737|2001016|stats.go:53|8|10|7|0.33|116h52m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182747|2001016|stats.go:53|8|10|7|0.28|116h52m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182757|2001016|stats.go:53|8|10|7|0.24|116h52m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182807|2001016|stats.go:53|8|10|7|0.35|116h52m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182817|2001016|stats.go:53|8|10|7|0.30|116h52m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182827|2001016|stats.go:53|8|10|7|0.41|116h53m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182837|2001016|stats.go:53|8|10|7|0.50|116h53m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182847|2001016|stats.go:53|8|10|7|0.43|116h53m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182857|2001016|stats.go:53|8|10|7|0.44|116h53m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182908|2001016|stats.go:53|8|10|7|0.52|116h53m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182918|2001016|stats.go:53|8|10|7|0.44|116h53m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182928|2001016|stats.go:53|8|10|7|0.37|116h54m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182938|2001016|stats.go:53|8|10|7|0.39|116h54m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182948|2001016|stats.go:53|8|10|7|0.33|116h54m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-182958|2001016|stats.go:53|8|10|7|0.28|116h54m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183008|2001016|stats.go:53|8|10|7|0.24|116h54m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183018|2001016|stats.go:53|8|10|7|0.35|116h54m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183028|2001016|stats.go:53|8|10|7|0.37|116h55m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183038|2001016|stats.go:53|8|10|7|0.47|116h55m15s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-183048|2001016|stats.go:53|8|10|7|0.40|116h55m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183058|2001016|stats.go:53|8|10|7|0.49|116h55m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183108|2001016|stats.go:53|8|10|7|0.57|116h55m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183118|2001016|stats.go:53|8|10|7|0.64|116h55m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183128|2001016|stats.go:53|8|10|7|0.69|116h56m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183138|2001016|stats.go:53|8|10|7|0.59|116h56m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183148|2001016|stats.go:53|8|10|7|0.98|116h56m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183158|2001016|stats.go:53|8|10|7|0.83|116h56m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183208|2001016|stats.go:53|8|10|7|0.70|116h56m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183218|2001016|stats.go:53|8|10|7|0.59|116h56m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183228|2001016|stats.go:53|8|10|7|0.57|116h57m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183238|2001016|stats.go:53|8|10|7|0.48|116h57m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183248|2001016|stats.go:53|8|10|7|0.48|116h57m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183258|2001016|stats.go:53|8|10|7|0.41|116h57m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183308|2001016|stats.go:53|8|10|7|0.35|116h57m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183318|2001016|stats.go:53|8|10|7|0.29|116h57m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183328|2001016|stats.go:53|8|10|7|0.39|116h58m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183338|2001016|stats.go:53|8|10|7|0.33|116h58m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183348|2001016|stats.go:53|8|10|7|0.28|116h58m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183358|2001016|stats.go:53|8|10|7|0.47|116h58m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183408|2001016|stats.go:53|8|10|7|0.40|116h58m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183418|2001016|stats.go:53|8|10|7|0.42|116h58m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183428|2001016|stats.go:53|8|10|7|0.35|116h59m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183438|2001016|stats.go:53|8|10|7|0.37|116h59m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183448|2001016|stats.go:53|8|10|7|0.31|116h59m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183458|2001016|stats.go:53|8|10|7|0.27|116h59m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183509|2001016|stats.go:53|8|10|7|0.38|116h59m46s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-183519|2001016|stats.go:53|8|10|7|0.39|116h59m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183529|2001016|stats.go:53|8|10|7|0.33|117h0m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183539|2001016|stats.go:53|8|10|7|0.43|117h0m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183549|2001016|stats.go:53|8|10|7|0.36|117h0m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183559|2001016|stats.go:53|8|10|7|0.31|117h0m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183609|2001016|stats.go:53|8|10|7|0.42|117h0m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183619|2001016|stats.go:53|8|10|7|0.43|117h0m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183629|2001016|stats.go:53|8|10|7|0.37|117h1m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183639|2001016|stats.go:53|8|10|7|0.39|117h1m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183649|2001016|stats.go:53|8|10|7|0.70|117h1m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183659|2001016|stats.go:53|8|10|7|0.59|117h1m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183709|2001016|stats.go:53|8|10|7|0.50|117h1m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183719|2001016|stats.go:53|8|10|7|0.74|117h1m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183729|2001016|stats.go:53|8|10|7|0.62|117h2m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183739|2001016|stats.go:53|8|10|7|0.61|117h2m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183749|2001016|stats.go:53|8|10|7|0.73|117h2m27s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-183759|2001016|stats.go:53|8|10|7|0.62|117h2m37s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-183809|2001016|stats.go:53|8|10|7|0.53|117h2m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183819|2001016|stats.go:53|8|10|7|0.52|117h2m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183829|2001016|stats.go:53|8|10|7|0.44|117h3m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183839|2001016|stats.go:53|8|10|7|0.37|117h3m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183849|2001016|stats.go:53|8|10|7|0.40|117h3m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183859|2001016|stats.go:53|8|10|7|0.41|117h3m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183909|2001016|stats.go:53|8|10|7|0.35|117h3m47s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-183919|2001016|stats.go:53|8|10|7|0.29|117h3m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183929|2001016|stats.go:53|8|10|7|0.40|117h4m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183939|2001016|stats.go:53|8|10|7|0.34|117h4m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183949|2001016|stats.go:53|8|10|7|0.29|117h4m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-183959|2001016|stats.go:53|8|10|7|0.32|117h4m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184009|2001016|stats.go:53|8|10|7|0.27|117h4m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184019|2001016|stats.go:53|8|10|7|0.30|117h4m57s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-184029|2001016|stats.go:53|8|10|7|0.33|117h5m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184040|2001016|stats.go:53|8|10|7|0.28|117h5m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184050|2001016|stats.go:53|8|10|7|0.75|117h5m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184100|2001016|stats.go:53|8|10|7|0.64|117h5m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184110|2001016|stats.go:53|8|10|7|0.76|117h5m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184120|2001016|stats.go:53|8|10|7|0.64|117h5m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184130|2001016|stats.go:53|8|10|7|0.62|117h6m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184140|2001016|stats.go:53|8|10|7|0.93|117h6m17s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-184150|2001016|stats.go:53|8|10|7|0.86|117h6m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184200|2001016|stats.go:53|8|10|7|1.05|117h6m37s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-184210|2001016|stats.go:53|8|10|7|0.96|117h6m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184220|2001016|stats.go:53|8|10|7|0.96|117h6m57s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-184230|2001016|stats.go:53|8|10|7|0.96|117h7m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184240|2001016|stats.go:53|8|10|7|0.97|117h7m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184250|2001016|stats.go:53|8|10|7|0.82|117h7m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184300|2001016|stats.go:53|8|10|7|0.70|117h7m38s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184310|2001016|stats.go:53|8|10|7|0.67|117h7m48s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184320|2001016|stats.go:53|8|10|7|0.71|117h7m58s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184330|2001016|stats.go:53|8|10|7|0.82|117h8m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184340|2001016|stats.go:53|8|10|7|0.78|117h8m18s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-184350|2001016|stats.go:53|8|10|7|0.82|117h8m28s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-184400|2001016|stats.go:53|8|10|7|0.69|117h8m38s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184410|2001016|stats.go:53|8|10|7|0.58|117h8m48s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184420|2001016|stats.go:53|8|10|7|0.64|117h8m58s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184430|2001016|stats.go:53|8|10|7|0.76|117h9m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184440|2001016|stats.go:53|8|10|7|0.73|117h9m18s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184450|2001016|stats.go:53|8|10|7|0.85|117h9m28s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184500|2001016|stats.go:53|8|10|7|0.80|117h9m38s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184510|2001016|stats.go:53|8|10|7|0.68|117h9m48s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184520|2001016|stats.go:53|8|10|7|0.57|117h9m58s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184530|2001016|stats.go:53|8|10|7|0.63|117h10m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184540|2001016|stats.go:53|8|10|7|0.61|117h10m18s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-184550|2001016|stats.go:53|8|10|7|0.67|117h10m28s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184600|2001016|stats.go:53|8|10|7|0.64|117h10m38s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184610|2001016|stats.go:53|8|10|7|0.54|117h10m48s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184620|2001016|stats.go:53|8|10|7|0.62|117h10m58s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184630|2001016|stats.go:53|8|10|7|0.67|117h11m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184641|2001016|stats.go:53|8|10|7|1.01|117h11m18s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184651|2001016|stats.go:53|8|10|7|1.01|117h11m28s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184701|2001016|stats.go:53|8|10|7|1.24|117h11m38s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184711|2001016|stats.go:53|8|10|7|1.05|117h11m48s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184721|2001016|stats.go:53|8|10|7|0.96|117h11m58s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184731|2001016|stats.go:53|8|10|7|0.81|117h12m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184741|2001016|stats.go:53|8|10|7|0.84|117h12m18s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184751|2001016|stats.go:53|8|10|7|0.71|117h12m28s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184801|2001016|stats.go:53|8|10|7|0.83|117h12m38s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184811|2001016|stats.go:53|8|10|7|0.79|117h12m48s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184821|2001016|stats.go:53|8|10|7|0.66|117h12m58s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184831|2001016|stats.go:53|8|10|7|0.56|117h13m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184841|2001016|stats.go:53|8|10|7|0.47|117h13m18s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184851|2001016|stats.go:53|8|10|7|0.62|117h13m28s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184901|2001016|stats.go:53|8|10|7|0.53|117h13m38s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184911|2001016|stats.go:53|8|10|7|0.44|117h13m49s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184921|2001016|stats.go:53|8|10|7|0.38|117h13m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184931|2001016|stats.go:53|8|10|7|0.48|117h14m9s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184941|2001016|stats.go:53|8|10|7|0.40|117h14m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-184951|2001016|stats.go:53|8|10|7|0.42|117h14m29s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-185001|2001016|stats.go:53|8|10|7|0.35|117h14m39s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185011|2001016|stats.go:53|8|10|7|0.37|117h14m49s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185021|2001016|stats.go:53|8|10|7|0.39|117h14m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185031|2001016|stats.go:53|8|10|7|0.39|117h15m9s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185041|2001016|stats.go:53|8|10|7|0.33|117h15m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185051|2001016|stats.go:53|8|10|7|0.44|117h15m29s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185101|2001016|stats.go:53|8|10|7|0.45|117h15m39s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185111|2001016|stats.go:53|8|10|7|0.53|117h15m49s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185121|2001016|stats.go:53|8|10|7|0.45|117h15m59s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-185131|2001016|stats.go:53|8|10|7|0.53|117h16m9s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185141|2001016|stats.go:53|8|10|7|0.52|117h16m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185151|2001016|stats.go:53|8|10|7|0.60|117h16m29s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185201|2001016|stats.go:53|8|10|7|0.58|117h16m39s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185211|2001016|stats.go:53|8|10|7|0.57|117h16m49s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185221|2001016|stats.go:53|8|10|7|0.48|117h16m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185231|2001016|stats.go:53|8|10|7|0.56|117h17m9s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-185241|2001016|stats.go:53|8|10|7|0.47|117h17m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185251|2001016|stats.go:53|8|10|7|0.40|117h17m29s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185302|2001016|stats.go:53|8|10|7|0.42|117h17m39s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185312|2001016|stats.go:53|8|10|7|0.35|117h17m49s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185322|2001016|stats.go:53|8|10|7|0.30|117h17m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185332|2001016|stats.go:53|8|10|7|0.33|117h18m9s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-185342|2001016|stats.go:53|8|10|7|0.35|117h18m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185352|2001016|stats.go:53|8|10|7|0.29|117h18m29s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185402|2001016|stats.go:53|8|10|7|0.25|117h18m39s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185412|2001016|stats.go:53|8|10|7|0.21|117h18m49s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185422|2001016|stats.go:53|8|10|7|0.18|117h18m59s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-185432|2001016|stats.go:53|8|10|7|0.23|117h19m9s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185442|2001016|stats.go:53|8|10|7|0.43|117h19m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185452|2001016|stats.go:53|8|10|7|0.36|117h19m29s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185502|2001016|stats.go:53|8|10|7|0.45|117h19m39s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-185512|2001016|stats.go:53|8|10|7|0.46|117h19m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185522|2001016|stats.go:53|8|10|7|0.47|117h20m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185532|2001016|stats.go:53|8|10|7|0.47|117h20m10s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185542|2001016|stats.go:53|8|10|7|0.40|117h20m20s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185552|2001016|stats.go:53|8|10|7|0.41|117h20m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185602|2001016|stats.go:53|8|10|7|0.35|117h20m40s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185612|2001016|stats.go:53|8|10|7|0.53|117h20m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185622|2001016|stats.go:53|8|10|7|0.53|117h21m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185632|2001016|stats.go:53|8|10|7|0.44|117h21m10s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-185642|2001016|stats.go:53|8|10|7|0.38|117h21m20s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185652|2001016|stats.go:53|8|10|7|0.47|117h21m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185702|2001016|stats.go:53|8|10|7|0.78|117h21m40s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185712|2001016|stats.go:53|8|10|7|0.66|117h21m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185722|2001016|stats.go:53|8|10|7|0.64|117h22m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185732|2001016|stats.go:53|8|10|7|0.61|117h22m10s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185742|2001016|stats.go:53|8|10|7|0.67|117h22m20s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185752|2001016|stats.go:53|8|10|7|0.64|117h22m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185802|2001016|stats.go:53|8|10|7|0.77|117h22m40s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185812|2001016|stats.go:53|8|10|7|0.89|117h22m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185822|2001016|stats.go:53|8|10|7|0.98|117h23m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185833|2001016|stats.go:53|8|10|7|0.91|117h23m10s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185843|2001016|stats.go:53|8|10|7|0.77|117h23m20s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185853|2001016|stats.go:53|8|10|7|0.65|117h23m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185903|2001016|stats.go:53|8|10|7|0.62|117h23m40s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185913|2001016|stats.go:53|8|10|7|0.53|117h23m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185923|2001016|stats.go:53|8|10|7|0.44|117h24m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185933|2001016|stats.go:53|8|10|7|0.62|117h24m10s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185943|2001016|stats.go:53|8|10|7|0.52|117h24m20s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-185953|2001016|stats.go:53|8|10|7|0.44|117h24m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190003|2001016|stats.go:53|8|10|7|0.45|117h24m40s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-190013|2001016|stats.go:53|8|10|7|0.54|117h24m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190023|2001016|stats.go:53|8|10|7|0.45|117h25m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190033|2001016|stats.go:53|8|10|7|0.38|117h25m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190043|2001016|stats.go:53|8|10|7|0.32|117h25m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190053|2001016|stats.go:53|8|10|7|0.50|117h25m31s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-190103|2001016|stats.go:53|8|10|7|0.65|117h25m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190113|2001016|stats.go:53|8|10|7|0.77|117h25m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190123|2001016|stats.go:53|8|10|7|0.74|117h26m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190133|2001016|stats.go:53|8|10|7|0.62|117h26m11s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-190143|2001016|stats.go:53|8|10|7|0.69|117h26m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190153|2001016|stats.go:53|8|10|7|0.66|117h26m31s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190203|2001016|stats.go:53|8|10|7|0.71|117h26m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190213|2001016|stats.go:53|8|10|7|0.76|117h26m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190223|2001016|stats.go:53|8|10|7|0.72|117h27m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190233|2001016|stats.go:53|8|10|7|0.61|117h27m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190243|2001016|stats.go:53|8|10|7|0.51|117h27m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190253|2001016|stats.go:53|8|10|7|0.51|117h27m31s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190303|2001016|stats.go:53|8|10|7|0.43|117h27m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190313|2001016|stats.go:53|8|10|7|0.37|117h27m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190323|2001016|stats.go:53|8|10|7|0.38|117h28m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190334|2001016|stats.go:53|8|10|7|0.40|117h28m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190344|2001016|stats.go:53|8|10|7|0.34|117h28m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190354|2001016|stats.go:53|8|10|7|0.45|117h28m31s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190404|2001016|stats.go:53|8|10|7|0.53|117h28m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190414|2001016|stats.go:53|8|10|7|0.45|117h28m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190424|2001016|stats.go:53|8|10|7|0.45|117h29m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190434|2001016|stats.go:53|8|10|7|0.75|117h29m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190444|2001016|stats.go:53|8|10|7|0.63|117h29m21s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-190454|2001016|stats.go:53|8|10|7|0.54|117h29m31s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-190504|2001016|stats.go:53|8|10|7|0.53|117h29m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190514|2001016|stats.go:53|8|10|7|0.53|117h29m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190524|2001016|stats.go:53|8|10|7|0.45|117h30m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190534|2001016|stats.go:53|8|10|7|0.45|117h30m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190544|2001016|stats.go:53|8|10|7|0.38|117h30m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190554|2001016|stats.go:53|8|10|7|0.40|117h30m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190604|2001016|stats.go:53|8|10|7|0.50|117h30m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190614|2001016|stats.go:53|8|10|7|0.49|117h30m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190624|2001016|stats.go:53|8|10|7|0.42|117h31m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190634|2001016|stats.go:53|8|10|7|0.35|117h31m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190644|2001016|stats.go:53|8|10|7|0.45|117h31m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190654|2001016|stats.go:53|8|10|7|0.38|117h31m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190704|2001016|stats.go:53|8|10|7|0.40|117h31m42s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-190714|2001016|stats.go:53|8|10|7|0.64|117h31m52s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-190724|2001016|stats.go:53|8|10|7|0.63|117h32m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190734|2001016|stats.go:53|8|10|7|0.60|117h32m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190744|2001016|stats.go:53|8|10|7|0.66|117h32m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190754|2001016|stats.go:53|8|10|7|0.56|117h32m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190804|2001016|stats.go:53|8|10|7|0.47|117h32m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190814|2001016|stats.go:53|8|10|7|0.63|117h32m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190824|2001016|stats.go:53|8|10|7|0.53|117h33m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190834|2001016|stats.go:53|8|10|7|0.45|117h33m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190844|2001016|stats.go:53|8|10|7|0.38|117h33m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190854|2001016|stats.go:53|8|10|7|0.40|117h33m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190904|2001016|stats.go:53|8|10|7|0.33|117h33m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190914|2001016|stats.go:53|8|10|7|0.28|117h33m52s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-190925|2001016|stats.go:53|8|10|7|0.64|117h34m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190935|2001016|stats.go:53|8|10|7|0.62|117h34m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-190945|2001016|stats.go:53|8|10|7|0.61|117h34m22s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-190955|2001016|stats.go:53|8|10|7|0.51|117h34m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191005|2001016|stats.go:53|8|10|7|0.51|117h34m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191015|2001016|stats.go:53|8|10|7|0.50|117h34m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191025|2001016|stats.go:53|8|10|7|0.51|117h35m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191035|2001016|stats.go:53|8|10|7|0.43|117h35m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191045|2001016|stats.go:53|8|10|7|0.44|117h35m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191055|2001016|stats.go:53|8|10|7|0.44|117h35m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191105|2001016|stats.go:53|8|10|7|0.52|117h35m42s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-191115|2001016|stats.go:53|8|10|7|0.52|117h35m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191125|2001016|stats.go:53|8|10|7|0.67|117h36m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191135|2001016|stats.go:53|8|10|7|0.65|117h36m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191145|2001016|stats.go:53|8|10|7|0.55|117h36m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191155|2001016|stats.go:53|8|10|7|0.62|117h36m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191205|2001016|stats.go:53|8|10|7|0.52|117h36m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191215|2001016|stats.go:53|8|10|7|0.59|117h36m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191225|2001016|stats.go:53|8|10|7|0.65|117h37m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191235|2001016|stats.go:53|8|10|7|0.79|117h37m13s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-191245|2001016|stats.go:53|8|10|7|0.66|117h37m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191255|2001016|stats.go:53|8|10|7|0.56|117h37m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191305|2001016|stats.go:53|8|10|7|0.47|117h37m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191315|2001016|stats.go:53|8|10|7|0.55|117h37m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191325|2001016|stats.go:53|8|10|7|0.46|117h38m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191335|2001016|stats.go:53|8|10|7|0.39|117h38m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191345|2001016|stats.go:53|8|10|7|0.41|117h38m23s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-191355|2001016|stats.go:53|8|10|7|0.35|117h38m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191405|2001016|stats.go:53|8|10|7|0.29|117h38m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191415|2001016|stats.go:53|8|10|7|0.32|117h38m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191425|2001016|stats.go:53|8|10|7|0.35|117h39m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191435|2001016|stats.go:53|8|10|7|0.44|117h39m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191445|2001016|stats.go:53|8|10|7|0.45|117h39m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191455|2001016|stats.go:53|8|10|7|0.46|117h39m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191506|2001016|stats.go:53|8|10|7|0.55|117h39m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191516|2001016|stats.go:53|8|10|7|0.46|117h39m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191526|2001016|stats.go:53|8|10|7|0.54|117h40m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191536|2001016|stats.go:53|8|10|7|0.46|117h40m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191546|2001016|stats.go:53|8|10|7|0.39|117h40m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191556|2001016|stats.go:53|8|10|7|0.48|117h40m33s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-191606|2001016|stats.go:53|8|10|7|0.41|117h40m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191616|2001016|stats.go:53|8|10|7|0.42|117h40m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191626|2001016|stats.go:53|8|10|7|0.35|117h41m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191636|2001016|stats.go:53|8|10|7|0.53|117h41m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191646|2001016|stats.go:53|8|10|7|0.75|117h41m23s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-191656|2001016|stats.go:53|8|10|7|0.95|117h41m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191706|2001016|stats.go:53|8|10|7|0.95|117h41m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191716|2001016|stats.go:53|8|10|7|0.88|117h41m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191726|2001016|stats.go:53|8|10|7|0.75|117h42m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191736|2001016|stats.go:53|8|10|7|0.78|117h42m14s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-191746|2001016|stats.go:53|8|10|7|0.66|117h42m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191756|2001016|stats.go:53|8|10|7|0.56|117h42m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191806|2001016|stats.go:53|8|10|7|0.55|117h42m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191816|2001016|stats.go:53|8|10|7|0.61|117h42m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191826|2001016|stats.go:53|8|10|7|0.52|117h43m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191836|2001016|stats.go:53|8|10|7|0.44|117h43m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191846|2001016|stats.go:53|8|10|7|0.53|117h43m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191856|2001016|stats.go:53|8|10|7|0.44|117h43m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191906|2001016|stats.go:53|8|10|7|0.38|117h43m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191916|2001016|stats.go:53|8|10|7|0.32|117h43m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191926|2001016|stats.go:53|8|10|7|0.42|117h44m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191936|2001016|stats.go:53|8|10|7|0.43|117h44m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191946|2001016|stats.go:53|8|10|7|0.44|117h44m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-191956|2001016|stats.go:53|8|10|7|0.44|117h44m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192006|2001016|stats.go:53|8|10|7|0.38|117h44m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192016|2001016|stats.go:53|8|10|7|0.37|117h44m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192027|2001016|stats.go:53|8|10|7|0.31|117h45m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192037|2001016|stats.go:53|8|10|7|0.26|117h45m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192047|2001016|stats.go:53|8|10|7|0.46|117h45m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192057|2001016|stats.go:53|8|10|7|0.39|117h45m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192107|2001016|stats.go:53|8|10|7|0.33|117h45m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192117|2001016|stats.go:53|8|10|7|0.50|117h45m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192127|2001016|stats.go:53|8|10|7|0.42|117h46m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192137|2001016|stats.go:53|8|10|7|0.36|117h46m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192147|2001016|stats.go:53|8|10|7|0.46|117h46m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192157|2001016|stats.go:53|8|10|7|0.55|117h46m34s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-192207|2001016|stats.go:53|8|10|7|0.46|117h46m44s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-192217|2001016|stats.go:53|8|10|7|0.39|117h46m54s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-192227|2001016|stats.go:53|8|10|7|0.63|117h47m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192237|2001016|stats.go:53|8|10|7|0.53|117h47m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192247|2001016|stats.go:53|8|10|7|0.60|117h47m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192257|2001016|stats.go:53|8|10|7|0.59|117h47m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192307|2001016|stats.go:53|8|10|7|0.57|117h47m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192317|2001016|stats.go:53|8|10|7|0.48|117h47m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192327|2001016|stats.go:53|8|10|7|0.64|117h48m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192337|2001016|stats.go:53|8|10|7|0.62|117h48m15s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-192347|2001016|stats.go:53|8|10|7|0.53|117h48m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192357|2001016|stats.go:53|8|10|7|0.60|117h48m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192407|2001016|stats.go:53|8|10|7|0.59|117h48m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192417|2001016|stats.go:53|8|10|7|0.64|117h48m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192427|2001016|stats.go:53|8|10|7|0.55|117h49m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192437|2001016|stats.go:53|8|10|7|0.54|117h49m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192447|2001016|stats.go:53|8|10|7|0.45|117h49m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192457|2001016|stats.go:53|8|10|7|0.46|117h49m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192507|2001016|stats.go:53|8|10|7|0.55|117h49m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192517|2001016|stats.go:53|8|10|7|0.61|117h49m55s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-192527|2001016|stats.go:53|8|10|7|0.60|117h50m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192537|2001016|stats.go:53|8|10|7|0.50|117h50m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192547|2001016|stats.go:53|8|10|7|0.57|117h50m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192557|2001016|stats.go:53|8|10|7|0.49|117h50m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192607|2001016|stats.go:53|8|10|7|1.21|117h50m45s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-192617|2001016|stats.go:53|8|10|7|1.02|117h50m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192627|2001016|stats.go:53|8|10|7|0.95|117h51m5s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-192637|2001016|stats.go:53|8|10|7|0.80|117h51m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192648|2001016|stats.go:53|8|10|7|0.83|117h51m25s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-192658|2001016|stats.go:53|8|10|7|0.70|117h51m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192708|2001016|stats.go:53|8|10|7|0.76|117h51m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192718|2001016|stats.go:53|8|10|7|0.88|117h51m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192728|2001016|stats.go:53|8|10|7|0.74|117h52m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192738|2001016|stats.go:53|8|10|7|0.63|117h52m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192748|2001016|stats.go:53|8|10|7|0.53|117h52m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192758|2001016|stats.go:53|8|10|7|0.76|117h52m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192808|2001016|stats.go:53|8|10|7|0.65|117h52m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192818|2001016|stats.go:53|8|10|7|0.55|117h52m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192828|2001016|stats.go:53|8|10|7|0.62|117h53m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192838|2001016|stats.go:53|8|10|7|0.75|117h53m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192848|2001016|stats.go:53|8|10|7|0.64|117h53m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192858|2001016|stats.go:53|8|10|7|0.69|117h53m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192908|2001016|stats.go:53|8|10|7|0.58|117h53m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192918|2001016|stats.go:53|8|10|7|0.49|117h53m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192928|2001016|stats.go:53|8|10|7|0.66|117h54m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192938|2001016|stats.go:53|8|10|7|0.56|117h54m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192948|2001016|stats.go:53|8|10|7|0.47|117h54m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-192958|2001016|stats.go:53|8|10|7|0.40|117h54m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193008|2001016|stats.go:53|8|10|7|0.41|117h54m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193018|2001016|stats.go:53|8|10|7|0.42|117h54m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193028|2001016|stats.go:53|8|10|7|0.35|117h55m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193038|2001016|stats.go:53|8|10|7|0.53|117h55m16s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-193048|2001016|stats.go:53|8|10|7|0.45|117h55m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193058|2001016|stats.go:53|8|10|7|0.54|117h55m36s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-193108|2001016|stats.go:53|8|10|7|0.60|117h55m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193118|2001016|stats.go:53|8|10|7|0.51|117h55m56s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-193128|2001016|stats.go:53|8|10|7|0.43|117h56m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193138|2001016|stats.go:53|8|10|7|0.44|117h56m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193148|2001016|stats.go:53|8|10|7|0.52|117h56m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193158|2001016|stats.go:53|8|10|7|0.52|117h56m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193208|2001016|stats.go:53|8|10|7|0.52|117h56m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193218|2001016|stats.go:53|8|10|7|0.66|117h56m56s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-193229|2001016|stats.go:53|8|10|7|0.72|117h57m6s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-193239|2001016|stats.go:53|8|10|7|0.69|117h57m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193249|2001016|stats.go:53|8|10|7|1.06|117h57m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193259|2001016|stats.go:53|8|10|7|1.05|117h57m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193309|2001016|stats.go:53|8|10|7|1.12|117h57m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193319|2001016|stats.go:53|8|10|7|1.02|117h57m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193329|2001016|stats.go:53|8|10|7|0.93|117h58m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193339|2001016|stats.go:53|8|10|7|0.79|117h58m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193349|2001016|stats.go:53|8|10|7|0.90|117h58m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193359|2001016|stats.go:53|8|10|7|0.76|117h58m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193409|2001016|stats.go:53|8|10|7|0.65|117h58m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193419|2001016|stats.go:53|8|10|7|0.55|117h58m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193429|2001016|stats.go:53|8|10|7|0.54|117h59m6s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-193439|2001016|stats.go:53|8|10|7|0.45|117h59m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193449|2001016|stats.go:53|8|10|7|0.38|117h59m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193459|2001016|stats.go:53|8|10|7|0.40|117h59m36s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-193509|2001016|stats.go:53|8|10|7|0.34|117h59m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193519|2001016|stats.go:53|8|10|7|0.29|117h59m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193529|2001016|stats.go:53|8|10|7|0.24|118h0m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193539|2001016|stats.go:53|8|10|7|0.28|118h0m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193549|2001016|stats.go:53|8|10|7|0.38|118h0m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193559|2001016|stats.go:53|8|10|7|0.49|118h0m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193609|2001016|stats.go:53|8|10|7|0.41|118h0m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193619|2001016|stats.go:53|8|10|7|0.35|118h0m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193629|2001016|stats.go:53|8|10|7|0.29|118h1m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193639|2001016|stats.go:53|8|10|7|0.40|118h1m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193649|2001016|stats.go:53|8|10|7|0.33|118h1m27s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-193659|2001016|stats.go:53|8|10|7|0.36|118h1m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193709|2001016|stats.go:53|8|10|7|0.70|118h1m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193719|2001016|stats.go:53|8|10|7|0.59|118h1m57s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-193729|2001016|stats.go:53|8|10|7|0.50|118h2m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193739|2001016|stats.go:53|8|10|7|0.42|118h2m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193749|2001016|stats.go:53|8|10|7|0.58|118h2m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193759|2001016|stats.go:53|8|10|7|0.56|118h2m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193809|2001016|stats.go:53|8|10|7|0.64|118h2m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193819|2001016|stats.go:53|8|10|7|0.54|118h2m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193829|2001016|stats.go:53|8|10|7|0.54|118h3m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193839|2001016|stats.go:53|8|10|7|0.45|118h3m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193849|2001016|stats.go:53|8|10|7|0.46|118h3m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193859|2001016|stats.go:53|8|10|7|0.46|118h3m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193910|2001016|stats.go:53|8|10|7|0.39|118h3m47s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193920|2001016|stats.go:53|8|10|7|0.41|118h3m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193930|2001016|stats.go:53|8|10|7|0.35|118h4m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193940|2001016|stats.go:53|8|10|7|0.29|118h4m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-193950|2001016|stats.go:53|8|10|7|0.33|118h4m27s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194000|2001016|stats.go:53|8|10|7|0.35|118h4m37s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194010|2001016|stats.go:53|8|10|7|0.37|118h4m47s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-194020|2001016|stats.go:53|8|10|7|0.47|118h4m57s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194030|2001016|stats.go:53|8|10|7|0.47|118h5m7s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194040|2001016|stats.go:53|8|10|7|0.56|118h5m17s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194050|2001016|stats.go:53|8|10|7|0.48|118h5m28s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194100|2001016|stats.go:53|8|10|7|0.48|118h5m38s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194110|2001016|stats.go:53|8|10|7|0.40|118h5m48s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194120|2001016|stats.go:53|8|10|7|0.34|118h5m58s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194130|2001016|stats.go:53|8|10|7|0.37|118h6m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194140|2001016|stats.go:53|8|10|7|0.31|118h6m18s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194150|2001016|stats.go:53|8|10|7|0.34|118h6m28s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194200|2001016|stats.go:53|8|10|7|0.28|118h6m38s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-194210|2001016|stats.go:53|8|10|7|0.46|118h6m48s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194220|2001016|stats.go:53|8|10|7|0.39|118h6m58s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194230|2001016|stats.go:53|8|10|7|0.49|118h7m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194240|2001016|stats.go:53|8|10|7|0.41|118h7m18s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194250|2001016|stats.go:53|8|10|7|0.42|118h7m28s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194300|2001016|stats.go:53|8|10|7|0.36|118h7m38s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194310|2001016|stats.go:53|8|10|7|0.46|118h7m48s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194320|2001016|stats.go:53|8|10|7|0.39|118h7m58s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194330|2001016|stats.go:53|8|10|7|0.41|118h8m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194340|2001016|stats.go:53|8|10|7|0.42|118h8m18s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194350|2001016|stats.go:53|8|10|7|0.36|118h8m28s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194400|2001016|stats.go:53|8|10|7|0.38|118h8m38s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194411|2001016|stats.go:53|8|10|7|0.32|118h8m48s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194421|2001016|stats.go:53|8|10|7|0.42|118h8m58s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194431|2001016|stats.go:53|8|10|7|0.35|118h9m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194441|2001016|stats.go:53|8|10|7|0.46|118h9m18s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194451|2001016|stats.go:53|8|10|7|0.47|118h9m28s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-194501|2001016|stats.go:53|8|10|7|0.40|118h9m38s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194511|2001016|stats.go:53|8|10|7|0.33|118h9m48s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-194521|2001016|stats.go:53|8|10|7|0.36|118h9m58s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194531|2001016|stats.go:53|8|10|7|0.38|118h10m8s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194541|2001016|stats.go:53|8|10|7|0.32|118h10m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194551|2001016|stats.go:53|8|10|7|0.35|118h10m29s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194601|2001016|stats.go:53|8|10|7|0.30|118h10m39s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194611|2001016|stats.go:53|8|10|7|0.25|118h10m49s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194621|2001016|stats.go:53|8|10|7|0.21|118h10m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194631|2001016|stats.go:53|8|10|7|0.25|118h11m9s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194641|2001016|stats.go:53|8|10|7|0.29|118h11m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194651|2001016|stats.go:53|8|10|7|0.25|118h11m29s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194701|2001016|stats.go:53|8|10|7|0.21|118h11m39s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194711|2001016|stats.go:53|8|10|7|0.18|118h11m49s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194721|2001016|stats.go:53|8|10|7|0.15|118h11m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194731|2001016|stats.go:53|8|10|7|0.35|118h12m9s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194741|2001016|stats.go:53|8|10|7|0.37|118h12m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194751|2001016|stats.go:53|8|10|7|0.47|118h12m29s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194801|2001016|stats.go:53|8|10|7|0.71|118h12m39s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194811|2001016|stats.go:53|8|10|7|0.68|118h12m49s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194821|2001016|stats.go:53|8|10|7|0.57|118h12m59s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-194831|2001016|stats.go:53|8|10|7|0.56|118h13m9s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-194842|2001016|stats.go:53|8|10|7|0.55|118h13m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194852|2001016|stats.go:53|8|10|7|0.62|118h13m29s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194902|2001016|stats.go:53|8|10|7|0.59|118h13m39s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-194912|2001016|stats.go:53|8|10|7|0.58|118h13m49s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194922|2001016|stats.go:53|8|10|7|0.49|118h13m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194932|2001016|stats.go:53|8|10|7|0.42|118h14m9s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194942|2001016|stats.go:53|8|10|7|1.24|118h14m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-194952|2001016|stats.go:53|8|10|7|1.05|118h14m29s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195002|2001016|stats.go:53|8|10|7|1.29|118h14m39s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195012|2001016|stats.go:53|8|10|7|2.35|118h14m49s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-195022|2001016|stats.go:53|8|10|7|2.07|118h14m59s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195032|2001016|stats.go:53|8|10|7|1.68|118h15m9s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-195042|2001016|stats.go:53|8|10|7|1.50|118h15m19s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195052|2001016|stats.go:53|8|10|7|1.27|118h15m29s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195102|2001016|stats.go:53|8|10|7|1.07|118h15m39s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-195112|2001016|stats.go:53|8|10|7|0.91|118h15m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195122|2001016|stats.go:53|8|10|7|1.00|118h16m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195132|2001016|stats.go:53|8|10|7|1.22|118h16m10s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195142|2001016|stats.go:53|8|10|7|1.10|118h16m20s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195152|2001016|stats.go:53|8|10|7|1.09|118h16m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195202|2001016|stats.go:53|8|10|7|1.00|118h16m40s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195212|2001016|stats.go:53|8|10|7|1.01|118h16m50s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-195222|2001016|stats.go:53|8|10|7|1.15|118h17m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195232|2001016|stats.go:53|8|10|7|1.05|118h17m10s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-195242|2001016|stats.go:53|8|10|7|0.89|118h17m20s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195252|2001016|stats.go:53|8|10|7|0.75|118h17m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195302|2001016|stats.go:53|8|10|7|0.79|118h17m40s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195312|2001016|stats.go:53|8|10|7|1.31|118h17m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195322|2001016|stats.go:53|8|10|7|1.11|118h18m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195332|2001016|stats.go:53|8|10|7|1.40|118h18m10s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195342|2001016|stats.go:53|8|10|7|1.41|118h18m20s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195353|2001016|stats.go:53|8|10|7|1.20|118h18m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195403|2001016|stats.go:53|8|10|7|1.08|118h18m40s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195413|2001016|stats.go:53|8|10|7|1.08|118h18m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195423|2001016|stats.go:53|8|10|7|0.99|118h19m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195433|2001016|stats.go:53|8|10|7|0.84|118h19m10s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195443|2001016|stats.go:53|8|10|7|0.71|118h19m20s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195453|2001016|stats.go:53|8|10|7|0.83|118h19m30s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195503|2001016|stats.go:53|8|10|7|0.70|118h19m40s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195513|2001016|stats.go:53|8|10|7|0.67|118h19m50s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195523|2001016|stats.go:53|8|10|7|0.72|118h20m0s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195533|2001016|stats.go:53|8|10|7|0.69|118h20m10s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-195543|2001016|stats.go:53|8|10|7|0.59|118h20m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195553|2001016|stats.go:53|8|10|7|0.57|118h20m31s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195603|2001016|stats.go:53|8|10|7|0.48|118h20m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195613|2001016|stats.go:53|8|10|7|0.41|118h20m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195623|2001016|stats.go:53|8|10|7|0.50|118h21m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195633|2001016|stats.go:53|8|10|7|0.43|118h21m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195643|2001016|stats.go:53|8|10|7|0.44|118h21m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195653|2001016|stats.go:53|8|10|7|0.37|118h21m31s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195703|2001016|stats.go:53|8|10|7|0.39|118h21m41s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-195713|2001016|stats.go:53|8|10|7|0.33|118h21m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195723|2001016|stats.go:53|8|10|7|0.28|118h22m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195733|2001016|stats.go:53|8|10|7|0.40|118h22m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195743|2001016|stats.go:53|8|10|7|0.33|118h22m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195753|2001016|stats.go:53|8|10|7|0.28|118h22m31s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195803|2001016|stats.go:53|8|10|7|0.31|118h22m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195813|2001016|stats.go:53|8|10|7|0.26|118h22m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195823|2001016|stats.go:53|8|10|7|0.22|118h23m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195833|2001016|stats.go:53|8|10|7|0.35|118h23m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195843|2001016|stats.go:53|8|10|7|0.30|118h23m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195853|2001016|stats.go:53|8|10|7|0.32|118h23m31s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195903|2001016|stats.go:53|8|10|7|0.27|118h23m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195913|2001016|stats.go:53|8|10|7|0.47|118h23m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195923|2001016|stats.go:53|8|10|7|0.39|118h24m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195934|2001016|stats.go:53|8|10|7|0.33|118h24m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195944|2001016|stats.go:53|8|10|7|0.44|118h24m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-195954|2001016|stats.go:53|8|10|7|0.37|118h24m31s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-200004|2001016|stats.go:53|8|10|7|0.31|118h24m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200014|2001016|stats.go:53|8|10|7|0.41|118h24m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200024|2001016|stats.go:53|8|10|7|0.35|118h25m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200034|2001016|stats.go:53|8|10|7|0.45|118h25m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200044|2001016|stats.go:53|8|10|7|0.62|118h25m21s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200054|2001016|stats.go:53|8|10|7|0.68|118h25m31s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200104|2001016|stats.go:53|8|10|7|0.57|118h25m41s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200114|2001016|stats.go:53|8|10|7|0.48|118h25m51s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200124|2001016|stats.go:53|8|10|7|0.48|118h26m1s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200134|2001016|stats.go:53|8|10|7|0.41|118h26m11s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200144|2001016|stats.go:53|8|10|7|0.34|118h26m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200154|2001016|stats.go:53|8|10|7|0.53|118h26m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200204|2001016|stats.go:53|8|10|7|0.52|118h26m42s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-200214|2001016|stats.go:53|8|10|7|0.44|118h26m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200224|2001016|stats.go:53|8|10|7|0.37|118h27m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200234|2001016|stats.go:53|8|10|7|0.48|118h27m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200244|2001016|stats.go:53|8|10|7|0.56|118h27m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200254|2001016|stats.go:53|8|10|7|0.71|118h27m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200304|2001016|stats.go:53|8|10|7|0.60|118h27m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200314|2001016|stats.go:53|8|10|7|0.50|118h27m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200324|2001016|stats.go:53|8|10|7|0.43|118h28m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200334|2001016|stats.go:53|8|10|7|0.58|118h28m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200344|2001016|stats.go:53|8|10|7|0.49|118h28m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200354|2001016|stats.go:53|8|10|7|0.42|118h28m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200404|2001016|stats.go:53|8|10|7|0.43|118h28m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200414|2001016|stats.go:53|8|10|7|0.59|118h28m52s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-200425|2001016|stats.go:53|8|10|7|0.50|118h29m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200435|2001016|stats.go:53|8|10|7|0.42|118h29m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200445|2001016|stats.go:53|8|10|7|0.50|118h29m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200455|2001016|stats.go:53|8|10|7|0.50|118h29m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200505|2001016|stats.go:53|8|10|7|0.58|118h29m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200515|2001016|stats.go:53|8|10|7|0.49|118h29m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200525|2001016|stats.go:53|8|10|7|0.42|118h30m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200535|2001016|stats.go:53|8|10|7|0.35|118h30m12s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200545|2001016|stats.go:53|8|10|7|0.37|118h30m22s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200555|2001016|stats.go:53|8|10|7|0.31|118h30m32s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200605|2001016|stats.go:53|8|10|7|0.27|118h30m42s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200615|2001016|stats.go:53|8|10|7|0.30|118h30m52s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200625|2001016|stats.go:53|8|10|7|0.26|118h31m2s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200635|2001016|stats.go:53|8|10|7|0.22|118h31m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200645|2001016|stats.go:53|8|10|7|0.18|118h31m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200655|2001016|stats.go:53|8|10|7|0.30|118h31m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200705|2001016|stats.go:53|8|10|7|0.26|118h31m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200715|2001016|stats.go:53|8|10|7|0.38|118h31m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200725|2001016|stats.go:53|8|10|7|0.32|118h32m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200735|2001016|stats.go:53|8|10|7|0.27|118h32m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200745|2001016|stats.go:53|8|10|7|0.23|118h32m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200755|2001016|stats.go:53|8|10|7|0.35|118h32m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200805|2001016|stats.go:53|8|10|7|0.29|118h32m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200815|2001016|stats.go:53|8|10|7|0.25|118h32m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200825|2001016|stats.go:53|8|10|7|0.77|118h33m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200835|2001016|stats.go:53|8|10|7|0.65|118h33m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200845|2001016|stats.go:53|8|10|7|0.63|118h33m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200855|2001016|stats.go:53|8|10|7|0.61|118h33m33s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-200905|2001016|stats.go:53|8|10|7|0.66|118h33m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200915|2001016|stats.go:53|8|10|7|0.56|118h33m53s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-200925|2001016|stats.go:53|8|10|7|0.63|118h34m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200935|2001016|stats.go:53|8|10|7|0.54|118h34m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200945|2001016|stats.go:53|8|10|7|0.45|118h34m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-200955|2001016|stats.go:53|8|10|7|0.38|118h34m33s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-201005|2001016|stats.go:53|8|10|7|0.40|118h34m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201016|2001016|stats.go:53|8|10|7|0.34|118h34m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201026|2001016|stats.go:53|8|10|7|0.28|118h35m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201036|2001016|stats.go:53|8|10|7|0.40|118h35m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201046|2001016|stats.go:53|8|10|7|0.34|118h35m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201056|2001016|stats.go:53|8|10|7|0.37|118h35m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201106|2001016|stats.go:53|8|10|7|0.39|118h35m43s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201116|2001016|stats.go:53|8|10|7|0.40|118h35m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201126|2001016|stats.go:53|8|10|7|0.34|118h36m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201136|2001016|stats.go:53|8|10|7|0.29|118h36m13s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201146|2001016|stats.go:53|8|10|7|0.24|118h36m23s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201156|2001016|stats.go:53|8|10|7|0.21|118h36m33s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201206|2001016|stats.go:53|8|10|7|0.17|118h36m43s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-201216|2001016|stats.go:53|8|10|7|0.22|118h36m53s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201226|2001016|stats.go:53|8|10|7|0.33|118h37m3s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201236|2001016|stats.go:53|8|10|7|0.28|118h37m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201246|2001016|stats.go:53|8|10|7|0.32|118h37m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201256|2001016|stats.go:53|8|10|7|0.27|118h37m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201306|2001016|stats.go:53|8|10|7|0.23|118h37m44s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-201316|2001016|stats.go:53|8|10|7|0.19|118h37m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201326|2001016|stats.go:53|8|10|7|0.61|118h38m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201336|2001016|stats.go:53|8|10|7|0.52|118h38m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201346|2001016|stats.go:53|8|10|7|0.44|118h38m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201356|2001016|stats.go:53|8|10|7|0.45|118h38m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201406|2001016|stats.go:53|8|10|7|0.46|118h38m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201416|2001016|stats.go:53|8|10|7|0.39|118h38m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201426|2001016|stats.go:53|8|10|7|0.40|118h39m4s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-201436|2001016|stats.go:53|8|10|7|0.34|118h39m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201446|2001016|stats.go:53|8|10|7|0.29|118h39m24s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-201456|2001016|stats.go:53|8|10|7|0.32|118h39m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201506|2001016|stats.go:53|8|10|7|0.27|118h39m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201516|2001016|stats.go:53|8|10|7|0.31|118h39m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201526|2001016|stats.go:53|8|10|7|0.34|118h40m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201536|2001016|stats.go:53|8|10|7|0.36|118h40m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201547|2001016|stats.go:53|8|10|7|0.31|118h40m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201557|2001016|stats.go:53|8|10|7|0.34|118h40m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201607|2001016|stats.go:53|8|10|7|0.37|118h40m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201617|2001016|stats.go:53|8|10|7|0.31|118h40m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201627|2001016|stats.go:53|8|10|7|0.26|118h41m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201637|2001016|stats.go:53|8|10|7|0.44|118h41m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201647|2001016|stats.go:53|8|10|7|0.37|118h41m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201657|2001016|stats.go:53|8|10|7|0.32|118h41m34s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201707|2001016|stats.go:53|8|10|7|0.43|118h41m44s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201717|2001016|stats.go:53|8|10|7|0.36|118h41m54s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201727|2001016|stats.go:53|8|10|7|0.46|118h42m4s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201737|2001016|stats.go:53|8|10|7|0.39|118h42m14s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201747|2001016|stats.go:53|8|10|7|0.40|118h42m24s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201757|2001016|stats.go:53|8|10|7|0.34|118h42m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201807|2001016|stats.go:53|8|10|7|0.52|118h42m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201817|2001016|stats.go:53|8|10|7|0.60|118h42m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201827|2001016|stats.go:53|8|10|7|0.58|118h43m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201837|2001016|stats.go:53|8|10|7|0.49|118h43m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201847|2001016|stats.go:53|8|10|7|0.49|118h43m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201857|2001016|stats.go:53|8|10|7|0.41|118h43m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201907|2001016|stats.go:53|8|10|7|0.32|118h43m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201917|2001016|stats.go:53|8|10|7|0.57|118h43m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201927|2001016|stats.go:53|8|10|7|0.56|118h44m5s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-201937|2001016|stats.go:53|8|10|7|0.48|118h44m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-201947|2001016|stats.go:53|8|10|7|0.48|118h44m25s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-201957|2001016|stats.go:53|8|10|7|0.41|118h44m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202007|2001016|stats.go:53|8|10|7|0.79|118h44m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202017|2001016|stats.go:53|8|10|7|0.67|118h44m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202027|2001016|stats.go:53|8|10|7|0.72|118h45m5s|MAPREDUCE:STATS|lifetimeConnections=1|currentConnections=0
-INFO|0703-202038|2001016|stats.go:53|8|10|7|1.00|118h45m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202048|2001016|stats.go:53|8|10|7|1.08|118h45m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202058|2001016|stats.go:53|8|10|7|1.30|118h45m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202108|2001016|stats.go:53|8|10|7|1.33|118h45m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202118|2001016|stats.go:53|8|10|7|1.28|118h45m55s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202128|2001016|stats.go:53|8|10|7|1.23|118h46m5s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202138|2001016|stats.go:53|8|10|7|1.71|118h46m15s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202148|2001016|stats.go:53|8|10|7|2.00|118h46m25s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202158|2001016|stats.go:53|8|10|7|2.08|118h46m35s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202208|2001016|stats.go:53|8|10|7|1.92|118h46m45s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202218|2001016|stats.go:53|8|10|7|2.42|118h46m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202228|2001016|stats.go:53|8|10|7|2.35|118h47m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202238|2001016|stats.go:53|8|10|7|2.15|118h47m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202248|2001016|stats.go:53|8|10|7|1.96|118h47m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202258|2001016|stats.go:53|8|10|7|1.97|118h47m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202308|2001016|stats.go:53|8|10|7|2.42|118h47m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202318|2001016|stats.go:53|8|10|7|2.43|118h47m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202328|2001016|stats.go:53|8|10|7|2.28|118h48m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202338|2001016|stats.go:53|8|10|7|2.23|118h48m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202348|2001016|stats.go:53|8|10|7|1.97|118h48m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202358|2001016|stats.go:53|8|10|7|1.74|118h48m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202408|2001016|stats.go:53|8|10|7|1.47|118h48m46s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202418|2001016|stats.go:53|8|10|7|1.63|118h48m56s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202428|2001016|stats.go:53|8|10|7|1.76|118h49m6s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202438|2001016|stats.go:53|8|10|7|3.07|118h49m16s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202448|2001016|stats.go:53|8|10|7|2.60|118h49m26s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
-INFO|0703-202458|2001016|stats.go:53|8|10|7|3.11|118h49m36s|MAPREDUCE:STATS|currentConnections=0|lifetimeConnections=1
diff --git a/server_test3.log b/server_test3.log
deleted file mode 100644
index 2510cce..0000000
--- a/server_test3.log
+++ /dev/null
@@ -1,4 +0,0 @@
-DTail 4.3.2 Protocol 4.1 Have a lot of fun!
-ERROR|0703-164510|paul@127.0.0.1:44774|ssh: parse error in message type 0
-ERROR|0703-164609|Something just happened|[ssh: no auth passed yet, paul@127.0.0.1:36508|public key of user not authorized]
-ERROR|0703-165154|Something just happened|[ssh: no auth passed yet, paul@127.0.0.1:53850|public key of user not authorized]